/* TNG Pair System — shared cinematic architecture (museum DNA: COMP-001 index hero) */
:root {
  --pair-bg: #050609;
  --pair-amber: #c47a00;
  --tng-amber: #c47a00;
  --pair-text: #f5f0e8;
  --pair-muted: rgba(245, 240, 232, 0.58);
  --pair-ease: cubic-bezier(0.89, 0.13, 0.05, 0.84);
  --pair-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --pair-slow: 1.4s;
  /* Typography DNA — extracted from index.html hero (Inter Bold display, tight tracking) */
  --pair-display-font: Inter, system-ui, sans-serif;
  --pair-body-font: Inter, system-ui, sans-serif;
  --pair-display-weight: 700;
  --pair-display-tracking: -0.08em;
  --pair-display-lh: 0.95;
  --pair-theme-weight: 600;
  --pair-rail-gap: clamp(0.75rem, 2vw, 1.25rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overscroll-behavior: none; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--pair-body-font);
  background: var(--pair-bg);
  color: var(--pair-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.pair-loading { overflow: hidden; }
body.hero-locked { overflow: hidden; height: 100vh; height: 100dvh; }
body.hero-locked .pair-scene:not(#scene-collision-hero):not(#scene-barnes-philosophy) {
  visibility: hidden;
  pointer-events: none;
}
/* Audacity — exhibition components stay visible; scroll unlocked for museum walk */
body.hero-locked[data-pair="audacity"] {
  overflow-y: auto;
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
}
body.hero-locked[data-pair="audacity"] .pair-scene {
  visibility: visible;
  pointer-events: auto;
}
body.hero-locked[data-pair="audacity"] #scene-barnes-philosophy {
  visibility: visible;
  pointer-events: auto;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* COMP-007 Grain — CSS fallback until premium bundle mounts */
.pair-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  opacity: 0.045;
}
.pair-grain.pair-grain--css {
  background-image: url(/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png);
  background-repeat: repeat;
  animation: pair-grain 8s steps(6) infinite;
}
body.tng-premium-live .pair-grain.pair-grain--css {
  background-image: none;
  animation: none;
  opacity: 1;
}
@keyframes pair-grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
}

.pair-curtain {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: #000;
  transition: opacity 1.4s var(--pair-ease), visibility 1.4s;
}
.pair-curtain--lift {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pair-chrome {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 7000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem clamp(1.25rem, 4vw, 2.5rem);
  mix-blend-mode: difference;
  pointer-events: none;
  font-family: Inter, system-ui, sans-serif;
  opacity: 0;
  transition: opacity 1.2s var(--pair-ease);
}
body.pair-museum-scroll .pair-museum-chrome,
body.pair-dialogue .pair-museum-chrome {
  opacity: 1;
}
.pair-chrome a { pointer-events: auto; }
.pair-chrome__mark {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
}
.pair-chrome__wayfind {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.pair-chrome__floor {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pair-text);
  opacity: 0.55;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.pair-chrome__floor:hover { opacity: 0.95; }
.pair-chrome__index {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pair-amber);
}

.pair-progress {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  z-index: 7000;
  background: rgba(196, 122, 0, 0.08);
}
.pair-progress__fill {
  height: 100%;
  background: var(--pair-amber);
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0.85;
  transition: opacity 0.6s var(--pair-ease-soft);
}

.pair-scene {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity var(--pair-slow) var(--pair-ease), transform var(--pair-slow) var(--pair-ease);
}
.pair-scene--visible {
  opacity: 1;
  transform: none;
}
.pair-scene__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) clamp(2rem, 6vw, 5rem);
  min-height: auto;
}

.pair-display {
  font-family: var(--pair-display-font);
  font-weight: var(--pair-display-weight);
  letter-spacing: var(--pair-display-tracking);
  text-transform: uppercase;
  line-height: var(--pair-display-lh);
}
.pair-kicker {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(196, 122, 0, 0.88);
  margin-bottom: 1.5rem;
}
.pair-body {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.82;
  color: var(--pair-muted);
  max-width: 38em;
  letter-spacing: 0.01em;
}
.pair-body + .pair-body { margin-top: 1.75rem; }

/* COMP-006 word reveal */
.pair-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  transition: opacity 0.9s var(--pair-ease-soft), transform 0.9s var(--pair-ease-soft);
}
.pair-word--in { opacity: 1; transform: none; }

/* COMP-009 vertical line */
.pair-vline {
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, transparent, var(--pair-amber), transparent);
  transition: height 1.1s var(--pair-ease);
}
.pair-vline--drawn { height: clamp(4rem, 12vh, 7rem); }

/* COMP-010 horizontal line */
.pair-hline {
  width: 0;
  height: 1px;
  margin: 0 auto clamp(2rem, 5vh, 3.5rem);
  max-width: min(90vw, 42rem);
  background: linear-gradient(90deg, transparent, var(--pair-amber), transparent);
  transition: width 1s var(--pair-ease);
}
.pair-hline--drawn { width: 100%; }

/* Premium Framer mount targets (pair-components.mjs) */
.tng-premium--mounted { position: relative; }
body.tng-premium-live .pair-punch__line--fallback,
body.tng-premium-live .pair-journal__pull--fallback { display: none; }
body.tng-premium-live .pair-vline[data-tng-mounted],
body.tng-premium-live .pair-hline[data-tng-mounted] {
  background: none;
  height: auto;
  width: auto;
}
.pair-tng-mount--punch { min-height: 3rem; margin-bottom: 0.5rem; }
.pair-tng-mount--journal { margin-bottom: 1.5rem; }
.pair-medialabs-mount { position: relative; width: 100%; min-height: clamp(280px, 45vh, 520px); overflow: hidden; }
.pair-medialabs-mount img { width: 100%; height: 100%; object-fit: cover; }
.pair-luxe-mount,
.pair-orbit-mount,
.pair-spin-mount { width: 100%; margin: 0 0 2.5rem; min-height: 420px; }
.pair-evidence--luxe .pair-evidence__item { opacity: 0.35; pointer-events: none; }
.pair-glow-mount { display: inline-block; vertical-align: middle; }
.pair-wayfind__link--premium .pair-glow-mount { margin-right: 0.75rem; }
.pair-glow-mount--dialogue { margin: 2rem auto 0; display: flex; justify-content: center; }

/* Arrival */
#scene-arrival {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--pair-bg);
}
#scene-arrival .pair-display { font-size: clamp(3rem, 11vw, 8.5rem); }
.pair-arrival__sub {
  margin-top: 2.5rem;
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--pair-muted);
}

