/* ============================================================
   SECTIONS — legend, breath, act, casting-intro
   ============================================================ */

/* ------------------------------------------------------------ */
/* LEGEND (manifesto)                                            */
/* ------------------------------------------------------------ */
.legend {
  background: var(--ink);
  padding: clamp(120px, 24vw, 320px) clamp(28px, 5vw, 80px);
  text-align: center;
  position: relative;
}
.legend::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100px;
  background: linear-gradient(to bottom, transparent, var(--umber));
}
.legend .label { margin-bottom: 88px; }
.legend .text {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
  font-weight: 250;
  font-size: clamp(28px, 4.6vw, 76px);
  line-height: 1.16;
  letter-spacing: -0.018em;
  color: var(--bone);
  max-width: 1320px;
  margin: 0 auto;
}
.legend .text em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--umber);
  font-weight: 300;
  font-variation-settings: "opsz" 72;
}
.legend .text p { display: block; }
.legend .text p + p { margin-top: 0.15em; }
.legend .sig {
  margin-top: 96px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bone-faint);
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.legend .sig em { color: var(--umber); font-style: normal; }
.legend .sig .bar {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--umber);
}

@media (max-width: 700px) {
  .legend .label { margin-bottom: 56px; }
  .legend .sig { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

/* ------------------------------------------------------------ */
/* BREATH (single-line interlude)                                */
/* ------------------------------------------------------------ */
.breath {
  background: var(--ink);
  padding: clamp(100px, 16vw, 200px) clamp(28px, 5vw, 80px);
  text-align: center;
}
.breath .label { margin-bottom: 40px; }
.breath .text {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 72;
  font-size: clamp(22px, 3.6vw, 54px);
  line-height: 1.28;
  color: var(--bone-soft);
  max-width: 1080px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.breath .text em { color: var(--umber); }
.breath.tight { padding: clamp(80px, 12vw, 160px) clamp(28px, 5vw, 80px); }

/* ------------------------------------------------------------ */
/* ACT (sticky-scroll video sections)                            */
/* ------------------------------------------------------------ */
.act {
  position: relative;
  height: 200vh;
}
.act--tall { height: 140vh; }

.act .stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
}
.act video,
.act .stage > .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06) brightness(0.82);
  transform: scale(1.04);
}
.act .stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    transparent 28%,
    transparent 48%,
    rgba(0,0,0,0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.act .corner {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(20px, 4vw, 44px);
  z-index: 3;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bone-faint);
  text-align: right;
  line-height: 2;
}
.act .corner em { color: var(--umber); font-style: normal; }

.act .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding:
    clamp(36px, 5vw, 80px)
    clamp(20px, 4vw, 64px)
    clamp(48px, 6vw, 96px);
  pointer-events: none;
}
.act .overlay--centered {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.act .num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bone-soft);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.act .num em { color: var(--umber); font-style: normal; }
.act .num .bar {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--umber);
}

.act h2 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 75, "WONK" 0;
  font-weight: 250;
  font-size: clamp(44px, 9.4vw, 156px);
  line-height: 0.94;
  letter-spacing: -0.028em;
  color: var(--bone);
  margin-bottom: 40px;
  max-width: 1320px;
}
.act h2 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  color: var(--umber-glow);
  font-variation-settings: "opsz" 72;
}

.act .body {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 36;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.45;
  color: var(--bone-soft);
  max-width: 560px;
  letter-spacing: 0;
}
.act .body em { color: var(--umber); font-style: italic; }

@media (max-width: 700px) {
  .act .corner { display: none; }
  .act .num { margin-bottom: 20px; }
  .act h2 { margin-bottom: 20px; }
}

/* ------------------------------------------------------------ */
/* CASTING INTRO                                                  */
/* ------------------------------------------------------------ */
.casting-intro {
  background: var(--ink);
  padding: clamp(120px, 20vw, 280px) clamp(28px, 5vw, 80px);
  text-align: center;
  position: relative;
  border-top: 1px solid var(--hair);
}
.casting-intro .pre-label {
  margin-bottom: 80px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.casting-intro .pre-label .dot {
  width: 8px; height: 8px;
  background: var(--umber);
  border-radius: 50%;
  animation: blink 1.6s ease infinite;
}
.casting-intro h2 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
  font-weight: 250;
  font-size: clamp(56px, 12vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin-bottom: 56px;
}
.casting-intro h2 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--umber);
  font-weight: 300;
  font-variation-settings: "opsz" 72;
}
.casting-intro .lede {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 72;
  font-size: clamp(18px, 2.4vw, 32px);
  line-height: 1.42;
  color: var(--bone-soft);
  max-width: 880px;
  margin: 0 auto;
}
.casting-intro .lede em { color: var(--umber); font-style: italic; }

@media (max-width: 700px) {
  .casting-intro .pre-label { margin-bottom: 48px; }
  .casting-intro h2 { margin-bottom: 36px; }
}
