/* ── MANIFESTO HERO ───────────────────────────────────── */
.manifesto-hero {
  background: var(--void);
  padding: 7rem 3rem 5rem;
  border-bottom: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.manifesto-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at top left, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.manifesto-hero-inner { max-width: 700px; position: relative; z-index: 1; }

.manifesto-hero-title {
  font-family: var(--heading-font, Georgia, serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--champagne);
  margin: 1rem 0 1.5rem;
}
.manifesto-hero-title em { font-style: var(--heading-style, italic); color: var(--gold); }

.manifesto-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ── SECTION STRUCTURE ────────────────────────────────── */
.manifesto-section { background: var(--deep); }
.manifesto-section-dark { background: var(--void); }

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

.manifesto-section-header {
  margin-bottom: 3rem;
}

.manifesto-section-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 1rem;
}

/* ── CHALLENGES GRID ──────────────────────────────────── */
.manifesto-challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border2);
  border: 0.5px solid var(--border2);
}

.challenge-card {
  background: var(--deep);
  padding: 2.25rem 2rem;
  transition: background 0.2s;
}
.challenge-card:hover { background: var(--card); }

.challenge-icon {
  font-size: 24px;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 1rem;
}

.challenge-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.challenge-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── PULL QUOTE DIVIDER ───────────────────────────────── */
.manifesto-divider {
  background: var(--card);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 4rem 3rem;
  text-align: center;
}

.manifesto-pull-quote {
  font-family: var(--heading-font, Georgia, serif);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 300;
  font-style: var(--heading-style, italic);
  color: var(--champagne);
  line-height: 1.55;
  max-width: 780px;
  margin: 0 auto;
}
.manifesto-pull-quote em { color: var(--gold); font-style: var(--heading-style, italic); }

/* ── GOALS LIST ───────────────────────────────────────── */
.manifesto-goals-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border2);
  border: 0.5px solid var(--border2);
}

.goal-item {
  display: flex;
  gap: 0;
  background: var(--void);
  transition: background 0.2s;
}
.goal-item:hover { background: var(--card); }

.goal-num {
  font-family: var(--heading-font, Georgia, serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-dim);
  padding: 2rem 2.5rem;
  border-right: 0.5px solid var(--border2);
  min-width: 90px;
  display: flex;
  align-items: flex-start;
  line-height: 1;
  padding-top: 2.25rem;
}

.goal-body {
  padding: 2rem 2.5rem;
}

.goal-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.goal-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 680px;
}

/* ── CTA SECTION ──────────────────────────────────────── */
.manifesto-cta-section {
  background: var(--panel);
  border-top: 0.5px solid var(--border);
  padding: 6rem 3rem;
  text-align: center;
}

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

.manifesto-cta-title {
  font-family: var(--heading-font, Georgia, serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--champagne);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.manifesto-cta-title em { font-style: var(--heading-style, italic); color: var(--gold); }

.manifesto-cta-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.manifesto-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── MANIFESTO RESPONSIVE ─────────────────────────────── */
@media (max-width: 720px) {
  .manifesto-hero { padding: 5rem 1.25rem 4rem; }
  .manifesto-divider { padding: 3rem 1.25rem; }
  .manifesto-cta-section { padding: 4rem 1.25rem; }
}