/* Wonder — sticky immersive */
#scene-wonder { padding: 0; min-height: 160vh; }
.pair-wonder__stack { position: relative; height: 160vh; }
.pair-wonder__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s var(--pair-ease), transform 2.4s var(--pair-ease), filter 0.6s;
  will-change: opacity, transform;
}
.pair-scene--visible .pair-wonder__img:first-child { opacity: 1; transform: scale(1); }
.pair-wonder__img--b { opacity: 0; transform: scale(1.04); }
.pair-wonder__frame {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  box-shadow: inset 0 -24px 48px rgba(0, 0, 0, 0.18);
}
.pair-wonder__caption {
  position: absolute;
  bottom: clamp(2rem, 6vh, 4rem);
  left: clamp(1.5rem, 5vw, 4rem);
  z-index: 2;
}
.pair-wonder__caption h2 {
  font-family: var(--pair-display-font);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--pair-display-weight);
  letter-spacing: var(--pair-display-tracking);
  text-transform: uppercase;
  line-height: var(--pair-display-lh);
}

.pair-wonder__img--layer2 {
  opacity: 0;
  transform: scale(1.06);
  mix-blend-mode: soft-light;
}

/* Full-bleed interstitial between craft subsections */
.pair-interstitial {
  padding: 0;
  min-height: 72vh;
  min-height: 72dvh;
  overflow: hidden;
}
.pair-interstitial img {
  width: 100%;
  height: 72vh;
  height: 72dvh;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.8s var(--pair-ease), transform 2.6s var(--pair-ease);
}
.pair-scene--visible.pair-interstitial img,
.pair-interstitial.pair-scene--visible img {
  opacity: 1;
  transform: scale(1);
}

/* Poster-only film fallback (no personal/document footage) */
.pair-film-scene--still {
  min-height: 60vh;
  display: flex;
  align-items: stretch;
}
.pair-film__still {
  width: 100%;
  height: 60vh;
  height: 60dvh;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

/* Editorial gallery grid */
.pair-editorial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.pair-editorial__item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(196, 122, 0, 0.1);
  margin: 0;
}
.pair-editorial__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}
/* Luxury static — no hover grade or scale */
.pair-editorial__item:hover img {
  transform: none;
  filter: saturate(0.9) contrast(1.06);
}
.pair-editorial__item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem;
  background: linear-gradient(0deg, rgba(5,6,9,0.9) 0%, transparent 100%);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 122, 0, 0.75);
  line-height: 1.5;
}

/* Placeholder editorial frame */
.pair-slot {
  position: relative;
  aspect-ratio: 4/5;
  background: #0a0b0f;
  border: 1px solid rgba(196, 122, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pair-slot img { width: 100%; height: 100%; object-fit: cover; }
.pair-slot__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: rgba(5, 6, 9, 0.72);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(196, 122, 0, 0.65);
}
.pair-slot--has-image .pair-slot__label { display: none; }

/* Reflection */
#scene-reflection {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.pair-reflection__headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  max-width: 14ch;
}

/* Evidence grid — future garment slots */
.pair-evidence {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2.5rem;
}
.pair-evidence__item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid rgba(196, 122, 0, 0.12);
}
.pair-evidence__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}
.pair-evidence__item:hover img {
  transform: none;
  filter: saturate(0.88) contrast(1.04);
}
.pair-evidence__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(0deg, rgba(5,6,9,0.92) 0%, transparent 100%);
}
.pair-evidence__label span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pair-amber);
  margin-bottom: 0.35rem;
}
.pair-evidence__label p {
  font-family: var(--pair-display-font);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

/* Transition CTA */
#scene-transition {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pair-transition__inner { max-width: 40rem; }
.pair-transition__inner h2 {
  font-family: var(--pair-display-font);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.pair-transition__inner p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--pair-muted);
  margin-bottom: 2.5rem;
}
/* Museum wayfinding — index tng-collection-luxe__cta language, not ecommerce buttons */
.pair-wayfind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.pair-wayfind__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--pair-muted);
  transition: color 0.5s var(--pair-ease-soft);
}
.pair-wayfind__link:hover {
  color: var(--pair-amber);
}
.pair-wayfind__label {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(196, 122, 0, 0.75);
}
.pair-wayfind__dest {
  font-family: var(--pair-display-font);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: var(--pair-display-weight);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--pair-text);
  border-bottom: 1px solid rgba(196, 122, 0, 0.35);
  padding-bottom: 0.35rem;
  transition: border-color 0.5s var(--pair-ease-soft), color 0.5s var(--pair-ease-soft);
}
.pair-wayfind__link:hover .pair-wayfind__dest {
  color: var(--pair-amber);
  border-bottom-color: rgba(196, 122, 0, 0.65);
}
.pair-wayfind__link--next .pair-wayfind__dest {
  color: var(--pair-amber);
  border-bottom-color: rgba(196, 122, 0, 0.55);
}
.pair-wayfind__link--return .pair-wayfind__dest {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.08em;
  opacity: 0.82;
}
.pair-dialogue-teaser .pair-wayfind__link {
  margin-top: 0.5rem;
}

.pair-cta {
  display: inline-block;
  padding: 1rem 2.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pair-bg);
  background: var(--pair-amber);
  border: 1px solid var(--pair-amber);
  transition: background 0.5s, color 0.5s, transform 0.4s var(--pair-ease-soft);
}
.pair-cta:hover {
  background: transparent;
  color: var(--pair-amber);
  transform: translateY(-1px);
}
.pair-cta--ghost {
  background: transparent;
  color: var(--pair-amber);
  margin-left: 1rem;
}
.pair-cta--ghost:hover {
  background: var(--pair-amber);
  color: var(--pair-bg);
}

/* ── DIALOGUE PAGE ── */
.pair-dialogue-hero {
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vh, 7rem);
  background: linear-gradient(180deg, var(--pair-bg) 0%, #0a0b10 100%);
}
.pair-dialogue-hero__inner { max-width: 900px; }
.pair-dialogue-hero h1 {
  font-family: var(--pair-display-font);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.pair-dialogue-hero .pair-artists {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pair-amber);
  margin-bottom: 2rem;
}

.pair-voice {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(4rem, 8vh, 6rem) 0;
  border-top: 1px solid rgba(196, 122, 0, 0.12);
}
.pair-voice__aside {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pair-amber);
  padding-top: 0.5rem;
}
.pair-voice__aside cite {
  display: block;
  font-family: var(--pair-display-font);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-style: normal;
  color: var(--pair-text);
  margin-top: 0.75rem;
  text-transform: none;
}
.pair-voice__body {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.8;
  color: var(--pair-muted);
}
.pair-voice__body p + p { margin-top: 1.25rem; }
.pair-voice__pull {
  font-family: var(--pair-display-font);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  color: rgba(245, 240, 232, 0.9);
  margin-bottom: 1.5rem;
  max-width: 28ch;
}

.pair-collision {
  padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(196, 122, 0, 0.04), transparent);
}
.pair-collision h2 {
  font-family: var(--pair-display-font);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.pair-collision__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  align-items: center;
}
.pair-collision__grid span {
  font-family: var(--pair-display-font);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
.pair-collision__grid .pair-x {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--pair-amber);
}

