:root {
  --bg: #F6F1E9;
  --bg-subtle: #EDE7DB;
  --fg: #2D2A26;
  --fg-muted: #6B645A;
  --accent: #A8813B;
  --accent-light: #C9A84C;
  --primary: #2A4639;
  --primary-light: #3D6B54;
  --border: #D4C9B5;
}

*, *::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: 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nav-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}

/* ── MANIFESTO ── */
.manifesto {
  position: relative;
  padding: 6rem 2rem 5rem;
  overflow: hidden;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.manifesto-rule {
  width: 4rem;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}
.manifesto-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.manifesto-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 2.5rem;
  max-width: 700px;
}
.manifesto-body-col {
  max-width: 640px;
}
.manifesto-lead {
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.manifesto-lead--secondary {
  color: var(--fg-muted);
  font-size: 1rem;
}
.manifesto-quote {
  margin-top: 3rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}
.manifesto-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
}
.manifesto-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: normal;
}
.manifesto-bg-texture {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 85% 30%, rgba(168,129,59,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(42,70,57,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* ── PILLARS ── */
.pillars {
  background: var(--bg-subtle);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}
.pillars-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.pillars-divider {
  width: 3rem;
  height: 2px;
  background: var(--accent);
}
.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}
.pillar {}
.pillar-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.pillar-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.pillar-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── AUDIENCE ── */
.audience {
  padding: 5rem 2rem;
}
.audience-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.audience-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.audience-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.audience-body {
  font-size: 0.98rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.audience-scenarios {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}
.scenario {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.scenario-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 0.1rem;
}
.scenario strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.scenario div:last-child {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--primary);
  padding: 5rem 2rem;
}
.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
}
.philosophy-rule {
  width: 3rem;
  height: 2px;
  background: var(--accent-light);
  margin-bottom: 1.5rem;
}
.philosophy-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #F6F1E9;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.philosophy-body p {
  font-size: 1rem;
  color: rgba(246,241,233,0.8);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.philosophy-cta {
  margin-top: 3rem;
}
.philosophy-cta-inner {
  border-top: 1px solid rgba(246,241,233,0.2);
  padding-top: 2rem;
}
.philosophy-cta-rule {
  width: 2rem;
  height: 2px;
  background: var(--accent-light);
  margin-bottom: 1rem;
}
.philosophy-cta-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(246,241,233,0.85);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  padding: 5rem 2rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ── FOOTER ── */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.footer-rule {
  width: 2rem;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 2rem;
}
.footer-legal {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .manifesto { padding: 4rem 1.5rem 3.5rem; }
  .manifesto-headline { font-size: 2.4rem; }
  .pillars { padding: 3.5rem 1.5rem; }
  .pillars-grid { grid-template-columns: 1fr; gap: 2rem; }
  .audience { padding: 3.5rem 1.5rem; }
  .audience-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy { padding: 3.5rem 1.5rem; }
  .philosophy-headline { font-size: 1.8rem; }
  .closing { padding: 3.5rem 1.5rem; }
  .closing-headline { font-size: 2rem; }
  .nav { padding: 1rem 1.5rem; }
}

@media (max-width: 480px) {
  .manifesto-headline { font-size: 2rem; }
  .manifesto-quote blockquote { font-size: 1.3rem; }
  .manifesto-lead { font-size: 1rem; }
  .closing-body { font-size: 0.95rem; }
}