:root {
  --bg: #0e0e0e;
  --surface: #161616;
  --border: #2a2a2a;
  --text: #f0ebe3;
  --text-muted: #8a847d;
  --accent: #c8963e;
  --accent-dim: rgba(200, 150, 62, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* Hero */
.hero {
  padding: 120px 64px 100px;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 36px;
}
.hero-lede {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
}

/* Philosophy */
.philosophy {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 64px;
}
.philosophy-inner {
  max-width: 760px;
}
.philosophy-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.philosophy-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.philosophy-headline em {
  font-style: italic;
  color: var(--accent);
}
.philosophy-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Playbook */
.playbook {
  padding: 100px 64px;
  border-bottom: 1px solid var(--border);
}
.playbook-inner {
  max-width: 900px;
}
.playbook-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.playbook-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
}
.playbook-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}
.playbook-step { display: flex; gap: 20px; }
.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  min-width: 28px;
  padding-top: 3px;
}
.step-content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 64px;
}
.outcomes-inner { max-width: 900px; }
.outcomes-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.outcome { text-align: left; }
.outcome-stat {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.outcome-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Features */
.features {
  padding: 100px 64px;
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 900px; }
.features-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.features-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.features-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}
.feature h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}
.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 100px 64px;
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 680px; }
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  padding: 40px 64px;
}
.footer-inner {}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav, .hero, .philosophy, .playbook, .features, .closing, .footer { padding-left: 28px; padding-right: 28px; }
  .outcomes { padding: 64px 28px; }
  .nav { padding: 20px 28px; }
  .hero { padding-top: 80px; padding-bottom: 72px; }
  .playbook-steps, .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .outcome-stat { font-size: 36px; }
}