.pair-cloth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.pair-cloth__visual { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #0a0b0f; }
.pair-cloth__visual img { width: 100%; height: 100%; object-fit: cover; }

.pair-progression {
  padding: clamp(5rem, 10vh, 7rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  border-top: 1px solid rgba(196, 122, 0, 0.18);
}
.pair-progression__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.pair-progression__link {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pair-muted);
  transition: color 0.3s;
}
.pair-progression__link:hover { color: var(--pair-amber); }
.pair-progression__link--next { color: var(--pair-amber); }

.pair-footer {
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 4rem;
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
}
.pair-footer a { color: rgba(196, 122, 0, 0.7); }
.pair-footer a:hover { color: var(--pair-amber); }

/* COMP-008 media reveal */
.pair-media-reveal {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.4s var(--pair-ease), transform 1.8s var(--pair-ease);
}
.pair-media-reveal--in { opacity: 1; transform: none; }

/* Film player */
.pair-film {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
}
.pair-scene--visible .pair-film { opacity: 1; pointer-events: auto; transition-delay: 1.2s; }
.pair-film video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s;
}
.pair-film--playing video { opacity: 1; }
.pair-film--playing .pair-film__poster { opacity: 0; }
.pair-film__poster {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  transition: opacity 0.8s;
}
.pair-film__play {
  position: relative;
  z-index: 2;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid rgba(196, 122, 0, 0.6);
  border-radius: 50%;
  background: rgba(5, 6, 9, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.pair-film__play:hover {
  border-color: var(--pair-amber);
  filter: drop-shadow(0 0 12px #c47a00);
}
.pair-film__play::after {
  content: "";
  border: 7px solid transparent;
  border-left: 12px solid var(--pair-amber);
  margin-left: 4px;
}
.pair-film--playing .pair-film__play { opacity: 0; pointer-events: none; }

@media (max-width: 809px) {
  #scene-reflection { grid-template-columns: 1fr; }
  .pair-voice { grid-template-columns: 1fr; }
  .pair-cloth { grid-template-columns: 1fr; }
  .pair-collision__grid { grid-template-columns: 1fr; text-align: center; }
  .pair-cta--ghost { margin-left: 0; margin-top: 1rem; display: inline-block; }
}

/* ── COLLISION HERO ── */
.collision-hero {
  --ch-left: #0d0a08;
  --ch-right: #12100e;
  --ch-accent: #c47a00;
  --ch-deep: #050609;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ch-deep);
}
.collision-hero--compact {
  min-height: 55vh;
  min-height: 55dvh;
}
.ch-layers {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ch-layer {
  position: absolute;
  inset: 0;
  transition: opacity 2s var(--pair-ease);
}
.ch-layer--left { clip-path: polygon(0 0, 52% 0, 48% 100%, 0 100%); }
.ch-layer--right { clip-path: polygon(52% 0, 100% 0, 100% 100%, 48% 100%); }
.ch-layout--diagonal-cut .ch-layer--left { clip-path: polygon(0 0, 100% 0, 42% 100%, 0 100%); }
.ch-layout--diagonal-cut .ch-layer--right { clip-path: polygon(100% 0, 100% 100%, 42% 100%, 58% 0); }
.ch-layout--layered-atmosphere .ch-layer--left,
.ch-layout--layered-atmosphere .ch-layer--right { clip-path: none; opacity: 0.85; }
.ch-layout--broken-grid .ch-layer--left { clip-path: polygon(0 0, 55% 0, 50% 100%, 0 100%); }
.ch-layout--broken-grid .ch-layer--right { clip-path: polygon(55% 0, 100% 0, 100% 100%, 50% 100%); }
.ch-layout--light-from-darkness .ch-layer--left { clip-path: polygon(0 0, 38% 0, 32% 100%, 0 100%); }
.ch-layout--light-from-darkness .ch-layer--right { clip-path: polygon(38% 0, 100% 0, 100% 100%, 32% 100%); }
.ch-layout--measured-fracture .ch-layer--left { clip-path: polygon(0 0, 50% 0, 46% 100%, 0 100%); }
.ch-layout--measured-fracture .ch-layer--right { clip-path: polygon(50% 0, 100% 0, 100% 100%, 46% 100%); }
.ch-layout--impossible-fold .ch-layer--left { clip-path: polygon(0 0, 62% 0, 48% 100%, 0 100%); }
.ch-layout--impossible-fold .ch-layer--right { clip-path: polygon(62% 0, 100% 0, 100% 100%, 48% 100%); }
.ch-layout--dissolving-wall .ch-layer--left { clip-path: polygon(0 0, 54% 0, 44% 100%, 0 100%); }
.ch-layout--dissolving-wall .ch-layer--right { clip-path: polygon(54% 0, 100% 0, 100% 100%, 44% 100%); }

.ch-divide {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.ch-divide--vertical {
  background: linear-gradient(90deg, transparent 47%, rgba(196,122,0,0.18) 50%, transparent 53%);
}
.ch-divide--diagonal {
  background: linear-gradient(125deg, transparent 44%, rgba(196,122,0,0.28) 50%, transparent 56%);
}
.ch-divide--soft {
  background: radial-gradient(ellipse 40% 80% at 50% 50%, rgba(196,122,0,0.12), transparent 70%);
}
.ch-divide--fracture {
  background:
    linear-gradient(168deg, transparent 46%, rgba(196,122,0,0.2) 49%, transparent 52%),
    linear-gradient(172deg, transparent 48%, rgba(245,240,232,0.04) 50%, transparent 52%);
}
.ch-divide--light-beam {
  background: linear-gradient(105deg, transparent 28%, rgba(196,122,0,0.32) 34%, rgba(245,240,232,0.05) 38%, transparent 48%);
}
.ch-divide--architectural {
  background: linear-gradient(90deg, transparent 45%, rgba(196,122,0,0.15) 50%, transparent 55%);
}
.ch-divide--fold {
  background: linear-gradient(140deg, transparent 42%, rgba(196,122,0,0.22) 50%, transparent 58%);
}
.ch-divide--dissolve {
  background: linear-gradient(95deg, transparent 38%, rgba(180,160,120,0.18) 46%, rgba(196,122,0,0.25) 52%, transparent 62%);
}

.ch-layer-grain {
  position: absolute;
  inset: -10%;
  z-index: 3;
  opacity: 0.06;
  background-image: url(/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png);
  background-repeat: repeat;
  mix-blend-mode: overlay;
  animation: pair-grain 10s steps(4) infinite;
}
.ch-drift {
  position: absolute;
  inset: -5%;
  z-index: 2;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(196,122,0,0.04), transparent);
  will-change: transform;
}

.ch-scribble, .ch-arch, .ch-grid {
  position: absolute;
  color: var(--ch-accent);
  opacity: 0.5;
}
.ch-scribble { inset: 10% 5% 15% 40%; width: 55%; height: 70%; }
.ch-arch { inset: 0 50% 0 0; width: 50%; height: 100%; }
.ch-layout--vertical-fracture .ch-arch { left: 5%; width: 45%; }
.ch-grid { inset: 0; width: 100%; height: 100%; }

.ch-planes { position: absolute; inset: 0; z-index: 2; }
.ch-plane {
  position: absolute;
  border-radius: 2px;
  opacity: 0;
  animation: ch-plane-breathe 14s ease-in-out infinite;
  animation-delay: calc(var(--ch-plane-i, 0) * 2.5s);
}
.ch-plane--1 { inset: 15% 20% 55% 15%; background: var(--ch-left); }
.ch-plane--2 { inset: 35% 10% 35% 55%; background: var(--ch-right); }
.ch-plane--3 { inset: 55% 25% 15% 30%; background: rgba(196,122,0,0.08); }
.ch-plane--4 { inset: 25% 40% 45% 5%; background: rgba(245,240,232,0.03); }
@keyframes ch-plane-breathe {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.02); }
}

.ch-dots {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  padding: 15%;
  opacity: 0.25;
}
.ch-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ch-accent);
  animation: ch-dot-pulse 6s ease-in-out infinite;
}
.ch-dot:nth-child(odd) { animation-delay: 1s; }
@keyframes ch-dot-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.4); }
}

