:root {
  --bg: #F8F5F0;
  --bg-alt: #F0EDE6;
  --fg: #1A1A18;
  --fg-muted: #5A5A54;
  --accent: #E8A84B;
  --accent-dark: #C8862A;
  --green: #1A3A2A;
  --green-light: #254D3D;
  --border: #D8D4CC;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ─── HERO ─── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 12px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
  max-width: 220px;
  line-height: 1.4;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.05;
  letter-spacing: -2px;
}
.hero-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--green);
  color: #F8F5F0;
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.manifesto-text {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(248, 245, 240, 0.85);
}
.manifesto-accent {
  color: #F8F5F0;
  font-weight: 400;
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-size: 20px;
}

/* ─── HOW IT WORKS ─── */
.how {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.5px;
  margin-bottom: 56px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.how-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1px;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── FEATURES ─── */
.features {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.features .section-title { max-width: 1200px; margin: 0 auto 56px; }
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── OUTCOMES ─── */
.outcomes {
  padding: 80px 40px;
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.outcome {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.outcome-num {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.outcome-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ─── CLOSING ─── */
.closing {
  background: var(--green);
  padding: 100px 40px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #F8F5F0;
  letter-spacing: -1px;
  line-height: 1.15;
}
.closing-sub {
  font-size: 17px;
  color: rgba(248, 245, 240, 0.65);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}
.footer-sub {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { padding: 48px 24px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { gap: 32px; }
  .manifesto, .how, .features, .outcomes { padding: 60px 24px; }
  .how-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .closing { padding: 72px 24px; }
  .nav { padding: 0 24px; }
}

@media (max-width: 480px) {
  .stat-num { font-size: 36px; }
  .outcome-num { font-size: 40px; }
  .outcomes-grid { grid-template-columns: 1fr; }
}