:root {
  --bg: #FAF8F5;
  --bg-warm: #F2EDE6;
  --fg: #1A1A18;
  --muted: #6B6560;
  --accent: #D4922A;
  --accent-dark: #B37A20;
  --green: #1C3A2E;
  --green-light: #2D5A46;
  --border: #DED8D0;
}

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

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

/* ─── Manifesto ─────────────────────────── */
.manifesto {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 64px;
  background: var(--bg);
  position: relative;
}

.manifesto::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 48px;
  right: 48px;
  height: 1px;
  background: var(--border);
}

.manifesto-inner {
  max-width: 880px;
}

.overline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.manifesto h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 32px;
  font-optical-sizing: auto;
}

.lede {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.55;
}

.manifesto-badge {
  margin-top: 56px;
}

.badge-line {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 6px 14px;
  border-radius: 2px;
}

/* ─── Stats ─────────────────────────────── */
.stats {
  background: var(--green);
  padding: 72px 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1000px;
}

.stat-item {
  padding: 0 48px 0 0;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 48px;
}

.stat-item + .stat-item {
  padding-left: 48px;
}

.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  font-optical-sizing: auto;
}

.stat-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.stat-context {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ─── Process ───────────────────────────── */
.process {
  padding: 96px 48px;
  background: var(--bg-warm);
}

.process-header {
  max-width: 700px;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.process h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  font-optical-sizing: auto;
}

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

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.step-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── Philosophy ────────────────────────── */
.philosophy {
  padding: 96px 48px;
  background: var(--bg);
}

.philosophy-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
}

.philosophy-col {
  border-top: 2px solid var(--green);
  padding-top: 24px;
}

.philosophy-icon {
  display: inline-block;
  font-size: 20px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.philosophy-col h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
  font-optical-sizing: auto;
}

.philosophy-col p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Closing ───────────────────────────── */
.closing {
  padding: 96px 48px;
  background: var(--bg-warm);
}

.closing-inner {
  max-width: 800px;
}

.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 48px;
  font-optical-sizing: auto;
}

.closing-outcomes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.outcome {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.outcome-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.outcome p {
  font-size: 16px;
  color: var(--fg);
  font-weight: 400;
  line-height: 1.5;
}

/* ─── Footer ─────────────────────────────── */
footer {
  padding: 40px 48px;
  background: var(--green);
}

.footer-inner {
  max-width: 1000px;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-optical-sizing: auto;
}

.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 768px) {
  .manifesto { padding: 64px 24px 56px; }
  .stats { padding: 56px 24px; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-item { padding: 0 0 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { padding-left: 0; border-bottom: none; }
  .process { padding: 64px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .philosophy { padding: 64px 24px; }
  .philosophy-cols { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 64px 24px; }
  footer { padding: 32px 24px; }
}