.ch-beam {
  position: absolute;
  top: -10%; left: 25%;
  width: 18%; height: 120%;
  background: linear-gradient(180deg, transparent, rgba(196,122,0,0.35), rgba(245,240,232,0.06), transparent);
  filter: blur(8px);
  transform: rotate(8deg);
  animation: ch-beam-sway 18s ease-in-out infinite;
}
@keyframes ch-beam-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
@keyframes ch-beam-sway {
  0%, 100% { transform: rotate(8deg) translateX(0); }
  50% { transform: rotate(6deg) translateX(2%); }
}

.ch-measure {
  position: absolute;
  inset: 12% 8%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  opacity: 0.12;
}
.ch-measure span {
  border-left: 1px solid var(--ch-accent);
  height: 100%;
}

.ch-fold {
  position: absolute;
  top: 0; bottom: 0; left: 48%;
  width: 8%;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(245,240,232,0.06), transparent);
  transform: skewX(-6deg);
  animation: ch-fold-shift 20s ease-in-out infinite;
}
@keyframes ch-fold-shift {
  0%, 100% { transform: skewX(-6deg) translateX(0); }
  50% { transform: skewX(-4deg) translateX(1%); }
}

.ch-ash {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.ch-ash__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(180,170,150,0.4);
  border-radius: 50%;
  animation: ch-ash-fall 16s linear infinite;
}
.ch-ash__particle:nth-child(1) { left: 12%; animation-delay: 0s; }
.ch-ash__particle:nth-child(2) { left: 22%; animation-delay: 2s; }
.ch-ash__particle:nth-child(3) { left: 35%; animation-delay: 4s; }
.ch-ash__particle:nth-child(4) { left: 48%; animation-delay: 1s; }
.ch-ash__particle:nth-child(5) { left: 58%; animation-delay: 3s; }
.ch-ash__particle:nth-child(6) { left: 68%; animation-delay: 5s; }
.ch-ash__particle:nth-child(7) { left: 78%; animation-delay: 2.5s; }
.ch-ash__particle:nth-child(8) { left: 88%; animation-delay: 4.5s; }
.ch-ash__particle:nth-child(n+9) { left: calc(10% + (var(--i, 0) * 5%)); animation-delay: calc(var(--i, 0) * 1.2s); }
@keyframes ch-ash-fall {
  0% { top: -2%; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { top: 102%; opacity: 0; }
}

.ch-gold-leaf {
  position: absolute;
  top: 18%; right: 22%;
  width: 12%; height: 18%;
  background: radial-gradient(ellipse, rgba(196,122,0,0.25), transparent 70%);
  filter: blur(2px);
  animation: ch-leaf-glow 10s ease-in-out infinite;
}
@keyframes ch-leaf-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.ch-typography {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(6rem, 14vh, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 8vh, 5rem);
  mix-blend-mode: normal;
}
.ch-typography--compact {
  min-height: 55vh;
  min-height: 55dvh;
  justify-content: center;
  padding: clamp(4rem, 10vh, 6rem) clamp(1.5rem, 5vw, 4rem);
}
.ch-kicker {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(196, 122, 0, 0.75);
  margin-bottom: 1rem;
}
.ch-artists {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pair-muted);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
}
.ch-artist--a { color: rgba(245,240,232,0.7); }
.ch-artist--b { color: rgba(196,122,0,0.85); }
.ch-x { color: var(--pair-amber); font-size: 0.55rem; }
.ch-title {
  font-family: var(--pair-display-font);
  font-size: clamp(3rem, 11vw, 7.5rem);
  font-weight: var(--pair-display-weight);
  letter-spacing: var(--pair-display-tracking);
  text-transform: uppercase;
  line-height: var(--pair-display-lh);
  max-width: 14ch;
  margin-bottom: 1rem;
}
.ch-typography--compact .ch-title { font-size: clamp(2rem, 6vw, 3.5rem); }
.ch-theme {
  font-family: var(--pair-display-font);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: var(--pair-theme-weight);
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: none;
  color: rgba(245, 240, 232, 0.72);
  max-width: 22ch;
}
.ch-tagline {
  font-family: var(--pair-body-font);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.06em;
  color: rgba(196, 122, 0, 0.72);
  max-width: 28ch;
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 1.4s var(--pair-ease), transform 1.4s var(--pair-ease);
}
.ch-tagline--in {
  opacity: 1;
  transform: none;
}
.ch-gold-slit {
  position: absolute;
  top: -5%;
  left: 46%;
  width: 2.5%;
  height: 110%;
  z-index: 4;
  background: linear-gradient(180deg, transparent 0%, rgba(196,122,0,0.08) 15%, rgba(196,122,0,0.28) 45%, rgba(245,240,232,0.04) 55%, rgba(196,122,0,0.12) 85%, transparent 100%);
  filter: blur(3px);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform, opacity;
}
.ch-gold-slit--drift {
  animation: ch-gold-drift 32s ease-in-out infinite;
}
@keyframes ch-gold-drift {
  0%, 100% { transform: translateX(-1.2%) rotate(0.6deg); opacity: 0.42; }
  33% { transform: translateX(0.8%) rotate(-0.4deg); opacity: 0.58; }
  66% { transform: translateX(-0.3%) rotate(0.2deg); opacity: 0.48; }
}
.ch-charcoal {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  background:
    radial-gradient(ellipse 40% 30% at 25% 70%, rgba(30,28,26,0.5), transparent 70%),
    radial-gradient(ellipse 50% 40% at 75% 30%, rgba(20,18,16,0.45), transparent 65%),
    url(/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png);
  background-size: auto, auto, 180px;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.ch-construction, .ch-fragment, .ch-symbols {
  position: absolute;
  color: var(--ch-accent);
  pointer-events: none;
}
.ch-construction { inset: 0; width: 100%; height: 100%; opacity: 0.35; }
.ch-fragment { inset: 8% 10% 12% 35%; width: 55%; height: 80%; opacity: 0.4; }
.ch-symbols { inset: 15% 8% auto auto; width: 35%; height: 35%; opacity: 0.35; }
.ch-layout--vertical-fracture .ch-scribble { inset: 8% 8% 10% 38%; width: 54%; height: 75%; opacity: 0.55; }
.ch-layout--vertical-fracture .ch-arch { left: 3%; width: 42%; opacity: 0.45; }
.ch-mystery {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.ch-mystery__form {
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s linear;
  border: 1px solid rgba(196,122,0,0.06);
  will-change: opacity, transform;
}
.ch-mystery__form--a {
  top: 18%; left: 8%; width: 22%; height: 28%;
  clip-path: polygon(0 0, 100% 8%, 92% 100%, 0 88%);
}
.ch-mystery__form--b {
  bottom: 22%; right: 12%; width: 18%; height: 32%;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 92%);
}
.ch-mystery__form--c {
  top: 42%; left: 38%; width: 14%; height: 20%;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.ch-signature--soft-reveal .ch-layer { transition: opacity 4s var(--pair-ease); }
.ch-signature--fog-resolve .ch-plane { animation-duration: 18s; }
.ch-dot--accumulate { animation: ch-dot-accumulate 12s ease-in-out infinite; }
@keyframes ch-dot-accumulate {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50% { opacity: 0.75; transform: scale(1.3); }
}
.ch-signature--shadow-shift .ch-layers { will-change: transform; transition: transform 0.3s linear; }
.ch-fold--signature { animation: ch-fold-signature 24s ease-in-out infinite; }
@keyframes ch-fold-signature {
  0%, 100% { transform: skewX(-6deg) translateX(0); opacity: 0.6; }
  50% { transform: skewX(-2deg) translateX(1.5%); opacity: 0.85; }
}
.ch-hero--ready .ch-layer { opacity: 1; }
.ch-layers--photo .ch-mystery { opacity: 0.08; pointer-events: none; }
.ch-layer--photo { cursor: zoom-in; opacity: 1 !important; }
.ch-layer--photo .ch-arch,
.ch-layer--photo .ch-scribble,
.ch-layer--photo .ch-construction,
.ch-layer--photo .ch-fragment,
.ch-layer--photo .ch-symbols,
.ch-layer--photo .ch-grid { opacity: 0.18; pointer-events: none; }
.collision-hero [data-lightbox-src] { cursor: zoom-in; }

/* Literary exhibition scenes */
.pair-essay {
  max-width: 42em;
}
.pair-essay .pair-body { max-width: none; }
.pair-essay__lead {
  font-family: var(--pair-body-font);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.88);
  margin-bottom: 2rem;
  font-style: italic;
  letter-spacing: -0.01em;
}
.pair-bridge {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(196,122,0,0.03), transparent);
  padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 5vw, 4rem);
}
.pair-bridge__line {
  font-family: var(--pair-display-font);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--pair-display-weight);
  letter-spacing: var(--pair-display-tracking);
  text-transform: uppercase;
  color: rgba(196, 122, 0, 0.7);
  max-width: 28ch;
}
.pair-closing {
  border-top: 1px solid rgba(196, 122, 0, 0.18);
  padding-top: clamp(3rem, 8vh, 5rem);
}
.pair-closing__idea {
  font-family: var(--pair-display-font);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  font-style: italic;
  color: rgba(245, 240, 232, 0.9);
  max-width: 24ch;
  margin-bottom: 2rem;
}
.pair-garment-coda {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pair-amber);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 122, 0, 0.12);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Dialogue conversation */
.pair-conversation {
  max-width: 44em;
  margin: 0 auto;
}
.pair-conversation p {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.85;
  color: var(--pair-muted);
  margin-bottom: 1.5rem;
}
.pair-conversation p.pair-conversation__beat {
  font-family: var(--pair-display-font);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(245, 240, 232, 0.85);
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(196, 122, 0, 0.35);
}
.pair-conversation__section {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pair-amber);
  margin: 3rem 0 1.5rem;
}

