:root {
  --bg: #F5F0E8;
  --surface: #FFFFFF;
  --surface-alt: #EDE8DF;
  --fg: #1A2E1A;
  --fg-muted: #4A5C4A;
  --accent: #C97D1E;
  --accent-dark: #A56516;
  --green-deep: #2D4A2D;
  --green-mid: #3D6B3D;
  --border: #D4CEBF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-display);
}
.brand-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* HERO */
.hero {
  padding: 80px 48px 72px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 520px;
}

/* SHIFT CARDS */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.shift-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(26,46,26,0.06);
}
.shift-card--secondary {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.shift-card-icon {
  font-size: 20px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  padding-top: 2px;
}
.shift-card--secondary .shift-card-icon { color: #C9A96E; }
.shift-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.shift-card--secondary .shift-card-label { color: #8FAF8F; }
.shift-card-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}
.shift-card--secondary .shift-card-value { color: #FFFFFF; }
.shift-card-unit {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}
.shift-card--secondary .shift-card-unit { color: #8FAF8F; }
.shift-card-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.45;
}
.shift-card--secondary .shift-card-desc { color: #A8C4A8; }

/* SECTION SHARED */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-lede {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
}

/* PROBLEM */
.problem {
  background: var(--green-deep);
  padding: 72px 48px;
}
.problem-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.problem-header { margin-bottom: 40px; }
.problem-header .section-title { color: #FFFFFF; }
.problem-header .section-lede { color: #A8C4A8; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #3D5C3D;
  border: 1px solid #3D5C3D;
  border-radius: 12px;
  overflow: hidden;
}
.problem-card {
  background: var(--green-deep);
  padding: 36px 32px;
}
.problem-stat {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 12px;
}
.problem-desc {
  font-size: 15px;
  color: #A8C4A8;
  line-height: 1.6;
}

/* HOW */
.how {
  background: var(--bg);
  padding: 80px 48px;
}
.how-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}
.how-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.step-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* STATS */
.stats {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 48px;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.stat-item { padding: 0 40px; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 220px;
}
.stat-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
}

/* MISSION */
.mission {
  background: var(--surface);
  padding: 80px 48px;
}
.mission-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mission-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.mission-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 24px;
}
.mission-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  background: var(--green-deep);
  padding: 80px 48px;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 17px;
  color: #A8C4A8;
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-body:last-child { margin-bottom: 0; }

/* FOOTER */
.footer {
  background: var(--fg);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer .brand-mark { color: var(--accent); font-size: 20px; }
.footer .brand-name { font-size: 16px; font-weight: 600; color: #FFFFFF; }
.footer-tagline {
  font-size: 14px;
  color: #8FAF8F;
  margin-bottom: 20px;
}
.footer-copy {
  font-size: 12px;
  color: #5A7A5A;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; gap: 24px; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .hero, .problem, .how, .stats, .mission, .closing, .footer { padding: 48px 24px; }
  .navbar { padding: 20px 24px; }
}