:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8df;
  --ink: #0f1a2e;
  --ink-mid: #3a4a63;
  --ink-light: #6b7a93;
  --accent: #e8a23e;
  --accent-dark: #c8831a;
  --white: #ffffff;
  --border: rgba(15,26,46,0.12);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Nav */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--ink-light);
  font-weight: 400;
}

/* Hero */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 2.5rem 4.5rem;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-kicker {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 440px;
}

.hero-stats {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
}
.stat-item { padding: 0.75rem 0; }
.stat-item:first-child { padding-top: 0; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0.75rem 0;
}

/* Problem */
.problem { padding: 5rem 2.5rem; }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.problem-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  max-width: 600px;
  margin-bottom: 3.5rem;
}
.problem-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.problem-col { border-top: 2px solid var(--ink); padding-top: 1.5rem; }
.problem-icon {
  width: 40px;
  height: 40px;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1rem;
}
.problem-col h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0;
  line-height: 1.3;
}
.problem-col p { font-size: 0.875rem; color: var(--ink-mid); line-height: 1.6; }

/* How it Works */
.how-it-works { background: var(--ink); color: var(--white); padding: 5rem 2.5rem; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.how-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--white);
  max-width: 600px;
  margin-bottom: 3.5rem;
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.step:first-child { border-top: none; padding-top: 0; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  padding-top: 0.15rem;
}
.step-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0;
}
.step-body p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* Outcomes */
.outcomes { padding: 5rem 2.5rem; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.outcomes-headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  max-width: 600px;
  margin-bottom: 3rem;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.outcome {
  background: var(--bg);
  padding: 2rem 2.25rem;
}
.outcome-metric {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.outcome-desc { font-size: 0.875rem; color: var(--ink-mid); line-height: 1.6; }

/* Manifesto */
.manifesto { background: var(--bg-alt); padding: 5rem 2.5rem; }
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-quote { max-width: 700px; }
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--ink);
}
.manifesto-body {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.manifesto-body:last-child { margin-bottom: 0; }

/* Closing */
.closing { background: var(--ink); color: var(--white); padding: 5rem 2.5rem; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}
.closing-body { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 1rem; }
.closing-body:last-child { margin-bottom: 0; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 2rem 2.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: baseline; gap: 1.5rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; }
.footer-tagline { font-size: 0.8rem; color: var(--ink-light); }

/* Responsive */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .problem-columns { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .stat-number { font-size: 2rem; }
  .nav, .hero, .problem, .how-it-works, .outcomes, .manifesto, .closing, .footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}