/* ================================================================
   STATEMENT — Full-Width Manifesto Text
   Large text that reveals word-by-word as user scrolls through.
   ================================================================ */

.statement {
  padding: var(--space-xl) 0;
  background: var(--ivory);
  overflow: hidden;
}
.statement__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.statement__text {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  text-align: center;
}

/* Each word wraps in a span via JS — starts dim, brightens on scroll */
.statement__text .word {
  display: inline-block;
  opacity: 0.12;
  transition: opacity 0.05s;
  margin-right: 0.25em;
}
.statement__text .word.is-active {
  opacity: 1;
}
