:root {
  --ink: #050505;
  --paper: #f4f1e9;
  --white: #fff;
  --muted: rgba(255,255,255,.66);
  --line: rgba(255,255,255,.17);
  --accent: #ff3b1f;
  --accent-rgb: 255,59,31;
  --max: 1440px;
  --gutter: clamp(18px, 4.8vw, 76px);
  --header: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.quest-s1 { --accent: #e8f5ff; --accent-rgb: 182,225,255; }
body.effigy { --accent: #e54a2d; --accent-rgb: 229,74,45; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: #050505; background: var(--accent); }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  translate: 0 -150%;
  padding: 10px 14px;
  color: #000;
  background: #fff;
}
.skip-link:focus { translate: 0; }

.production-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--header);
  background: linear-gradient(180deg, rgba(0,0,0,.74), transparent);
  transition: background .3s ease;
}
.production-header.scrolled,
.production-header.open {
  background: rgba(5,5,5,.9);
  backdrop-filter: blur(18px);
}
.header-bar {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  justify-self: start;
  overflow: hidden;
}
.brand img { width: 100%; height: 100%; object-fit: cover; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}
.primary-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255,255,255,.72);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--accent);
  scale: 0 1;
  transform-origin: right;
  transition: scale .25s ease;
}
.primary-nav a:hover { color: #fff; }
.primary-nav a:hover::after { scale: 1 1; transform-origin: left; }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.back-studio,
.share-button,
.menu-button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.035) 46%, rgba(4,4,4,.2)),
    rgba(8,8,8,.38);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    inset 0 -1px 0 rgba(0,0,0,.3);
  backdrop-filter: blur(18px) saturate(135%);
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}
.back-studio {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 5px 15px 5px 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.back-studio::before,
.share-button::before {
  content: "";
  position: absolute;
  inset: 1px 18% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  opacity: .72;
  pointer-events: none;
}
.action-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  border: 1px solid rgba(var(--accent-rgb),.48);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(var(--accent-rgb),.09);
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.action-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.share-button,
.menu-button {
  position: relative;
  width: 44px;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.menu-button svg,
.modal-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.share-button .action-icon {
  width: 100%;
  height: 100%;
  border: 0;
  color: rgba(255,255,255,.88);
  background: transparent;
}
.back-studio:hover,
.share-button:hover,
.back-studio:focus-visible,
.share-button:focus-visible {
  border-color: rgba(var(--accent-rgb),.7);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb),.22), rgba(255,255,255,.055) 52%, rgba(4,4,4,.2)),
    rgba(8,8,8,.48);
  transform: translateY(-1px);
  outline: none;
}
.back-studio:hover .action-icon,
.back-studio:focus-visible .action-icon {
  border-color: var(--accent);
  color: #050505;
  background: var(--accent);
  transform: rotate(-6deg);
}
.share-button:hover .action-icon,
.share-button:focus-visible .action-icon {
  color: var(--accent);
  transform: rotate(-8deg) scale(1.04);
}
.menu-button { display: none; }

.production-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
}
.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media { z-index: -2; background: #070707; }
.hero-media img {
  object-fit: cover;
  object-position: center;
  scale: 1.01;
  animation: hero-arrive 1.4s cubic-bezier(.16,1,.3,1) both;
}
.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(3,3,3,.95) 0%, rgba(3,3,3,.76) 33%, rgba(3,3,3,.15) 72%, rgba(3,3,3,.36) 100%),
    linear-gradient(0deg, #050505 0%, transparent 36%, rgba(0,0,0,.28) 100%);
}
.effigy .hero-media::after {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.026) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, rgba(2,2,3,.96), rgba(2,2,3,.74) 40%, rgba(2,2,3,.12) 78%),
    linear-gradient(0deg, #050505, transparent 42%);
}
.hero-content {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin: 0 auto;
  padding: calc(var(--header) + 90px) 0 clamp(100px, 12vh, 150px);
}
.hero-copy { max-width: 780px; }
.eyebrow,
.section-index,
.status {
  color: var(--accent);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.production-hero h1 {
  max-width: 1000px;
  margin: 18px 0 16px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: .83;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.quest-s1 .production-hero h1 {
  color: #f3fbff;
  text-shadow: 0 0 20px rgba(182,225,255,.22);
}
.effigy .production-hero h1 {
  text-shadow: 5px 0 rgba(0,220,255,.14), -5px 0 rgba(255,25,53,.18), 0 0 22px rgba(255,255,255,.18);
}
.hero-deck {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}
.hero-meta {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-meta span {
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button-primary {
  border-color: var(--accent);
  color: #050505;
  background: var(--accent);
}
.hero-actions .button:not(.button-primary) {
  position: relative;
  overflow: hidden;
  border-color: rgba(255,255,255,.24);
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.035) 48%, rgba(4,4,4,.18)),
    rgba(8,8,8,.38);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(0,0,0,.3);
  backdrop-filter: blur(18px) saturate(135%);
}
.hero-actions .button:not(.button-primary)::before {
  content: "";
  position: absolute;
  inset: 1px 18% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  opacity: .72;
}
.button:hover { transform: translateY(-2px); border-color: #fff; background: #fff; color: #050505; }
.hero-actions .button:not(.button-primary):hover,
.hero-actions .button:not(.button-primary):focus-visible {
  border-color: rgba(var(--accent-rgb),.72);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb),.2), rgba(255,255,255,.06) 52%, rgba(4,4,4,.2)),
    rgba(8,8,8,.48);
  outline: none;
}
.button svg { width: 16px; height: 16px; fill: currentColor; }
.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 42px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.25);
}
.scroll-cue::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  rotate: 45deg;
  translate: 0 -2px;
}

