:root {
  --green-deep: #1B4D3E;
  --green-mid: #245C4A;
  --green-light: #2E7460;
  --brass: #C9A84C;
  --brass-light: #D4BC6A;
  --bg: #F8F5F0;
  --bg-warm: #F2EDE4;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --fg-subtle: #9A9A9A;
  --white: #FFFFFF;
  --border: rgba(27, 77, 62, 0.12);
}

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

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

/* Manifesto */
.manifesto {
  background: var(--green-deep);
  color: var(--white);
  padding: 100px 48px 96px;
  position: relative;
  overflow: hidden;
}

.manifesto::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05);
  pointer-events: none;
}

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

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 28px;
}

.manifesto-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 800px;
}

.manifesto-headline em {
  font-style: italic;
  color: var(--brass-light);
}

.manifesto-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 64px;
  line-height: 1.7;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.stat {
  background: rgba(255,255,255,0.04);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  line-height: 1.4;
}

/* Outcomes */
.outcomes {
  padding: 96px 48px;
  background: var(--white);
}

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

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}

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

.outcome-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcome-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.outcome-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
}

.outcome-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Framework */
.framework {
  padding: 96px 48px;
  background: var(--bg-warm);
}

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

.framework-logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.framework-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 120px;
}

.fl-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
}

.fl-desc {
  font-size: 12px;
  color: var(--fg-subtle);
  font-weight: 400;
}

.framework-note {
  max-width: 540px;
}

.framework-note p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  border-left: 3px solid var(--brass);
  padding-left: 20px;
}

/* Closing */
.closing {
  padding: 96px 48px;
  background: var(--green-deep);
  color: var(--white);
}

.closing-inner { max-width: 860px; margin: 0 auto; }

.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 400;
}

.closing-attribution {
  font-size: 13px;
  color: var(--brass);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 56px;
}

.closing-vision p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* Footer */
footer {
  padding: 40px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-subtle);
}

.footer-legal {
  font-size: 13px;
  color: var(--fg-subtle);
}

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

  .manifesto-stats {
    grid-template-columns: 1fr;
  }

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

  .framework-logos {
    gap: 16px;
  }

  .framework-logo {
    min-width: 100px;
    padding: 16px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .manifesto-headline { font-size: 34px; }
  .section-heading { font-size: 28px; }
  .closing-quote { font-size: 20px; }
}