#scene-collision-hero {
  opacity: 1;
  transform: none;
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Punch line — one sentence tension */
.pair-punch {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 5vw, 4rem);
}
.pair-punch__line {
  font-family: var(--pair-body-font);
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: rgba(245, 240, 232, 0.88);
  max-width: 22ch;
}

/* The Collision section */
.pair-collision-section {
  border-top: 1px solid rgba(196, 122, 0, 0.1);
  border-bottom: 1px solid rgba(196, 122, 0, 0.1);
  background: linear-gradient(180deg, transparent, rgba(196,122,0,0.025), transparent);
}

/* Dialogue teaser */
.pair-dialogue-teaser {
  text-align: center;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 5vw, 4rem);
}
.pair-dialogue-teaser__excerpt {
  font-family: var(--pair-body-font);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.82);
  max-width: 32em;
  margin: 0 auto 2rem;
}

/* Journal */
.pair-journal {
  border-top: 1px solid rgba(196, 122, 0, 0.12);
}
.pair-journal__pull {
  font-family: var(--pair-body-font);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.9);
  margin-bottom: 1.5rem;
  max-width: 28ch;
}

/* Editorial film slot */
#scene-film { padding: 0; min-height: 100vh; min-height: 100dvh; }
.pair-film-scene {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: #0a0b0f;
}
.pair-film-scene .pair-film__poster {
  background-size: cover;
  background-position: center;
}
.pair-film-scene .pair-film {
  opacity: 1;
  pointer-events: auto;
}

/* Progression — continue to next pair */
.pair-progression-cta {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(196, 122, 0, 0.15);
  background: linear-gradient(180deg, transparent, rgba(196, 122, 0, 0.02), transparent);
}
.pair-progression-cta__inner { max-width: 36rem; }
.pair-progression-cta--close {
  min-height: 75vh;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 9, 0.4) 40%, rgba(5, 6, 9, 0.85));
}
body[data-pair="veracity"] .pair-progression-cta--close {
  min-height: 85vh;
  border-top-color: rgba(184, 150, 60, 0.22);
}
body[data-pair="veracity"] .pair-progression-cta--close .pair-display {
  letter-spacing: 0.16em;
}
body[data-pair="audacity"] .pair-progression-cta {
  border-top-color: rgba(196, 122, 0, 0.18);
}
body[data-pair="sagacity"] .pair-scene__inner {
  padding-top: clamp(4.5rem, 11vw, 8.5rem);
}

