:root {
  --bg: #faf8f4;
  --surface: #f2efe9;
  --fg: #1c1917;
  --fg-muted: #6b6560;
  --accent: #1e4d3a;
  --accent-light: #e8f0ec;
  --accent-mid: #c8ddd2;
}

*, *::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.65;
  -webkit-font-smoothing: antialiased;
}

/* ——— Header ——— */
.site-header {
  padding: 24px 48px;
  border-bottom: 1px solid var(--accent-mid);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wordmark {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ——— Hero ——— */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

.hero-sub--two {
  margin-top: 12px;
}

.hero-aside {
  padding-top: 8px;
}

.hero-stat-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-stat {
  border-left: 2px solid var(--accent-mid);
  padding-left: 20px;
}

.hero-stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ——— Section headings ——— */
.section-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 40px;
}

/* ——— Manifesto ——— */
.manifesto {
  background: var(--surface);
  padding: 80px 48px;
  border-top: 1px solid var(--accent-mid);
  border-bottom: 1px solid var(--accent-mid);
}

.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 20px;
}

.manifesto-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.manifesto-content p:last-child { margin-bottom: 0; }

.manifesto-content em {
  font-style: normal;
  color: var(--fg);
  font-weight: 500;
}

/* ——— Process ——— */
.process {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-body {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ——— Outcomes ——— */
.outcomes {
  background: var(--accent);
  padding: 80px 48px;
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes .section-heading {
  color: #ffffff;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
}

.outcome-icon {
  color: var(--accent-mid);
  margin-bottom: 16px;
}

.outcome-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}

.outcome-body {
  font-size: 0.9rem;
  color: var(--accent-mid);
  line-height: 1.7;
}

/* ——— Closing ——— */
.closing {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 48px 96px;
}

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent-mid);
  margin-bottom: 40px;
}

.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-statement--italic {
  font-style: italic;
  color: var(--fg-muted);
  font-size: 1.1rem;
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--accent-mid);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
}

.footer-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ——— Responsive ——— */
@media (max-width: 768px) {
  .site-header, .process, .manifesto, .outcomes, .closing, .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    padding: 56px 24px 48px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-aside { order: -1; }

  .hero-stat-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat { border-left: none; border-bottom: 2px solid var(--accent-mid); padding-left: 0; padding-bottom: 16px; flex: 1; min-width: 120px; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  .outcomes-grid { grid-template-columns: 1fr; }

  .manifesto, .outcomes, .process, .closing { padding-top: 56px; padding-bottom: 56px; }

  .closing { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .footer-inner { flex-direction: column; gap: 8px; }
}