:root {
  --bg: #0b0c0f;
  --bg-alt: #0f1116;
  --surface: #14171e;
  --border: #1c1f27;
  --fg: #e8e6e1;
  --muted: #8a8780;
  --accent: #c9a96e;
  --accent-soft: rgba(201, 169, 110, 0.12);
  --maxw: 64rem;
  --radius: 6px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 12, 15, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--fg);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}
.brand-name {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: var(--fg);
  text-decoration: none;
}

@media (max-width: 600px) {
  .nav-links { display: none; }
}

/* Hero */
.hero {
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 169, 110, 0.08), transparent 70%),
    var(--bg);
}
.eyebrow,
.kicker {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.lede {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 38rem;
  margin-bottom: 2rem;
}

/* Buttons */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: #d8b87c; }
.btn-ghost {
  border-color: var(--border);
  color: var(--fg);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Sections */
.section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.section-alt { background: var(--bg-alt); }
.section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 720px) {
  .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
}

.prose p + p { margin-top: 1rem; }
.prose { color: var(--fg); }

/* Cards */
.cards {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.card h3 {
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.card p {
  color: var(--muted);
  font-size: 1rem;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}
.step-num {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding-top: 0.25rem;
}
.steps h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.steps p {
  color: var(--muted);
}

/* Contact */
.contact { text-align: center; }
.contact .lede {
  margin-left: auto;
  margin-right: auto;
}
.contact-email {
  margin-top: 2rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-inner p { margin: 0; }
.fineprint {
  font-size: 0.8rem;
  max-width: 42rem;
}
