/* ─── MANIFESTO PAGE ─── */
body {
  font-family: var(--font-sans);
  background: #000;
  color: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

nav a.nav-link {
  color: rgba(255, 255, 255, 0.6);
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

/* ─── CONTENT ─── */
.manifesto {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  padding-left: clamp(80px, 15vw, 240px);
  padding-top: clamp(140px, 20vh, 200px);
  padding-bottom: clamp(80px, 12vh, 140px);
}

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

.manifesto h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.manifesto .lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.4;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  padding: 32px 0 32px 28px;
  border-left: 2px solid var(--color-accent);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

/* ─── BLOCKS ─── */
.block {
  margin-bottom: 36px;
}

.block p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #fff;
}

.block p:last-child { margin-bottom: 0; }

.block p.muted {
  color: #fff;
}

/* ─── QUOTES ─── */
.pullout {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.4;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 40px 0;
  padding: 32px 0 32px 28px;
  border-left: 2px solid var(--color-accent);
  position: relative;
}

/* ─── LISTS ─── */
.manifesto ul {
  list-style: none;
  margin: 12px 0 12px 0;
}

.manifesto ul li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.manifesto ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.6;
}

/* ─── DIVIDERS ─── */
.divider {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 44px 0;
}

/* ─── CLOSER ─── */
.closer {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.closer p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.03em;
}

/* ─── MANIFESTO ANIMATIONS ─── */
.reveal {
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.no-animate {
  transition: none !important;
}
.reveal.no-animate p,
.reveal.no-animate ul {
  animation: none !important;
  opacity: 1 !important;
}

.reveal.visible p,
.reveal.visible ul {
  animation: fadeUp 0.5s ease forwards;
  opacity: 0;
}
.reveal.visible p:nth-child(1),
.reveal.visible ul:nth-child(1) { animation-delay: 0s; }
.reveal.visible p:nth-child(2),
.reveal.visible ul:nth-child(2) { animation-delay: 0.1s; }
.reveal.visible p:nth-child(3),
.reveal.visible ul:nth-child(3) { animation-delay: 0.2s; }
.reveal.visible p:nth-child(4) { animation-delay: 0.3s; }

.pullout.reveal {
  transform: translateY(0) translateX(-8px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.pullout.reveal.visible {
  transform: translateY(0) translateX(0);
}
