:root {
  --bg: #FAF7F2;
  --fg: #1E3328;
  --fg-muted: #4A6758;
  --accent: #C4541A;
  --accent-warm: #E8855A;
  --surface: #FFFFFF;
  --border: #E8E0D5;
  --stat-bg: #1E3328;
  --stat-fg: #FAF7F2;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 40px 80px;
  overflow: hidden;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(196, 84, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(48px, 6vw, 80px);
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-lede {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--stat-bg);
  border-radius: 4px;
  overflow: hidden;
  max-width: 760px;
}
.hero-stat {
  flex: 1;
  padding: 28px 32px;
}
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--stat-fg);
  margin-bottom: 4px;
}
.hero-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.4;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(250, 247, 242, 0.15);
  margin: 16px 0;
}

/* Sections */
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  color: var(--fg);
}
.section-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* Problem */
.problem {
  padding: 100px 40px;
  background: var(--surface);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.problem-card {
  padding: 0;
}
.problem-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* How */
.how {
  padding: 100px 40px;
  background: var(--bg);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  min-width: 64px;
}
.step-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
}

/* Features */
.features {
  padding: 100px 40px;
  background: var(--surface);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.feature {}
.feature-icon {
  margin-bottom: 16px;
}
.feature h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Outcomes */
.outcomes {
  padding: 100px 40px;
  background: var(--stat-bg);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes .section-title {
  color: var(--stat-fg);
  margin-bottom: 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(250, 247, 242, 0.15);
}
.outcome {
  background: var(--stat-bg);
  padding: 40px 36px;
  text-align: center;
}
.outcome-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-warm);
  margin-bottom: 8px;
}
.outcome-label {
  display: block;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.5;
}

/* Vision */
.vision {
  padding: 100px 40px;
  background: var(--bg);
  text-align: center;
}
.vision-inner {
  max-width: 800px;
  margin: 0 auto;
}
.vision-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 28px;
}
.vision-sub {
  font-size: 16px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
}
.footer-copy {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 64px 24px 56px; }
  .hero-headline { font-size: 40px; }
  .hero-lede { font-size: 17px; }
  .hero-stats { flex-direction: column; }
  .hero-stat-divider { width: auto; height: 1px; margin: 0 16px; }
  .problem { padding: 64px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .how { padding: 64px 24px; }
  .how-step { gap: 20px; }
  .step-num { font-size: 36px; min-width: 48px; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .outcomes { padding: 64px 24px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .vision { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}