/* ─────────────────────────────────────────────────────────────
   Manifesto — page-manifesto.css
   Variables: --fe-* only. Border-radius: 0 throughout.
   ───────────────────────────────────────────────────────────── */

/* ── Hero ──────────────────────────────────────────────────── */

.fe-manifesto-hero {
  background: var(--fe-cream);
  border-bottom: 1px solid var(--fe-border);
  padding: 140px 5% 48px;
  min-height: 28vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fe-manifesto-hero__eyebrow {
  font-family: var(--fe-font-body), sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin: 0 0 1.25rem;
}

.fe-manifesto-hero__title {
  font-family: var(--fe-font-display), serif;
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 300;
  color: var(--fe-black);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Watermark — flows below title, subtle decorative text */
.fe-manifesto-hero__watermark {
  display: block;
  font-family: var(--fe-font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-black);
  opacity: 0.12;
  text-align: center;
  margin-top: 1.5rem;
  pointer-events: none;
  user-select: none;
}

/* ── Content layout ────────────────────────────────────────── */

.fe-manifesto-layout {
  background: var(--fe-white);
  padding: 5rem 3rem;
}

.fe-manifesto-content {
  max-width: 720px;
  margin: 0 auto;
}

/* ── Section headings ──────────────────────────────────────── */

.fe-manifesto-content h2 {
  font-family: var(--fe-font-display), serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--fe-black);
  text-align: center;
  margin: 0 0 1.5rem;
  line-height: 1.25;
}

/* Gold vertical separator — appears above every h2 except the first */
.fe-manifesto-content h2:not(:first-child)::before {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: var(--fe-gold);
  opacity: 0.4;
  margin: 0 auto 2.5rem;
}

.fe-manifesto-content h2:first-child {
  margin-top: 0;
}

/* ── Sub-headings (section IV principles) ──────────────────── */

.fe-manifesto-content h3 {
  font-family: var(--fe-font-body), sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-black);
  margin: 2.5rem 0 0.75rem;
}

/* ── Dividers ──────────────────────────────────────────────── */

.fe-manifesto-content hr {
  border: none;
  border-top: 1px solid var(--fe-border);
  margin: 3rem 0;
}

/* ── Lists ─────────────────────────────────────────────────── */

.fe-manifesto-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.fe-manifesto-content ul li {
  font-family: var(--fe-font-body), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: var(--fe-warm-gray);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.fe-manifesto-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fe-gold);
  opacity: 0.7;
}

/* ── Paragraphs ────────────────────────────────────────────── */

.fe-manifesto-content p {
  font-family: var(--fe-font-body), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: var(--fe-warm-gray);
  margin: 0 0 2rem;
  text-align: left;
}

/* ── Closing lines ─────────────────────────────────────────── */

.fe-manifesto-content .fe-manifesto-closing {
  text-align: center;
  font-style: italic;
  color: var(--fe-black);
  margin-top: 1rem;
}

.fe-manifesto-content .fe-manifesto-sigil {
  text-align: center;
  font-family: var(--fe-font-body), sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin-top: 0.5rem;
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 768px) {
  .fe-manifesto-hero {
    padding: 100px 5% 40px;
  }

  .fe-manifesto-layout {
    padding: 3.5rem 1.5rem;
  }

  .fe-manifesto-content h2 {
    font-size: 22px;
  }

  .fe-manifesto-content p,
  .fe-manifesto-content ul li {
    font-size: 15px;
    line-height: 1.85;
  }
}