@media (max-width: 809px) {
  .ch-title { letter-spacing: var(--pair-display-tracking); }
  .ch-layer--left, .ch-layer--right { clip-path: none !important; }
  .ch-layer--left { height: 50%; bottom: auto; opacity: 0.6; }
  .ch-layer--right { top: 50%; height: 50%; opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  .pair-scene, .pair-word, .pair-wonder__img, .pair-media-reveal, .pair-grain,
  .ch-plane, .ch-beam, .ch-fold, .ch-ash__particle, .ch-dot, .ch-divide--light-beam,
  .ch-gold-slit, .ch-tagline {
    transition: none !important;
    animation: none !important;
  }
  .pair-scene { opacity: 1; transform: none; }
  .pair-word { opacity: 1; transform: none; }
  .ch-tagline { opacity: 1; transform: none; }
  .ch-gold-slit--revealed, .ch-beam--witness, .ch-gold-leaf--mercy { opacity: 1 !important; }
  body.hero-locked { overflow: auto; height: auto; }
  body.hero-locked .pair-scene:not(#scene-collision-hero):not(#scene-barnes-philosophy) { visibility: visible; pointer-events: auto; }
}

/* ── PAIR SIGNATURE TOKENS ── */
body[data-pair="audacity"] { --pair-accent: #c47a00; --pair-atmo: #0d0a08; }
body[data-pair="sagacity"] { --pair-accent: #c47a00; --pair-atmo: #0f1218; }
body[data-pair="perspicacity"] { --pair-accent: #c47a00; --pair-atmo: #1a2838; }
body[data-pair="tenacity"] { --pair-accent: #c47a00; --pair-atmo: #1a1810; }
body[data-pair="ferocity"] { --pair-accent: #c47a00; --pair-atmo: #080810; }
body[data-pair="authenticity"] { --pair-accent: #c47a00; --pair-atmo: #0a0c10; }
body[data-pair="eccentricity"] { --pair-accent: #c47a00; --pair-atmo: #101820; }
body[data-pair="veracity"] { --pair-accent: #c47a00; --pair-atmo: #1a1612; }

body[data-pair] .pair-chrome__index { color: var(--pair-accent); }
body[data-pair] .pair-progress__fill { background: var(--pair-accent); }

body.hero-locked .pair-museum-chrome {
  opacity: 1;
}
.ch-hero--unlocked ~ .pair-scene,
body.pair-museum-scroll .pair-scene:not(#scene-collision-hero) {
  transition-duration: var(--pair-slow);
}

/* ── SIGNATURE MOMENTS ── */
.pair-punch--glow .pair-punch__line {
  text-shadow: 0 0 40px rgba(196, 122, 0, 0.15);
  transition: text-shadow 2.4s var(--pair-ease), color 1.8s var(--pair-ease);
}
.pair-scene--visible.pair-punch--glow .pair-punch__line,
.pair-moment--page-turn.pair-punch .pair-punch__line {
  text-shadow: 0 0 60px rgba(196, 122, 0, 0.28), 0 0 120px rgba(196, 122, 0, 0.08);
}
.pair-moment--page-turn .pair-punch__line {
  transform: perspective(800px) rotateY(-2deg);
  transition: transform 1.6s var(--pair-ease), opacity 1.2s;
}
.pair-moment--turned .pair-punch__line { transform: none; }

.pair-moment--delayed-light .pair-vline { opacity: 0; transition: opacity 2s 1.8s; }
.pair-moment--lit .pair-vline { opacity: 1; }
.pair-moment--lit .pair-essay__lead {
  color: rgba(245, 240, 232, 0.95);
  transition: color 2.2s var(--pair-ease);
}

.pair-journal__folio {
  position: relative;
  transform-origin: left center;
  transition: transform 1.8s var(--pair-ease), box-shadow 1.8s var(--pair-ease);
}
.pair-journal__folio::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(196, 122, 0, 0.35), transparent);
  opacity: 0;
  transition: opacity 1.2s var(--pair-ease);
  pointer-events: none;
}
.pair-moment--folio-open .pair-journal__folio {
  box-shadow: -18px 6px 52px rgba(0, 0, 0, 0.42), -1px 0 0 rgba(196, 122, 0, 0.06);
}
.pair-moment--folio-open .pair-journal__folio::before {
  opacity: 1;
}
.pair-moment--folio-opened .pair-journal__folio {
  transform: perspective(1200px) rotateY(-3deg);
}

.pair-collision--split .pair-essay {
  position: relative;
  overflow: hidden;
}
.pair-collision--split.pair-scene--visible .pair-essay::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--pair-accent), transparent);
  transform: scaleY(0);
  transform-origin: top;
  animation: pair-split-reveal 1.4s var(--pair-ease) 0.6s forwards;
}
@keyframes pair-split-reveal {
  to { transform: scaleY(1); }
}

/* Museum-wall gallery */
.pair-editorial--museum {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding: clamp(0.5rem, 2vw, 1.5rem) 0;
}
.pair-editorial--museum .pair-editorial__item {
  transform: translateY(calc(var(--museum-i, 0) * 1.5rem));
  transition-delay: calc(var(--museum-i, 0) * 0.15s);
}
.pair-editorial--portrait .pair-editorial__item {
  aspect-ratio: 3/4;
  border: 1px solid rgba(196, 122, 0, 0.18);
  box-shadow: inset 0 0 0 4px rgba(5, 6, 9, 0.4);
}
.pair-editorial--portrait .pair-editorial__item:nth-child(odd) {
  transform: translateY(1.5rem);
}
.pair-editorial--field {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.pair-editorial--field .pair-editorial__item {
  aspect-ratio: 16/9;
  border: none;
}
.pair-editorial--field .pair-editorial__item figcaption { opacity: 0; }
.pair-editorial--mirror .pair-editorial__item:nth-child(even) {
  transform: scaleX(-1);
}
.pair-editorial--mirror .pair-editorial__item:nth-child(even) figcaption {
  transform: scaleX(-1);
}
.pair-editorial--weathered .pair-editorial__item {
  filter: sepia(0.12) contrast(1.08);
  border-color: rgba(180, 150, 60, 0.15);
}
.pair-editorial--weathered .pair-editorial__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png);
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.pair-modal-breath .pair-scene {
  transition-duration: calc(var(--pair-slow) + 0.6s);
  transition-delay: var(--modal-delay, 0s);
}

.pair-evidence {
  --mark-progress: 0;
  position: relative;
}
body[data-pair="tenacity"] .pair-evidence::before {
  content: "";
  position: absolute;
  inset: -1rem;
  background-image: radial-gradient(circle, var(--pair-accent) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: calc(var(--mark-progress) * 0.12);
  pointer-events: none;
  transition: opacity 0.3s;
}

/* ── COLLISION HERO SIGNATURES ── */
.ch-gold-slit--revealed { opacity: 0.55; }
.ch-gold-slit:not(.ch-gold-slit--revealed) { opacity: 0; transition: opacity 2.8s var(--pair-ease); }

.ch-edge-breathe {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  --ch-edge-breathe: 0.5;
}
.ch-edge-breathe span {
  position: absolute;
  opacity: calc(0.04 + var(--ch-edge-breathe) * 0.06);
  background: var(--ch-left);
}
.ch-edge-breathe__n { top: 0; left: 5%; right: 5%; height: 8%; }
.ch-edge-breathe__s { bottom: 0; left: 5%; right: 5%; height: 8%; }
.ch-edge-breathe__e { top: 5%; right: 0; bottom: 5%; width: 6%; }
.ch-edge-breathe__w { top: 5%; left: 0; bottom: 5%; width: 6%; }

.ch-mark-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.ch-mark {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--ch-accent);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.8s, transform 0.8s var(--pair-ease);
}
.ch-mark--in { opacity: 0.35; transform: scale(1); }
.ch-mark:nth-child(1) { top: 18%; left: 22%; }
.ch-mark:nth-child(2) { top: 32%; left: 58%; }
.ch-mark:nth-child(3) { top: 48%; left: 35%; }
.ch-mark:nth-child(4) { top: 62%; left: 72%; }
.ch-mark:nth-child(5) { top: 28%; left: 78%; }
.ch-mark:nth-child(6) { top: 55%; left: 15%; }
.ch-mark:nth-child(7) { top: 72%; left: 48%; }
.ch-mark:nth-child(8) { top: 38%; left: 42%; }
.ch-mark:nth-child(9) { top: 68%; left: 28%; }
.ch-mark:nth-child(10) { top: 22%; left: 65%; }
.ch-mark:nth-child(11) { top: 78%; left: 62%; }
.ch-mark:nth-child(12) { top: 45%; left: 88%; }

.ch-fracture-shadow {
  position: absolute;
  inset: -5%;
  z-index: 1;
  background: linear-gradient(105deg, transparent 40%, rgba(0,0,0,0.45) 50%, transparent 60%);
  opacity: 0.15;
  pointer-events: none;
  will-change: transform, opacity;
}
.ch-beam { opacity: 0; transition: opacity 2.4s var(--pair-ease); }
.ch-beam--witness { opacity: 1; }

.ch-film-strip {
  position: absolute;
  bottom: 8%;
  left: 5%;
  right: 5%;
  z-index: 4;
  display: flex;
  gap: 3px;
  opacity: 0.18;
  pointer-events: none;
}
.ch-film-strip__frame {
  flex: 1;
  height: 12px;
  border: 1px solid rgba(196, 122, 0, 0.2);
  animation: ch-film-pulse 3s ease-in-out infinite;
  animation-delay: calc(var(--ch-film-phase, 0) * 0.1s + var(--i, 0) * 0.2s);
}
.ch-film-strip__frame:nth-child(odd) { animation-delay: 0.4s; }
@keyframes ch-film-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.ch-mirror {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, transparent 48%, rgba(245,240,232,0.04) 50%, transparent 52%);
  pointer-events: none;
  opacity: 0.08;
  transition: opacity 1.2s;
}

.ch-gold-leaf { opacity: 0; transition: opacity 3.2s var(--pair-ease); }
.ch-gold-leaf--mercy { opacity: 1; }

@media (max-width: 809px) {
  .pair-editorial--museum { grid-template-columns: 1fr 1fr; }
  .pair-editorial--field { grid-template-columns: 1fr; }
  .pair-interstitial img { height: 55vh; height: 55dvh; }
}

/* ── THE THRESHOLD — lit interior (7 pairs; FEROCITY stays dark) ── */
body[data-pair="audacity"] { --pair-interior-bg: #f0ebe3; --pair-interior-text: #1a1612; --pair-interior-muted: rgba(26, 22, 18, 0.62); }
body[data-pair="sagacity"] { --pair-interior-bg: #f5f2ec; --pair-interior-text: #1a1612; --pair-interior-muted: rgba(26, 22, 18, 0.62); }
body[data-pair="perspicacity"] { --pair-interior-bg: #e8ecef; --pair-interior-text: #1a1612; --pair-interior-muted: rgba(26, 22, 18, 0.62); }
body[data-pair="tenacity"] { --pair-interior-bg: #f2ebe0; --pair-interior-text: #1a1612; --pair-interior-muted: rgba(26, 22, 18, 0.62); }
body[data-pair="authenticity"] { --pair-interior-bg: #eceae6; --pair-interior-text: #1a1612; --pair-interior-muted: rgba(26, 22, 18, 0.62); }
body[data-pair="eccentricity"] { --pair-interior-bg: #f8f8f6; --pair-interior-text: #1a1612; --pair-interior-muted: rgba(26, 22, 18, 0.62); }
body[data-pair="veracity"] { --pair-interior-bg: #e5e3df; --pair-interior-text: #1a1612; --pair-interior-muted: rgba(26, 22, 18, 0.62); }

body.pair-threshold {
  background: var(--pair-interior-bg);
  color: var(--pair-interior-text);
}
body.pair-threshold .pair-grain.pair-grain--css { opacity: 0.022; }

body.pair-threshold.pair-museum-scroll .pair-museum-chrome {
  mix-blend-mode: normal;
  color: var(--pair-interior-text);
}
body.pair-threshold .pair-chrome__mark,
body.pair-threshold .pair-chrome__index { opacity: 0.7; }

body.pair-threshold #scene-collision-hero {
  background: #050609;
  color: #f5f0e8;
}

body.pair-threshold .pair-scene__inner,
body.pair-threshold .pair-punch,
body.pair-threshold .pair-dialogue-teaser,
body.pair-threshold .pair-journal,
body.pair-threshold .pair-progression-cta,
body.pair-threshold #scene-editorial,
body.pair-threshold .pair-scene--rail,
body.pair-threshold .pair-progression,
body.pair-threshold .pair-dialogue-hero {
  background: var(--pair-interior-bg);
  color: var(--pair-interior-text);
}

body.pair-threshold .pair-kicker { color: var(--pair-amber); }
body.pair-threshold .pair-body,
body.pair-threshold .pair-essay__lead { color: var(--pair-interior-muted); }
body.pair-threshold .pair-display,
body.pair-threshold .pair-punch__line,
body.pair-threshold .pair-journal__pull { color: var(--pair-interior-text); }
body.pair-threshold .pair-dialogue-teaser__excerpt,
body.pair-threshold .pair-conversation p { color: var(--pair-interior-muted); }
body.pair-threshold .pair-conversation p.pair-conversation__beat {
  color: var(--pair-interior-text);
  border-left-color: rgba(196, 122, 0, 0.35);
}

body.pair-threshold .pair-scene__inner {
  min-height: auto;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.5rem, 5vw, 4rem);
}
body.pair-threshold .pair-punch {
  min-height: auto;
  padding: clamp(2.5rem, 6vh, 4rem) clamp(1.5rem, 5vw, 4rem);
}
body.pair-threshold .pair-journal { min-height: auto; }
body.pair-threshold .pair-threshold--short .pair-body:nth-child(n+4) { display: none; }

body.pair-threshold .pair-interstitial { background: var(--pair-interior-bg); }

body.pair-threshold .pair-evidence__item {
  background: rgba(26, 22, 18, 0.04);
  border-color: rgba(26, 22, 18, 0.08);
}
body.pair-threshold .pair-slot {
  background: rgba(26, 22, 18, 0.03);
  border-color: rgba(26, 22, 18, 0.1);
}
body.pair-threshold .pair-evidence__label span,
body.pair-threshold .pair-slot__label span { color: var(--pair-interior-text); }
body.pair-threshold .pair-evidence__label p { color: var(--pair-interior-muted); }

body.pair-threshold .pair-editorial--museum .pair-editorial__item figcaption {
  color: var(--pair-interior-muted);
}

body.pair-threshold .pair-footer {
  background: var(--pair-interior-bg);
  color: var(--pair-interior-muted);
  border-top: 1px solid rgba(26, 22, 18, 0.08);
}

body.pair-threshold .pair-wayfind__link {
  border-color: rgba(26, 22, 18, 0.12);
  color: var(--pair-interior-text);
}
body.pair-threshold .pair-wayfind__dest { color: var(--pair-interior-text); }
body.pair-threshold .pair-wayfind__link:hover .pair-wayfind__dest { color: var(--pair-amber); }

body.pair-threshold #scene-wonder,
body.pair-threshold #scene-film {
  background: var(--pair-interior-bg);
}

/* Horizontal CIE image rail — early evidence after Reflection */
.pair-scene--rail {
  padding: clamp(2rem, 6vh, 3.5rem) 0 clamp(2.5rem, 7vh, 4rem);
  overflow: hidden;
}
.pair-rail__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1.25rem;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.pair-rail__hint {
  font-family: var(--pair-body-font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pair-muted);
  margin-bottom: 1rem;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
body.pair-threshold .pair-rail__hint { color: var(--pair-interior-muted); }
.pair-rail {
  display: flex;
  gap: var(--pair-rail-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 clamp(1.5rem, 5vw, 4rem) 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--pair-amber) transparent;
}
.pair-rail::-webkit-scrollbar { height: 4px; }
.pair-rail::-webkit-scrollbar-thumb {
  background: var(--pair-amber);
  border-radius: 2px;
}
.pair-rail__item {
  flex: 0 0 clamp(220px, 38vw, 320px);
  scroll-snap-align: start;
  margin: 0;
}
.pair-rail__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: rgba(26, 22, 18, 0.06);
}
.pair-rail__item figcaption {
  margin-top: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pair-muted);
  line-height: 1.4;
}
body.pair-threshold .pair-rail__item figcaption { color: var(--pair-interior-muted); }

/* ── SAGACITY museum editorial overhaul — monument, blaze, statement, abundance ── */

.pair-collision-hero-wrap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}

.pair-monument-portrait {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  height: clamp(28vh, 38vw, 42vh);
  overflow: hidden;
  pointer-events: none;
}
.pair-monument-portrait--compact {
  position: relative;
  height: clamp(22vh, 30vw, 32vh);
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 2px;
}
.pair-monument-portrait__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.02);
}
.pair-monument-portrait__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 9, 0.15) 0%,
    rgba(5, 6, 9, 0.55) 65%,
    rgba(5, 6, 9, 0.85) 100%
  );
}
.pair-monument-portrait--compact .pair-monument-portrait__veil {
  background: linear-gradient(
    180deg,
    rgba(245, 242, 236, 0) 0%,
    rgba(245, 242, 236, 0.35) 70%,
    rgba(245, 242, 236, 0.92) 100%
  );
}
body.pair-threshold .pair-monument-portrait--compact .pair-monument-portrait__veil {
  background: linear-gradient(
    180deg,
    rgba(245, 242, 236, 0) 0%,
    rgba(245, 242, 236, 0.4) 65%,
    var(--pair-interior-bg) 100%
  );
}

.pair-scene--blaze {
  min-height: auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
  background: var(--pair-bg);
}
body.pair-threshold .pair-scene--blaze {
  background: var(--pair-interior-bg);
}
.pair-blaze-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1.2vw, 0.85rem);
  max-width: 1680px;
  margin: 0 auto;
}
.pair-blaze-window {
  position: relative;
  min-height: 60vh;
  min-height: 60dvh;
  overflow: hidden;
  margin: 0;
  background: #0a0c10;
}
.pair-blaze-window img {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  min-height: 60dvh;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 2.4s var(--pair-ease-soft);
}
.pair-blaze-window:hover img {
  transform: scale(1.03);
}
.pair-blaze-grid .pair-blaze-window:nth-child(1) { grid-column: span 2; }
.pair-blaze-grid .pair-blaze-window:nth-child(4) { grid-column: span 2; }
.pair-blaze-grid .pair-blaze-window:nth-child(5) { grid-column: span 1; }

