/* Typography-first story chapters */
.story-chapter {
  position: relative;
  min-height: 85dvh;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.5rem;
}

.story-chapter__label {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.45;
}

.story-chapter__copy {
  width: 100%;
  max-width: 26rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.story-line {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 4.8vw, 1.4rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  max-width: 24rem;
  opacity: 0;
}

.story-chapter.is-revealed .story-line.is-visible,
body.story-reduced .story-line {
  opacity: 1;
}

.story-line.is-visible {
  text-shadow: 0 0 32px rgba(255, 77, 141, 0.12);
}

.story-line--short {
  font-size: clamp(1.45rem, 5.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  opacity: 0;
  letter-spacing: 0.04em;
}

.story-chapter.is-revealed .story-line--short.is-visible,
body.story-reduced .story-line--short {
  opacity: 0.88;
}

.story-line--accent {
  font-size: clamp(1.55rem, 6.5vw, 2.15rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--pink-hot) 0%, var(--pink-soft) 50%, var(--pink-hot) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-chapter.is-revealed .story-line--accent.is-visible {
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(255, 77, 141, 0.3));
}

/* Launch — minimal text CTA */
.story-chapter--launch .story-chapter__copy {
  gap: 1.35rem;
}

.chapter-launch__btn {
  margin-top: 1rem;
  padding: 0.75rem 0.5rem;
  min-height: 3rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--pink-soft);
  background: none;
  border: none;
  border-bottom: 2px solid rgba(255, 158, 196, 0.55);
  cursor: pointer;
  opacity: 0;
  touch-action: manipulation;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.story-chapter.is-revealed .chapter-launch__btn {
  opacity: 1;
}

.chapter-launch__btn:hover,
.chapter-launch__btn:focus-visible {
  color: #fff;
  letter-spacing: 0.22em;
  outline: none;
}

.chapter-launch__btn:active {
  opacity: 0.75;
}

.chapter-launch__btn-text {
  display: inline-block;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  body.story-reduced .story-line,
  .story-chapter.is-ready .story-line {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .story-line--short {
    opacity: 0.88 !important;
  }

  .story-line--accent {
    -webkit-text-fill-color: var(--pink-soft);
    background: none;
    filter: none;
  }

  .chapter-launch__btn {
    opacity: 1 !important;
  }
}
