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

:root {
  --green:      #1A3D2B;
  --green-mid:  #2A5C3F;
  --cream:      #F5F0E8;
  --cream-dark: #EAE3D5;
  --amber:      #D4920A;
  --amber-light:#F0B83A;
  --charcoal:   #1C1C1C;
  --mid:        #5C5C5C;
  --light:      #9A9A9A;
  --white:      #FFFFFF;
}

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

/* ── NAV ── */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--cream-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--mid);
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ── SECTION BASE ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 48px 100px;
  background: var(--green);
}
.hero-inner { max-width: 820px; position: relative; z-index: 1; }
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(212,146,10,0.4);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 52px;
  font-weight: 300;
}
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 36px;
}
.metric { display: flex; flex-direction: column; gap: 4px; }
.metric-val {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.03em;
}
.metric-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}
.metric-div {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
}
.hero-bg-shape {
  position: absolute;
  right: -80px;
  top: -40px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,146,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── PROBLEM ── */
.problem { padding: 96px 48px; background: var(--cream); }
.problem-inner { max-width: 960px; }
.problem-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
}
.problem-icon { margin-bottom: 18px; }
.problem-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}
.problem-card p { font-size: 15px; color: var(--mid); line-height: 1.65; }

/* ── HOW ── */
.how { padding: 96px 48px; background: var(--green); }
.how-inner { max-width: 960px; }
.how .section-label { color: var(--amber-light); }
.how-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  letter-spacing: -0.03em;
}
.step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.step-content p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 580px; }

/* ── OUTCOMES ── */
.outcomes { padding: 96px 48px; background: var(--cream); }
.outcomes-inner { max-width: 960px; }
.outcomes-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--green);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}
.outcome { display: flex; gap: 18px; align-items: flex-start; }
.outcome-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.outcome h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}
.outcome p { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ── CLOSING ── */
.closing {
  padding: 96px 48px;
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-dark);
}
.closing-inner { max-width: 780px; }
.closing-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-style: italic;
}
.closing-body {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 640px;
  font-weight: 300;
}

/* ── FOOTER ── */
.footer {
  padding: 28px 48px;
  border-top: 1px solid var(--cream-dark);
  background: var(--cream);
}
.footer-inner { display: flex; align-items: center; gap: 14px; }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
}
.footer-sep { color: var(--light); }
.footer-desc { font-size: 13px; color: var(--mid); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero, .problem, .how, .outcomes, .closing { padding: 64px 24px; }
  .nav { padding: 16px 24px; }
  .footer { padding: 20px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .hero-metrics { flex-direction: column; gap: 20px; align-items: flex-start; }
  .metric-div { display: none; }
}