html[data-palette="ink"] { color-scheme: dark; }
body.reel { background: var(--bg); }
.chapter.film { padding-top: 5.25rem; padding-bottom: 2.25rem; }
.chapter.film .inner { width: min(1080px, 100%); }
.chapter.film h2 { font-size: clamp(1.7rem, 4.6vw, 3.1rem); max-width: 22ch; }
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 56rem;
}
.pair figure { margin: 0; }
.pair img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #000;
}
.pair figcaption {
  margin-top: 0.55rem;
  font: 700 0.68rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .pair { grid-template-columns: 1fr; }
}
.stage {
  position: relative;
  margin-top: 1.5rem;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.stage video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
  vertical-align: middle;
}
.play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border: 0;
  background: color-mix(in srgb, #000 28%, transparent);
  color: var(--accent-ink);
  cursor: pointer;
  padding: 0;
}
.play[hidden] { display: none; }
.play span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0;
}
.play span::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--accent-ink);
  margin-left: 4px;
}
.play .hint {
  font: 500 0.8rem/1 var(--sans);
  color: #f0ebe4;
  text-shadow: 0 1px 8px #000;
}
.still {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1.4rem;
  border-radius: 12px;
  background: #000;
}
.prims {
  margin-top: 1.6rem;
  max-width: 40rem;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  overflow: hidden;
}
.prim {
  display: grid;
  grid-template-columns: 8.6rem 1fr;
  gap: 0.3rem 1rem;
  align-items: start;
  padding: 0.95rem 1.05rem;
  border-bottom: 1px solid var(--line);
}
.prim:last-child { border-bottom: 0; }
.prim .who {
  display: inline-block;
  font: 700 0.72rem/1.4 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}
.prim .who:hover { filter: brightness(0.92); }
.prim .why {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-mid);
}
.prim .why code {
  font-family: var(--mono);
  font-size: 0.78em;
  color: var(--ink);
}
@media (max-width: 720px) {
  .prim { grid-template-columns: 1fr; gap: 0.25rem; padding: 0.8rem 0.95rem; }
  .chapter.film { padding: 4.6rem 1.1rem 1.6rem; }
  .chapter.film h2 { font-size: clamp(1.45rem, 7.5vw, 2.1rem); }
  .chapter.film .lede { font-size: 1rem; max-width: 32rem; }
  .stage { margin-top: 0.85rem; }
  .stage video { max-height: 48svh; }
}
@media (orientation: landscape) and (max-height: 500px) {
  .dots, .rail { display: none; }
  .chapter.film { padding: 0; min-height: 100svh; }
  .chapter.film .inner { width: 100%; }
  .chapter.film .kicker,
  .chapter.film h2,
  .chapter.film .lede { display: none; }
  .stage { border-radius: 0; margin: 0; }
  .stage video { max-height: 100svh; height: 100svh; }
}