.production-nav {
  position: sticky;
  z-index: 50;
  top: 12px;
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  min-height: 66px;
  margin: 14px auto 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.025) 48%, rgba(var(--accent-rgb),.06)),
    rgba(5,5,5,.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 18px 55px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
}
.production-nav::before {
  content: "";
  position: absolute;
  inset: 1px 15% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  pointer-events: none;
}
.production-nav-inner {
  width: 100%;
  min-height: 50px;
  margin: auto;
  padding-left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.production-nav strong {
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.production-nav-links { display: flex; align-items: center; gap: 6px; }
.production-nav-links a {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 clamp(14px, 1.8vw, 24px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  background: transparent;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}
.production-nav-links a:hover,
.production-nav-links a:focus-visible {
  border-color: rgba(255,255,255,.16);
  color: #fff;
  background: rgba(255,255,255,.07);
  outline: none;
  transform: translateY(-1px);
}
.production-nav-links a.active {
  border-color: rgba(var(--accent-rgb),.52);
  color: #fff;
  background: linear-gradient(145deg, rgba(var(--accent-rgb),.22), rgba(255,255,255,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13);
}

main {
  background:
    radial-gradient(circle at 90% 16%, rgba(var(--accent-rgb),.1), transparent 25rem),
    #050505;
}
.content-section {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin: auto;
  padding: clamp(92px, 12vw, 180px) 0;
  scroll-margin-top: 60px;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 520px);
  gap: 50px;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 86px);
}
.section-head h2,
.story-title {
  margin: 12px 0 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: .9;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}
.story-copy p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.8;
}
.story-copy p:first-child { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2.3rem); line-height: 1.45; }
.story-aside {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 3vw, 42px);
  background: linear-gradient(145deg, rgba(var(--accent-rgb),.12), rgba(255,255,255,.025));
}
.story-aside blockquote {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.story-aside span {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 24px);
}
.gallery-card {
  position: relative;
  min-height: 320px;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: clamp(20px, 2.4vw, 34px);
  background: #111;
}
.gallery-card:first-child { grid-column: span 7; min-height: 540px; }
.gallery-card:nth-child(2) { grid-column: span 5; min-height: 540px; }
.gallery-card:nth-child(3) { grid-column: span 12; min-height: 460px; }
.gallery-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: scale .8s cubic-bezier(.16,1,.3,1);
}
.gallery-card:hover img { scale: 1.035; }
.gallery-card figcaption,
.gallery-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: rgba(255,255,255,.72);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px #000;
}
.gallery-card-link {
  isolation: isolate;
  cursor: pointer;
  transition: border-color .35s ease, transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
}
.gallery-card-link::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.72));
  pointer-events: none;
}
.gallery-card-link::after {
  content: "↗";
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(5,5,5,.38);
  backdrop-filter: blur(14px);
  transition: color .3s ease, background .3s ease, rotate .3s ease;
}
.gallery-card-link:hover,
.gallery-card-link:focus-visible {
  border-color: rgba(var(--accent-rgb),.72);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  transform: translateY(-4px);
  outline: none;
}
.gallery-card-link:hover::after,
.gallery-card-link:focus-visible::after {
  color: #050505;
  background: var(--accent);
  rotate: 8deg;
}
.effigy .gallery-card:nth-child(1) img { object-position: 70% center; }
.effigy .gallery-card:nth-child(2) img { object-position: 42% center; scale: 1.25; }
.effigy .gallery-card:nth-child(3) img { object-position: center 60%; scale: 1.08; }

