h1,
h2,
h3 {
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--color-heading);
}
h1,
h2 {
  font-family: var(--font-serif);
  line-height: 0.98;
}
h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}
h3 {
  font: 600 1.15rem/1.2 var(--font-sans);
  letter-spacing: -0.03em;
  color: inherit;
}
em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent-strong);
}

/* reusable serif pull-quote, shared by several sections */
.statement {
  font: 500 clamp(1.5rem, 2.6vw, 2.35rem) / 1.28 var(--font-serif);
  color: var(--color-heading);
  letter-spacing: -0.02em;
}
.band-dark .statement {
  color: var(--color-text-on-dark);
}

/* small mono index label, e.g. "01" — shared numbering motif */
.index-label {
  font: 500 0.75rem/1 var(--font-mono);
  color: var(--color-text-muted);
}
.band-dark .index-label {
  color: var(--color-text-muted-on-dark);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font: 500 0.7rem/1 var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow.on-dark {
  color: var(--c-olive-100);
}

/* headline word-reveal (paired with data-split in script.js) */
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.word {
  display: inline-block;
}

/* generic scroll-reveal target (paired with GSAP ScrollTrigger) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
}
