/* === BRAND TOKENS === */
:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --fg: #1a3a2a;
  --fg-muted: #4a7c59;
  --fg-light: #8aab8e;
  --accent: #e8a838;
  --accent-dark: #c8891f;
  --green: #2d6a4f;
  --green-light: #d4e7d8;
  --border: #e2e8d9;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

/* === HERO === */
.hero {
  padding: 6rem 2rem 5rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2.5rem 3rem;
  align-items: start;
}
.hero-content {
  grid-column: 1;
  grid-row: 1;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 620px;
}
.hero-headline em {
  color: var(--green);
  font-style: italic;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

.hero-stat {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.stat-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  max-width: 240px;
  box-shadow: 0 4px 24px rgba(26, 58, 42, 0.07);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.stat-source {
  display: block;
  font-size: 0.6875rem;
  color: var(--fg-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-path-graphic {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 320px;
  opacity: 0.85;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 2rem;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}
.manifesto-mark {
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.manifesto-headline {
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  line-height: 1.35;
  color: var(--bg);
  margin-bottom: 1.25rem;
}
.manifesto-body {
  font-size: 1rem;
  color: #a8c4ae;
  line-height: 1.75;
}

/* === OUTCOMES === */
.outcomes {
  padding: 6rem 2rem;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--fg);
  margin-bottom: 3rem;
  text-align: center;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.outcome-card:hover {
  box-shadow: 0 8px 32px rgba(26, 58, 42, 0.1);
  transform: translateY(-2px);
}
.outcome-icon {
  display: block;
  margin-bottom: 1.25rem;
}
.outcome-card h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.outcome-card p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === PROCESS === */
.process {
  background: #f0ede6;
  padding: 6rem 2rem;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--fg);
  margin-bottom: 3.5rem;
  text-align: center;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 2rem;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--accent));
  align-self: 3rem;
  opacity: 0.4;
}
.step-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--fg);
  margin-bottom: 0.625rem;
}
.step p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  background: var(--green);
  padding: 6rem 2rem;
}
.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.closing-statement strong {
  color: var(--accent);
}
.closing-sub {
  font-size: 1.0625rem;
  color: #a8d4b8;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--fg);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bg);
  display: block;
  margin-bottom: 0.375rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: #6a9a72;
}
.footer-meta p {
  font-size: 0.8125rem;
  color: #5a8a62;
  text-align: right;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero-stat { grid-column: 1; grid-row: 2; }
  .stat-block { max-width: 100%; }
  .hero-path-graphic { grid-column: 1; grid-row: 3; max-width: 260px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .manifesto-mark { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 2.5rem; }
  .step-connector { display: none; }
  .step { padding: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta p { text-align: left; }
}

@media (max-width: 480px) {
  .hero { padding: 4rem 1.25rem 3rem; }
  .manifesto { padding: 4rem 1.25rem; }
  .outcomes { padding: 4rem 1.25rem; }
  .process { padding: 4rem 1.25rem; }
  .closing { padding: 4rem 1.25rem; }
  .footer { padding: 2.5rem 1.25rem; }
}