.pair-statement-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1480px;
  margin: 0 auto;
}
.pair-statement-panel {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem);
}
.pair-statement-panel__text {
  font-family: var(--pair-display-font);
  font-weight: var(--pair-display-weight);
  font-size: clamp(1.5rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: var(--pair-display-tracking);
  margin: 0;
}
.pair-statement--left {
  text-align: left;
  padding-right: clamp(1rem, 3vw, 2rem);
}
.pair-statement--right {
  text-align: right;
  padding-left: clamp(1rem, 3vw, 2rem);
  border-left: 1px solid rgba(196, 122, 0, 0.18);
}
body.pair-threshold .pair-statement--right {
  border-left-color: rgba(196, 122, 0, 0.22);
}

.pair-collection-abundance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

/* Audacity Fal 50 — Barnes garment-class sections */
.audacity-garment-section {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.audacity-garment-section__header {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding-inline: clamp(1rem, 3vw, 2rem);
}
.audacity-garment-section__title {
  font-family: var(--pair-font-display, Inter, system-ui, sans-serif);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.audacity-garment-section__subtitle {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.62;
}
.pair-collection-abundance--category {
  padding-inline: clamp(0.5rem, 2vw, 1.5rem);
}
.fi-image-ticker__caption {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.7;
}
.pair-collection-abundance__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin: 0;
  background: rgba(0, 0, 0, 0.04);
}
.pair-collection-abundance__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 1.8s var(--pair-ease-soft);
}
.pair-collection-abundance__item:hover img {
  transform: scale(1.04);
}
.pair-collection-abundance__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  background: linear-gradient(transparent, rgba(5, 6, 9, 0.72));
  opacity: 0;
  transition: opacity 0.6s var(--pair-ease-soft);
}
.pair-collection-abundance__item:hover figcaption {
  opacity: 1;
}
body.pair-threshold .pair-collection-abundance__item figcaption {
  color: rgba(26, 22, 18, 0.7);
  background: linear-gradient(transparent, rgba(245, 242, 236, 0.88));
}
body.pair-threshold #scene-collection-abundance {
  background: var(--pair-interior-bg);
}

@media (max-width: 1024px) {
  .pair-blaze-grid { grid-template-columns: repeat(2, 1fr); }
  .pair-blaze-grid .pair-blaze-window:nth-child(1),
  .pair-blaze-grid .pair-blaze-window:nth-child(4) { grid-column: span 2; }
  .pair-collection-abundance { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 809px) {
  .pair-monument-portrait { height: clamp(24vh, 42vw, 34vh); }
  .pair-blaze-grid { grid-template-columns: 1fr; }
  .pair-blaze-grid .pair-blaze-window:nth-child(n) { grid-column: span 1; }
  .pair-blaze-window { min-height: 50vh; min-height: 50dvh; }
  .pair-blaze-window img { min-height: 50vh; min-height: 50dvh; }
  .pair-statement-row { grid-template-columns: 1fr; }
  .pair-statement--right {
    text-align: left;
    border-left: none;
    border-top: 1px solid rgba(196, 122, 0, 0.18);
    padding-top: clamp(2rem, 5vw, 3rem);
  }
  .pair-collection-abundance { grid-template-columns: repeat(2, 1fr); }
}