.details-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: clamp(24px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  background:
    radial-gradient(circle at 95% 10%, rgba(var(--accent-rgb),.18), transparent 30rem),
    rgba(255,255,255,.025);
}
.details-title { padding: clamp(34px, 6vw, 82px); }
.details-title h2 {
  margin: 12px 0 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .9;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.detail-list {
  margin: 0;
  padding: clamp(28px, 5vw, 74px);
  border-left: 1px solid var(--line);
}
.detail-row {
  min-height: 68px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 20px;
}
.detail-row dt {
  color: rgba(255,255,255,.48);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.detail-row dd { margin: 0; font-weight: 700; }

.production-switcher {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin: 0 auto;
  padding: 0 0 clamp(100px, 12vw, 170px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.switch-card {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.switch-card:hover,
.switch-card.active {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb),.6);
  background: linear-gradient(145deg, rgba(var(--accent-rgb),.16), rgba(255,255,255,.02));
}
.switch-card small {
  color: var(--muted);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.switch-card strong {
  margin-top: 8px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  text-transform: uppercase;
}

.production-footer {
  border-top: 1px solid var(--line);
  padding: 34px var(--gutter);
}
.footer-inner {
  width: min(100%, var(--max));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner strong { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-inner span { color: var(--muted); font-size: .72rem; }

.trailer-modal {
  width: min(1100px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #050505;
  box-shadow: 0 30px 100px rgba(0,0,0,.8);
}
.trailer-modal::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(14px); }
.modal-bar {
  min-height: 62px;
  padding: 0 14px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.modal-bar strong { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.modal-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.video-frame { aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

[data-reveal] {
  opacity: 0;
  translate: 0 28px;
  transition: opacity .75s ease, translate .75s cubic-bezier(.16,1,.3,1);
}
[data-reveal].revealed { opacity: 1; translate: 0; }

@keyframes hero-arrive {
  from { opacity: 0; scale: 1.08; filter: blur(8px); }
  to { opacity: 1; scale: 1.01; filter: none; }
}

@media (max-width: 980px) {
  .back-studio { display: none; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .story-grid { grid-template-columns: 1fr; }
  .details-panel { grid-template-columns: 1fr; }
  .detail-list { border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 760px) {
  :root { --header: 64px; --gutter: 18px; }
  .header-bar { grid-template-columns: 48px 1fr 48px; }
  .brand { width: 52px; height: 52px; justify-self: center; grid-column: 2; }
  .primary-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    gap: 0;
    padding: 18px;
    visibility: hidden;
    opacity: 0;
    background: rgba(5,5,5,.98);
    border-top: 1px solid var(--line);
    transition: opacity .25s ease, visibility .25s ease;
  }
  .production-header.open .primary-nav { visibility: visible; opacity: 1; }
  .primary-nav a { min-height: 54px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.08); }
  .header-actions { grid-column: 1 / -1; grid-row: 1; width: 100%; justify-content: space-between; pointer-events: none; }
  .header-actions > * { pointer-events: auto; }
  .share-button { order: 2; }
  .menu-button { display: grid; order: 1; }
  .production-hero { min-height: 780px; }
  .hero-media img { object-position: 62% center; }
  .quest-s1 .hero-media img { object-position: 64% center; }
  .effigy .hero-media img { object-position: 68% center; }
  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(3,3,3,.88), rgba(3,3,3,.24)),
      linear-gradient(0deg, #050505 0%, rgba(5,5,5,.82) 42%, transparent 75%);
  }
  .hero-content { padding: 150px 0 96px; }
  .production-hero h1 { font-size: clamp(3.5rem, 19vw, 6rem); }
  .hero-deck { font-size: 1rem; }
  .scroll-cue { display: none; }
  .production-nav {
    top: 8px;
    width: calc(100% - 24px);
    margin-top: 10px;
    border-radius: 22px;
    padding: 5px;
  }
  .production-nav strong { display: none; }
  .production-nav-inner { justify-content: center; overflow-x: auto; padding-left: 0; }
  .production-nav-links { width: max-content; }
  .production-nav-links a { min-height: 38px; padding: 0 13px; font-size: .61rem; }
  .content-section { padding: 90px 0; }
  .section-head h2,
  .story-title { font-size: clamp(3rem, 15vw, 5rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card,
  .gallery-card:first-child,
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3) {
    min-height: 360px;
    grid-column: auto;
  }
  .detail-row { grid-template-columns: 110px 1fr; }
  .production-switcher { grid-template-columns: 1fr; }
  .switch-card { min-height: 130px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; translate: 0; }
}
