@font-face {
  font-family: "Satoshi";
  src: url("./assets/Satoshi-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./assets/Satoshi-VariableItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --paper: #f2eadc;
  --paper-soft: #fbf6ec;
  --paper-deep: #ddd1bf;
  --ink: #17120f;
  --ink-soft: #2b211c;
  --red: #c9202f;
  --red-bright: #e62b34;
  --red-deep: #7b1019;
  --rose: #e4aca7;
  --line: rgba(23, 18, 15, 0.18);
  --line-light: rgba(242, 234, 220, 0.23);
  --sans: "Satoshi", Arial, sans-serif;
  --serif: "Bodoni 72", "Bodoni MT", "Didot", "Iowan Old Style", "Times New Roman", serif;
  --max: 1600px;
  --gutter: clamp(1rem, 4vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5.2rem;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--red);
  color: var(--paper-soft);
}

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.8rem;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.section-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.kicker span {
  min-width: 1.7rem;
  padding: 0.27rem 0.36rem;
  border: 1px solid currentColor;
  text-align: center;
}

.kicker-light {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Opening cue --------------------------------------------------------- */
.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.7rem;
  overflow: hidden;
  background: var(--red);
  color: var(--paper-soft);
  transition: visibility 0s linear 900ms;
}

.opening::before,
.opening::after {
  content: "";
  width: 50%;
  position: absolute;
  inset-block: 0;
  z-index: -1;
  background: var(--red-deep);
  transition: transform 900ms var(--ease);
}

.opening::before { left: 0; transform-origin: left; }
.opening::after { right: 0; transform-origin: right; }

.opening.is-leaving {
  visibility: hidden;
}

.opening.is-leaving::before { transform: translateX(-102%); }
.opening.is-leaving::after { transform: translateX(102%); }

.opening.is-leaving > * {
  opacity: 0;
  transition: opacity 160ms ease;
}

.opening-mark {
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  border: 1px solid var(--paper-soft);
}

.opening-mark::after {
  content: "";
  position: absolute;
  right: -0.65rem;
  bottom: -0.65rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--paper-soft);
  box-shadow: 0 0 0 0.35rem var(--red);
}

.opening-mark span {
  width: 0.43rem;
  height: 0.43rem;
  position: absolute;
  left: 0.35rem;
  border: 1px solid var(--paper-soft);
}

.opening-mark span:nth-child(1) { top: 0.35rem; }
.opening-mark span:nth-child(2) { top: 1.03rem; }
.opening-mark span:nth-child(3) { top: 1.71rem; }
.opening-mark span:nth-child(4) { top: 2.39rem; }

.opening p,
.opening small {
  margin: 0;
  font-size: 0.63rem;
  font-weight: 760;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.opening strong {
  margin-block: -0.4rem;
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.95;
}

.opening small {
  opacity: 0.58;
}

.no-js .opening {
  display: none;
}

.page-progress {
  height: 3px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 1001;
  background: transparent;
}

.page-progress i {
  width: 0;
  height: 100%;
  display: block;
  background: var(--red-bright);
  transform-origin: left;
}

.camera-flash {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.camera-flash.is-flashing {
  visibility: visible;
  animation: cameraFlash 420ms ease-out;
}

@keyframes cameraFlash {
  0% { opacity: 0; }
  15% { opacity: 0.86; }
  100% { opacity: 0; }
}

/* Cursor -------------------------------------------------------------- */
.cursor {
  width: 1rem;
  height: 1rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 220ms var(--ease), height 220ms var(--ease), background 220ms ease, opacity 180ms ease;
  mix-blend-mode: difference;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active {
  width: 4.4rem;
  height: 4.4rem;
  border-color: var(--paper-soft);
  background: var(--paper-soft);
}

.cursor span {
  color: var(--ink);
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Header -------------------------------------------------------------- */
.site-head {
  height: var(--header-h);
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) auto minmax(11rem, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding-inline: var(--gutter);
  border-bottom: 1px solid transparent;
  color: var(--ink);
  transition: height 420ms var(--ease), background 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
}

.site-head.is-scrolled {
  height: 4.25rem;
  border-color: var(--line);
  background: rgba(242, 234, 220, 0.94);
  box-shadow: 0 0.7rem 2.4rem rgba(23, 18, 15, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  width: clamp(10.5rem, 16vw, 14.5rem);
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2.2vw, 2.4rem);
}

.desktop-nav a {
  position: relative;
  padding-block: 0.5rem;
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.head-brief {
  justify-self: end;
  min-width: 11.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.72rem 0.85rem 0.72rem 1.05rem;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--paper-soft);
  font-size: 0.68rem;
  font-weight: 730;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 260ms ease, background 260ms ease;
}

.head-brief b {
  font-size: 1rem;
  font-weight: 500;
}

.head-brief:hover {
  background: var(--paper-soft);
  color: var(--red);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero ---------------------------------------------------------------- */
.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + 1.8rem) var(--gutter) 1.4rem;
  overflow: hidden;
  background: var(--paper);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(23, 18, 15, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 18, 15, 0.038) 1px, transparent 1px);
  background-size: clamp(4rem, 7vw, 7.5rem) clamp(4rem, 7vw, 7.5rem);
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 98%);
}

.hero-topline {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  color: rgba(23, 18, 15, 0.56);
  font-size: 0.57rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-topline p {
  margin: 0;
}

.hero-topline p:last-child {
  text-align: right;
}

.hero-topline span {
  color: var(--red);
}

.hero-heading {
  width: min(100%, var(--max));
  margin: clamp(1.8rem, 3vw, 3.2rem) auto clamp(1.2rem, 2vw, 2.2rem);
  text-align: center;
}

.hero-eyebrow {
  margin: 0 0 clamp(1rem, 2vw, 1.8rem);
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 9.5vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.72;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--red);
  font-weight: 400;
}

.hero-deck {
  max-width: 39rem;
  margin: clamp(1.6rem, 2.5vw, 2.6rem) auto 0;
  color: rgba(23, 18, 15, 0.68);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 1.35;
}

.hero-film {
  width: min(100%, var(--max));
  height: clamp(23rem, 34vw, 38rem);
  position: relative;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(9rem, 0.8fr) minmax(22rem, 2.5fr) minmax(9rem, 0.8fr);
  align-items: end;
  gap: clamp(0.65rem, 1.25vw, 1.25rem);
  padding-bottom: clamp(2.7rem, 4vw, 4rem);
}

.hero-shot {
  min-width: 0;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 1.8rem 4rem rgba(43, 23, 16, 0.14);
  will-change: transform;
}

.hero-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.hero-shot:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.hero-shot-left {
  height: 66%;
  border-radius: 9rem 9rem 1.2rem 1.2rem;
}

.hero-shot-main {
  height: 100%;
  border-radius: 1.5rem;
}

.hero-shot-right {
  height: 72%;
  border-radius: 1.2rem 1.2rem 9rem 9rem;
}

.hero-shot-left img { object-position: 51% 42%; }
.hero-shot-main img { object-position: center 42%; }
.hero-shot-right img { object-position: center 35%; }

.hero-shot figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 3rem 1rem 0.85rem;
  background: linear-gradient(to bottom, transparent, rgba(18, 10, 7, 0.76));
  color: var(--paper-soft);
}

.hero-shot figcaption span,
.hero-shot figcaption b {
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-shot figcaption span {
  opacity: 0.62;
}

.hero-shot figcaption b {
  font-weight: 700;
  text-align: right;
}

.hero-shot-left figcaption,
.hero-shot-right figcaption {
  display: grid;
}

.hero-shot-left figcaption b,
.hero-shot-right figcaption b {
  text-align: left;
}

.hero-call {
  width: clamp(7.2rem, 9.2vw, 9.6rem);
  aspect-ratio: 1;
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper-soft);
  cursor: pointer;
  transform: translateX(50%);
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.hero-call::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border: 1px solid rgba(242, 234, 220, 0.42);
  border-radius: inherit;
}

.hero-call span {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 0.95;
  text-align: center;
}

.hero-call b {
  font-size: 1rem;
}

.hero-call:hover {
  background: var(--ink);
  box-shadow: 0 0 0 0.7rem rgba(201, 32, 47, 0.16);
}

.hero-foot {
  width: min(100%, var(--max));
  margin: clamp(2rem, 3vw, 3rem) auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  color: rgba(23, 18, 15, 0.52);
  font-size: 0.57rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-foot p {
  margin: 0;
}

.hero-foot p:last-child {
  text-align: right;
}

.hero-foot a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}

.hero-foot i {
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  transition: background 220ms ease, color 220ms ease;
}

.hero-foot a:hover i {
  background: var(--red);
  color: var(--paper-soft);
}

/* Event ribbon -------------------------------------------------------- */
.event-ribbon {
  overflow: hidden;
  background: var(--red);
  color: var(--paper-soft);
  transform: rotate(-0.7deg) scale(1.015);
}

.event-ribbon-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-block: 0.85rem;
  animation: ribbonMove 34s linear infinite;
}

.event-ribbon span {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.65vw, 1.7rem);
  font-style: italic;
  white-space: nowrap;
}

.event-ribbon i {
  color: var(--rose);
  font-size: 0.8rem;
  font-style: normal;
}

@keyframes ribbonMove {
  to { transform: translateX(-50%); }
}

/* Shared section head ------------------------------------------------- */
.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(16rem, 0.65fr);
  align-items: end;
  gap: 4rem;
}

.section-intro h2,
.moments-head h2,
.worlds-head h2,
.builder-head h2,
.running-head h2,
.archive-title h2,
.footer-top h2 {
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7.3vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.section-intro h2 em,
.moments-head h2 em,
.worlds-head h2 em,
.builder-head h2 em,
.running-head h2 em,
.archive-title h2 em,
.footer-top h2 em {
  color: var(--red);
  font-weight: 400;
}

.section-intro > p {
  max-width: 24rem;
  margin: 0 0 0.5rem;
  color: rgba(23, 18, 15, 0.62);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.4;
}

/* Formats ------------------------------------------------------------- */
.formats {
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.format-theatre {
  min-height: 46rem;
  margin-top: clamp(3.5rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: minmax(19rem, 0.73fr) minmax(0, 1.55fr);
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.format-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-right: 1px solid var(--line-light);
}

.format-tab {
  min-width: 0;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 0.45rem 1rem;
  padding: 1.5rem clamp(1rem, 2vw, 2rem);
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: rgba(242, 234, 220, 0.43);
  text-align: left;
  cursor: pointer;
  transition: color 320ms ease, background 320ms ease;
}

.format-tab:last-child {
  border-bottom: 0;
}

.format-tab > span {
  grid-row: 1 / 3;
  padding-top: 0.22rem;
  color: var(--red-bright);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.format-tab strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.9rem);
  font-weight: 400;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.format-tab small {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.format-tab > b {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 1.2rem;
  font-weight: 400;
  transform: translate(-0.5rem, 0.5rem);
  opacity: 0;
  transition: opacity 320ms ease, transform 320ms var(--ease);
}

.format-tab:hover,
.format-tab.is-active {
  background: var(--red);
  color: var(--paper-soft);
}

.format-tab.is-active > span,
.format-tab:hover > span {
  color: var(--paper-soft);
}

.format-tab:hover > b,
.format-tab.is-active > b {
  opacity: 1;
  transform: none;
}

.format-stage {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.75fr);
  background: var(--paper-soft);
}

.format-stage.is-changing .format-media img,
.format-stage.is-changing .format-copy > * {
  opacity: 0;
  transform: translateY(1rem);
}

.format-media {
  min-height: 46rem;
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}

.format-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 8, 5, 0.78), transparent 46%);
  pointer-events: none;
}

.format-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 620ms var(--ease);
}

.format-stamp {
  width: 7rem;
  height: 7rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1;
  text-align: center;
  transform: rotate(7deg);
}

.format-image-note {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0;
  color: var(--paper-soft);
}

.format-image-note span {
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.format-image-note b {
  max-width: 17rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
}

.format-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 3.5vw, 4rem);
}

.format-copy > * {
  transition: opacity 260ms ease, transform 500ms var(--ease);
}

.format-label {
  margin: 0 0 1.3rem;
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.format-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 2.8vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  overflow-wrap: break-word;
}

.format-copy > p:not(.format-label) {
  margin: 1.6rem 0;
  color: rgba(23, 18, 15, 0.68);
  font-size: 0.95rem;
  line-height: 1.65;
}

.format-copy ul {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.format-copy li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.format-copy li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--red);
  background: transparent;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.text-link span {
  transition: transform 260ms var(--ease);
}

.text-link:hover span {
  transform: translate(0.25rem, -0.25rem);
}

.prototype-note {
  margin: 1rem 0 0 auto;
  color: rgba(23, 18, 15, 0.46);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

/* Running order ------------------------------------------------------- */
.running-order {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--red-deep);
  color: var(--paper-soft);
}

.running-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(242, 234, 220, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 234, 220, 0.09) 1px, transparent 1px);
  background-size: 6.25% 5rem;
  mask-image: linear-gradient(to right, #000, transparent 80%);
}

.running-inner {
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.running-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(15rem, 0.5fr);
  align-items: end;
  gap: 3rem;
}

.running-head .kicker,
.running-head h2 {
  grid-column: 1;
}

.running-head h2 {
  margin-top: 1.4rem;
}

.running-head h2 em {
  color: var(--rose);
}

.running-head > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  max-width: 23rem;
  margin: 0 0 0.75rem;
  color: rgba(242, 234, 220, 0.64);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.show-console {
  min-height: 44rem;
  margin-top: clamp(3.5rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: minmax(17rem, 0.6fr) minmax(0, 1.6fr);
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  grid-template-areas:
    "top top"
    "list stage"
    "progress progress"
    "hint hint";
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: #110e0d;
  box-shadow: 0 2rem 6rem rgba(39, 0, 5, 0.3);
}

.console-topbar {
  min-height: 4.3rem;
  grid-area: top;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem 1.1rem;
  border-bottom: 1px solid var(--line-light);
  color: rgba(242, 234, 220, 0.56);
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.console-topbar p {
  margin: 0;
}

.console-topbar p:first-child {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--paper-soft);
}

.live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(230, 43, 52, 0.6);
  animation: livePulse 2.2s ease-out infinite;
}

@keyframes livePulse {
  70% { box-shadow: 0 0 0 0.65rem rgba(230, 43, 52, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 43, 52, 0); }
}

.console-topbar button {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--paper-soft);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.console-topbar button b {
  color: var(--red-bright);
}

.console-topbar button.is-playing {
  border-color: var(--red-bright);
  background: var(--red);
}

.console-topbar button.is-playing b {
  color: var(--paper-soft);
}

.cue-list {
  min-width: 0;
  grid-area: list;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  border-right: 1px solid var(--line-light);
}

.cue {
  min-width: 0;
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: rgba(242, 234, 220, 0.42);
  text-align: left;
  cursor: pointer;
  transition: background 280ms ease, color 280ms ease;
}

.cue:last-child {
  border-bottom: 0;
}

.cue time {
  font-size: 0.6rem;
  font-weight: 760;
  letter-spacing: 0.09em;
}

.cue > span {
  min-width: 0;
  display: grid;
  gap: 0.3rem;
}

.cue > span b {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  font-weight: 400;
  line-height: 1;
}

.cue > span small {
  overflow: hidden;
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cue > i {
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.5rem;
  font-style: normal;
}

.cue:hover,
.cue.is-active {
  background: var(--red);
  color: var(--paper-soft);
}

.cue-stage {
  min-width: 0;
  grid-area: stage;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.65fr);
}

.cue-media {
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: #060505;
}

.cue-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 42%);
  pointer-events: none;
}

.cue-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 620ms var(--ease);
}

.show-console.is-changing .cue-media img {
  opacity: 0.28;
  transform: scale(1.03);
}

.cue-frame {
  position: absolute;
  inset: 1.2rem;
  z-index: 2;
  pointer-events: none;
}

.cue-frame i {
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  border: 1px solid var(--paper-soft);
  opacity: 0.72;
}

.cue-frame i:nth-child(1) { top: 0; left: 0; border-width: 1px 0 0 1px; }
.cue-frame i:nth-child(2) { top: 0; right: 0; border-width: 1px 1px 0 0; }
.cue-frame i:nth-child(3) { right: 0; bottom: 0; border-width: 0 1px 1px 0; }
.cue-frame i:nth-child(4) { bottom: 0; left: 0; border-width: 0 0 1px 1px; }

.cue-media > p {
  position: absolute;
  right: 1.6rem;
  bottom: 1.4rem;
  left: 1.6rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin: 0;
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.cue-media > p b {
  color: var(--red-bright);
}

.cue-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.8rem, 3vw, 3.2rem);
  background: var(--paper-soft);
  color: var(--ink);
}

.cue-copy > p:first-child {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.6rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cue-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.cue-copy > p:not(:first-child) {
  margin: 1.5rem 0 2rem;
  color: rgba(23, 18, 15, 0.66);
  font-size: 0.88rem;
  line-height: 1.65;
}

.cue-copy dl {
  margin: 0;
}

.cue-copy dl div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  padding-block: 0.65rem;
  border-top: 1px solid var(--line);
}

.cue-copy dt,
.cue-copy dd {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

.cue-copy dt {
  color: rgba(23, 18, 15, 0.48);
  text-transform: uppercase;
}

.cue-copy dd {
  font-weight: 720;
}

.console-progress {
  height: 3px;
  grid-area: progress;
  background: rgba(242, 234, 220, 0.12);
}

.console-progress i {
  width: 20%;
  height: 100%;
  display: block;
  background: var(--red-bright);
  transition: width 520ms var(--ease);
}

.console-hint {
  grid-area: hint;
  margin: 0;
  padding: 0.65rem 1rem;
  color: rgba(242, 234, 220, 0.34);
  font-size: 0.52rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

/* Moments ------------------------------------------------------------- */
.moments {
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.moments-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(17rem, 0.55fr);
  align-items: end;
  gap: 4rem;
}

.moments-head-copy > p {
  margin: 0;
  color: rgba(23, 18, 15, 0.62);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.45;
}

.rail-controls {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.rail-controls button {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.rail-controls button:hover {
  background: var(--red);
  color: var(--paper-soft);
  transform: translateY(-0.18rem);
}

.moment-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: clamp(2.8rem, 4vw, 4rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.moment-filters button {
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: rgba(23, 18, 15, 0.6);
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.moment-filters button:hover,
.moment-filters button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-soft);
}

.moments-rail {
  min-height: 35rem;
  margin-top: 1.4rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(14.5rem, 19vw, 20rem);
  align-items: center;
  gap: clamp(0.75rem, 1.3vw, 1.2rem);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 1.2rem 0 1.8rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.moments-rail::-webkit-scrollbar {
  display: none;
}

.moments-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.moment-card {
  height: 25rem;
  min-width: 0;
  position: relative;
  align-self: center;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--ink);
  color: var(--paper-soft);
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition: opacity 280ms ease, transform 420ms var(--ease), filter 280ms ease;
}

.moment-card-tall {
  height: 31rem;
  align-self: start;
}

.moment-card-wide {
  width: clamp(20rem, 26vw, 28rem);
  align-self: end;
}

.moment-card.is-hidden {
  display: none;
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms var(--ease), filter 750ms ease;
}

.moment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 7, 5, 0.8), transparent 45%);
  pointer-events: none;
}

.moment-card > span {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.moment-card b {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.moment-card small {
  font-size: 0.5rem;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.moment-card:hover {
  transform: translateY(-0.45rem);
}

.moment-card:hover img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.045);
}

.drag-hint {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin: 0;
  color: rgba(23, 18, 15, 0.45);
  font-size: 0.56rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drag-hint i {
  height: 1px;
  background: var(--line);
}

.drag-hint b {
  color: var(--red);
  font-weight: 780;
}

/* Archive ------------------------------------------------------------- */
.archive {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-soft);
}

.archive-image {
  height: clamp(30rem, 64vw, 60rem);
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.archive-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 18, 15, 0.9), transparent 52%);
  pointer-events: none;
}

.archive-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) saturate(0.88) contrast(1.05);
  transform: scale(1.02);
}

.archive-lens {
  width: clamp(13rem, 22vw, 24rem);
  aspect-ratio: 1;
  position: absolute;
  left: var(--lens-x, 66%);
  top: var(--lens-y, 48%);
  z-index: 2;
  border: 1px solid rgba(242, 234, 220, 0.62);
  border-radius: 50%;
  background-image: url("./assets/runway.webp");
  background-position: var(--lens-bg-x, 66%) var(--lens-bg-y, 48%);
  background-size: 520% auto;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.archive-image > p {
  position: absolute;
  right: var(--gutter);
  bottom: 1.6rem;
  left: var(--gutter);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  margin: 0;
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-image > p span {
  flex: 1;
  margin-inline: 1rem;
  border-bottom: 1px solid rgba(242, 234, 220, 0.28);
  color: transparent;
}

.archive-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.52fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.archive-title h2 em {
  color: var(--rose);
}

.archive-story {
  align-self: end;
}

.archive-story p {
  margin: 0;
}

.archive-lead {
  color: var(--paper-soft);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.75rem);
  line-height: 1.2;
}

.archive-story p:last-child {
  margin-top: 1.5rem;
  color: rgba(242, 234, 220, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

.archive-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(1rem, 3vw, 3rem);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.archive-facts div {
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem;
  border-right: 1px solid var(--line-light);
}

.archive-facts div:last-child {
  border-right: 0;
}

.archive-facts strong {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.archive-facts span {
  max-width: 14rem;
  color: rgba(242, 234, 220, 0.5);
  font-size: 0.62rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Event worlds -------------------------------------------------------- */
.event-worlds {
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.worlds-head h2 {
  max-width: 13ch;
}

.worlds-layout {
  margin-top: clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.worlds-list {
  border-top: 1px solid var(--ink);
}

.world-row {
  width: 100%;
  min-height: 7.4rem;
  display: grid;
  grid-template-columns: 2.2rem minmax(10rem, 0.75fr) minmax(12rem, 0.8fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 260ms ease, padding 360ms var(--ease);
}

.world-row > span {
  color: var(--red);
  font-size: 0.58rem;
  font-weight: 780;
}

.world-row strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}

.world-row p {
  margin: 0;
  color: rgba(23, 18, 15, 0.5);
  font-size: 0.7rem;
  line-height: 1.5;
}

.world-row > b {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 400;
  opacity: 0.5;
  transition: background 260ms ease, color 260ms ease, transform 360ms var(--ease), opacity 260ms ease;
}

.world-row:hover,
.world-row.is-active {
  padding-inline: 0.8rem;
  color: var(--red);
}

.world-row:hover > b,
.world-row.is-active > b {
  background: var(--red);
  color: var(--paper-soft);
  opacity: 1;
  transform: rotate(45deg);
}

.world-visual {
  min-height: 42rem;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  overflow: hidden;
  border-radius: 10rem 10rem 1.3rem 1.3rem;
  background: var(--ink);
  color: var(--paper-soft);
}

.world-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 8, 5, 0.85), transparent 48%);
}

.world-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: opacity 240ms ease, transform 600ms var(--ease);
}

.world-visual.is-changing img {
  opacity: 0.25;
  transform: scale(1.04);
}

.world-visual > div {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 2;
}

.world-visual span {
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.world-visual p {
  max-width: 24rem;
  margin: 0.75rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.18;
}

/* Builder ------------------------------------------------------------- */
.builder {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: var(--paper-soft);
}

.builder::before {
  content: "EVENT BRIEF";
  position: absolute;
  right: -0.06em;
  bottom: -0.18em;
  color: rgba(242, 234, 220, 0.07);
  font-family: var(--serif);
  font-size: clamp(8rem, 24vw, 28rem);
  line-height: 0.7;
  white-space: nowrap;
  pointer-events: none;
}

.builder-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.builder-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.45fr);
  gap: 4rem;
  align-items: end;
}

.builder-head .kicker,
.builder-head h2 {
  grid-column: 1;
}

.builder-head h2 em {
  color: var(--rose);
}

.builder-head > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0 0 0.6rem;
  color: rgba(242, 234, 220, 0.66);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.builder-workspace {
  margin-top: clamp(3.5rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.75fr);
  gap: 1.2rem;
  align-items: start;
}

.brief-builder {
  padding: clamp(1.4rem, 3vw, 3rem);
  background: var(--paper-soft);
  color: var(--ink);
}

.brief-builder fieldset {
  margin: 0;
  padding: 1.8rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.brief-builder fieldset:first-child {
  padding-top: 0;
}

.brief-builder legend {
  width: 100%;
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.brief-builder legend span {
  padding-top: 0.35rem;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.57rem;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.choice-pills button {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: rgba(23, 18, 15, 0.64);
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.choice-pills button:hover {
  transform: translateY(-0.15rem);
}

.choice-pills button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-soft);
}

.production-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.production-checks legend {
  grid-column: 1 / -1;
}

.production-checks label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  color: rgba(23, 18, 15, 0.7);
  font-size: 0.7rem;
  font-weight: 680;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease;
}

.production-checks input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.production-checks i {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  position: relative;
  border: 1px solid rgba(23, 18, 15, 0.36);
}

.production-checks i::after {
  content: "";
  position: absolute;
  inset: 0.18rem;
  background: var(--red);
  transform: scale(0);
  transition: transform 180ms var(--ease);
}

.production-checks input:checked + i::after {
  transform: scale(1);
}

.production-checks label:has(input:checked) {
  border-color: var(--red);
  background: rgba(201, 32, 47, 0.05);
}

.event-pass {
  position: sticky;
  top: calc(var(--header-h) + 1.2rem);
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.7rem);
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: 0 2rem 5rem rgba(81, 4, 13, 0.22);
}

.event-pass::before,
.event-pass::after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 10.2rem;
  border-radius: 50%;
  background: var(--red);
}

.event-pass::before { left: -1rem; }
.event-pass::after { right: -1rem; }

.pass-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.pass-top img {
  width: 10rem;
}

.pass-top p {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.pass-top span {
  color: var(--red);
  font-weight: 800;
}

.pass-title {
  min-height: 9.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0;
  border-bottom: 1px dashed var(--line);
}

.pass-title p,
.pass-desks p {
  margin: 0 0 0.7rem;
  color: var(--red);
  font-size: 0.57rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pass-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.event-pass dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.event-pass dl div {
  min-width: 0;
  padding: 1rem 0;
}

.event-pass dt,
.event-pass dd {
  margin: 0;
}

.event-pass dt {
  color: rgba(23, 18, 15, 0.44);
  font-size: 0.5rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-pass dd {
  overflow: hidden;
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pass-desks {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.pass-desks ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pass-desks li {
  padding: 0.38rem 0.55rem;
  border: 1px solid var(--line);
  font-size: 0.56rem;
}

.pass-actions {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pass-actions button {
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.75rem;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 0.62rem;
  font-weight: 760;
  cursor: pointer;
}

.pass-actions button:last-child {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-soft);
}

.pass-local {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.9rem 0 0;
  color: rgba(23, 18, 15, 0.42);
  font-size: 0.5rem;
  font-weight: 670;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pass-local span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #42a466;
}

/* Footer -------------------------------------------------------------- */
.event-footer {
  overflow: hidden;
  background: #160c0d;
  color: var(--paper-soft);
}

.footer-top {
  position: relative;
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.footer-top h2 {
  max-width: 11ch;
}

.footer-top h2 em {
  color: var(--rose);
}

.footer-cta {
  width: clamp(9rem, 13vw, 13rem);
  aspect-ratio: 1;
  position: absolute;
  right: var(--gutter);
  bottom: clamp(4rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--paper-soft);
  border-radius: 50%;
  background: var(--red);
  color: var(--paper-soft);
  cursor: pointer;
  transition: background 260ms ease, color 260ms ease;
}

.footer-cta span {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
}

.footer-cta b {
  font-size: 1.25rem;
  font-weight: 400;
}

.footer-cta:hover {
  background: var(--paper-soft);
  color: var(--red);
}

.footer-contact {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.8fr 0.8fr;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.footer-contact > div {
  min-width: 0;
  min-height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border-right: 1px solid var(--line-light);
}

.footer-contact > div:last-child {
  border-right: 0;
}

.footer-contact p {
  margin: 0;
  color: rgba(242, 234, 220, 0.42);
  font-size: 0.54rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-contact span {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.55vw, 1.4rem);
  line-height: 1.15;
}

.footer-contact a:hover {
  color: var(--rose);
}

.footer-brand {
  min-height: 12rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-brand img {
  width: min(24rem, 55vw);
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-brand p {
  margin: 0;
  color: rgba(242, 234, 220, 0.36);
  font-size: 0.52rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand > a {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  transition: background 220ms ease, color 220ms ease;
}

.footer-brand > a:hover {
  background: var(--paper-soft);
  color: var(--ink);
}

/* Dialogs ------------------------------------------------------------- */
dialog {
  padding: 0;
  border: 0;
}

dialog::backdrop {
  background: rgba(8, 5, 4, 0.78);
  backdrop-filter: blur(10px);
}

.dialog-close {
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 234, 220, 0.3);
  border-radius: 50%;
  background: rgba(23, 18, 15, 0.72);
  color: var(--paper-soft);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  overflow: hidden;
  background: #0b0807;
  color: var(--paper-soft);
}

.lightbox[open] {
  animation: dialogIn 420ms var(--ease);
}

@keyframes dialogIn {
  from { opacity: 0; transform: translateY(1rem); }
}

.lightbox-stage {
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  padding: clamp(1rem, 4vw, 4rem);
}

.lightbox-stage > button {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 234, 220, 0.26);
  border-radius: 50%;
  background: transparent;
  color: var(--paper-soft);
  font-size: 1.4rem;
  cursor: pointer;
}

.lightbox-stage figure {
  width: min(100%, 68rem);
  height: min(78dvh, 52rem);
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  background: #18100d;
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-stage figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 5rem 1.5rem 1.3rem;
  background: linear-gradient(to bottom, transparent, rgba(10, 6, 5, 0.88));
}

.lightbox-stage figcaption span {
  color: var(--rose);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-stage figcaption h2 {
  margin: 0.4rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

.planner {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  overflow: auto;
  background: var(--red-deep);
  color: var(--paper-soft);
}

.planner[open] {
  animation: plannerIn 520ms var(--ease);
}

@keyframes plannerIn {
  from { opacity: 0; transform: translateX(4rem); }
}

.planner-shell {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(22rem, 1.15fr);
}

.planner-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) clamp(2rem, 5vw, 5rem);
  background: var(--ink);
}

.planner-intro::after {
  content: "P";
  position: absolute;
  right: -0.03em;
  bottom: -0.25em;
  color: rgba(242, 234, 220, 0.045);
  font-family: var(--serif);
  font-size: min(55vw, 42rem);
  line-height: 0.8;
}

.planner-intro h2 {
  position: relative;
  z-index: 1;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.planner-intro h2 em {
  color: var(--rose);
  font-weight: 400;
}

.planner-intro > p:not(.kicker) {
  max-width: 31rem;
  position: relative;
  z-index: 1;
  color: rgba(242, 234, 220, 0.62);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
}

.planner-stub {
  width: min(100%, 28rem);
  min-height: 6rem;
  position: absolute;
  bottom: 2rem;
  left: clamp(2rem, 5vw, 5rem);
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 0.15rem 0.8rem;
  padding: 1rem;
  border: 1px dashed rgba(242, 234, 220, 0.3);
}

.planner-stub span {
  grid-row: 1 / 3;
  color: var(--red-bright);
  font-family: var(--serif);
  font-size: 2.6rem;
}

.planner-stub b,
.planner-stub small {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.planner-stub small {
  color: rgba(242, 234, 220, 0.42);
}

.planner-form {
  align-self: center;
  display: grid;
  gap: 1.3rem;
  padding: clamp(5rem, 8vw, 8rem) clamp(2rem, 6vw, 7rem);
}

.planner-form label {
  display: grid;
  gap: 0.55rem;
}

.planner-form label > span {
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.planner-form input,
.planner-form textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid rgba(242, 234, 220, 0.34);
  border-radius: 0;
  background: transparent;
  color: var(--paper-soft);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  outline: none;
  resize: vertical;
}

.planner-form input:focus,
.planner-form textarea:focus {
  border-bottom-color: var(--rose);
}

.planner-form input::placeholder,
.planner-form textarea::placeholder {
  color: rgba(242, 234, 220, 0.34);
}

.planner-form input[type="date"] {
  color-scheme: dark;
}

.planner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.planner-submit {
  min-height: 4.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 0.5rem;
  padding: 1rem 1.2rem;
  background: var(--paper-soft);
  color: var(--red-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.planner-submit b {
  font-size: 1.2rem;
}

.planner-form > p {
  margin: 0;
  color: rgba(242, 234, 220, 0.4);
  font-size: 0.55rem;
  letter-spacing: 0.05em;
}

.planner-success {
  align-self: center;
  max-width: 38rem;
  margin: auto;
  padding: clamp(3rem, 7vw, 7rem);
  text-align: center;
}

.planner-success > span {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  margin: 0 auto 2rem;
  border: 1px solid var(--paper-soft);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2rem;
}

.planner-success p {
  color: var(--rose);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.planner-success h3 {
  margin: 1rem 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.planner-success small {
  display: block;
  color: rgba(242, 234, 220, 0.55);
}

.planner-success button {
  margin-top: 2rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--paper-soft);
  background: transparent;
  color: var(--paper-soft);
  cursor: pointer;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 6000;
  padding: 0.9rem 1.1rem;
  background: var(--ink);
  color: var(--paper-soft);
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 220ms ease, transform 320ms var(--ease);
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive ---------------------------------------------------------- */
@media (max-width: 1240px) {
  .site-head {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    gap: 1.1rem;
  }

  .head-brief {
    min-width: auto;
  }

  .head-brief span {
    display: none;
  }

  .format-stage {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(25rem, 1fr) auto;
  }

  .format-media {
    min-height: 29rem;
  }

  .format-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }

  .format-copy .format-label,
  .format-copy h3 {
    grid-column: 1;
  }

  .format-copy > p:not(.format-label),
  .format-copy ul,
  .format-copy .text-link {
    grid-column: 2;
  }

  .format-copy > p:not(.format-label) {
    grid-row: 1 / 3;
    margin-top: 0;
  }

  .format-copy ul {
    grid-row: 3;
  }

  .format-copy .text-link {
    grid-row: 4;
  }

  .world-row {
    grid-template-columns: 2rem minmax(10rem, 1fr) auto;
  }

  .world-row p {
    display: none;
  }
}

@media (max-width: 1020px) {
  :root {
    --gutter: clamp(1rem, 3.5vw, 2.5rem);
  }

  .hero-film {
    grid-template-columns: minmax(8rem, 0.65fr) minmax(20rem, 2fr) minmax(8rem, 0.65fr);
  }

  .format-theatre {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .format-list {
    grid-template-columns: repeat(4, minmax(13rem, 1fr));
    grid-template-rows: auto;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    scrollbar-width: none;
  }

  .format-list::-webkit-scrollbar { display: none; }

  .format-tab {
    min-height: 7.5rem;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .show-console {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(34rem, 62vh) auto auto;
    grid-template-areas:
      "top"
      "list"
      "stage"
      "progress"
      "hint";
  }

  .cue-list {
    grid-template-columns: repeat(5, minmax(10rem, 1fr));
    grid-template-rows: auto;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    scrollbar-width: none;
  }

  .cue-list::-webkit-scrollbar { display: none; }

  .cue {
    min-height: 7rem;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .cue time {
    grid-column: 1;
  }

  .cue > span {
    grid-column: 1;
  }

  .cue > i {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .worlds-layout {
    grid-template-columns: 1fr;
  }

  .world-visual {
    min-height: 34rem;
    position: relative;
    top: auto;
    border-radius: 1.2rem;
  }

  .builder-workspace {
    grid-template-columns: 1fr;
  }

  .event-pass {
    position: relative;
    top: auto;
  }

  .footer-contact {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-contact > div:nth-child(2) {
    border-right: 0;
  }

  .footer-contact > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 4.4rem;
  }

  .site-head {
    grid-template-columns: 1fr auto;
    padding-inline: 1rem;
  }

  .desktop-nav,
  .head-brief {
    display: none;
  }

  .brand {
    width: 10.5rem;
  }

  .menu-toggle {
    width: 2.7rem;
    height: 2.7rem;
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 1rem;
    height: 1px;
    position: absolute;
    background: var(--ink);
    transition: transform 300ms var(--ease), top 300ms var(--ease);
  }

  .menu-toggle > span:first-child { top: 1.05rem; }
  .menu-toggle > span:nth-child(2) { top: 1.55rem; }

  .menu-toggle[aria-expanded="true"] > span:first-child { top: 1.3rem; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 1.3rem; transform: rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 5.5rem 1.2rem 2rem;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 320ms ease, visibility 0s linear 320ms, transform 420ms var(--ease);
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(2.4rem, 10vw, 4.5rem);
    line-height: 1;
  }

  .mobile-menu a span {
    color: var(--red);
    font-family: var(--sans);
    font-size: 0.58rem;
  }

  .mobile-menu > button {
    min-height: 3.8rem;
    background: var(--red);
    color: var(--paper-soft);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero {
    padding: calc(var(--header-h) + 2rem) 1rem 1.2rem;
  }

  .hero-topline {
    grid-template-columns: 1fr 1fr;
  }

  .hero-topline-center {
    display: none;
  }

  .hero-heading {
    margin-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 18vw, 7rem);
    line-height: 0.79;
  }

  .hero-deck {
    max-width: 27rem;
  }

  .hero-film {
    height: 34rem;
    grid-template-columns: 0.64fr 1.8fr;
    grid-template-rows: 1fr 0.72fr;
    gap: 0.65rem;
    padding-bottom: 3.3rem;
  }

  .hero-shot-left {
    height: 100%;
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 5rem 5rem 1rem 1rem;
  }

  .hero-shot-main {
    height: 100%;
    grid-column: 2;
    grid-row: 1;
  }

  .hero-shot-right {
    height: 100%;
    grid-column: 2;
    grid-row: 2;
    border-radius: 1rem 1rem 5rem 5rem;
  }

  .hero-shot figcaption {
    padding-inline: 0.7rem;
  }

  .hero-shot figcaption b {
    display: none;
  }

  .hero-call {
    right: 38%;
  }

  .hero-foot {
    grid-template-columns: 1fr auto;
  }

  .hero-foot p:last-child {
    display: none;
  }

  .section-intro,
  .moments-head,
  .running-head,
  .builder-head,
  .archive-copy {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .section-intro > p,
  .moments-head-copy > p {
    max-width: 34rem;
  }

  .running-head > p:last-child,
  .builder-head > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .format-stage {
    display: block;
  }

  .format-copy {
    display: flex;
  }

  .cue-stage {
    grid-template-columns: 1fr;
    grid-template-rows: 1.25fr 0.75fr;
  }

  .cue-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
  }

  .cue-copy > p:first-child,
  .cue-copy h3 {
    grid-column: 1;
  }

  .cue-copy > p:not(:first-child),
  .cue-copy dl {
    grid-column: 2;
  }

  .cue-copy > p:not(:first-child) {
    grid-row: 1 / 3;
    margin-top: 0;
  }

  .archive-copy {
    padding-top: 5rem;
  }

  .archive-facts {
    grid-template-columns: 1fr;
  }

  .archive-facts div {
    min-height: auto;
    flex-direction: row;
    align-items: end;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .archive-facts div:last-child {
    border-bottom: 0;
  }

  .archive-lens {
    width: 11rem;
  }

  .world-row {
    grid-template-columns: 1.6rem minmax(0, 1fr) auto;
  }

  .builder-head > p:last-child {
    max-width: 32rem;
  }

  .footer-top {
    padding-bottom: 15rem;
  }

  .footer-cta {
    right: auto;
    bottom: 3.5rem;
    left: var(--gutter);
  }

  .footer-brand {
    grid-template-columns: 1fr auto;
  }

  .footer-brand p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .planner-shell {
    grid-template-columns: 1fr;
  }

  .planner-intro {
    min-height: 32rem;
  }

  .planner-stub {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 3rem;
  }
}

@media (max-width: 600px) {
  .hero-topline {
    font-size: 0.5rem;
  }

  .hero-film {
    height: 31rem;
    grid-template-columns: 1fr 2fr;
  }

  .hero-call {
    right: 32%;
    width: 6.6rem;
  }

  .hero-shot figcaption span {
    font-size: 0.46rem;
  }

  .hero-foot > p:first-child {
    display: none;
  }

  .hero-foot {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .section-intro h2,
  .moments-head h2,
  .worlds-head h2,
  .builder-head h2,
  .running-head h2,
  .archive-title h2,
  .footer-top h2 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .format-media {
    min-height: 23rem;
  }

  .format-list {
    grid-template-columns: repeat(4, minmax(15rem, 1fr));
  }

  .format-tab {
    grid-template-columns: 1.2rem minmax(0, 1fr) auto;
    gap: 0.35rem 0.6rem;
    padding: 1rem;
  }

  .format-tab strong {
    overflow: visible;
    font-size: 1.25rem;
    line-height: 1.05;
    text-overflow: clip;
    white-space: normal;
  }

  .format-stamp {
    width: 5.5rem;
    height: 5.5rem;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 0.9rem;
  }

  .format-image-note {
    right: 0.9rem;
    bottom: 0.9rem;
    left: 0.9rem;
  }

  .format-image-note b {
    display: none;
  }

  .format-copy {
    padding: 1.6rem;
  }

  .console-topbar {
    grid-template-columns: 1fr auto;
  }

  .console-topbar > p:nth-child(2) {
    display: none;
  }

  .console-topbar button span {
    display: none;
  }

  .show-console {
    grid-template-rows: auto auto minmax(42rem, auto) auto auto;
  }

  .cue-stage {
    grid-template-rows: 22rem auto;
  }

  .cue-copy {
    display: flex;
  }

  .cue-copy > p:not(:first-child) {
    margin-top: 1.3rem;
  }

  .moment-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1.2rem;
    scrollbar-width: none;
  }

  .moment-filters::-webkit-scrollbar { display: none; }

  .moment-filters button {
    flex: 0 0 auto;
  }

  .moments-rail {
    min-height: 30rem;
    grid-auto-columns: 72vw;
  }

  .moment-card,
  .moment-card-tall,
  .moment-card-wide {
    width: auto;
    height: 28rem;
    align-self: center;
  }

  .drag-hint {
    grid-template-columns: 1fr auto;
  }

  .drag-hint i {
    display: none;
  }

  .archive-image {
    height: 30rem;
  }

  .archive-image > p {
    right: 1rem;
    left: 1rem;
    font-size: 0.48rem;
  }

  .archive-lens {
    display: none;
  }

  .world-row strong {
    font-size: 1.45rem;
  }

  .world-visual {
    min-height: 28rem;
  }

  .production-checks {
    grid-template-columns: 1fr;
  }

  .event-pass dl {
    grid-template-columns: 1fr;
  }

  .event-pass dl div {
    border-bottom: 1px solid var(--line);
  }

  .pass-actions {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .footer-contact > div {
    min-height: 6.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .footer-contact > div:last-child {
    border-bottom: 0;
  }

  .footer-brand {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .lightbox-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    padding: 4.5rem 1rem 1rem;
  }

  .lightbox-stage figure {
    width: 100%;
    height: auto;
    min-height: 65dvh;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-stage > button {
    width: 100%;
    height: 3rem;
    border-radius: 0;
  }

  .planner-intro,
  .planner-form {
    padding-inline: 1.2rem;
  }

  .planner-intro h2 {
    font-size: clamp(3.6rem, 18vw, 6rem);
  }

  .planner-row {
    grid-template-columns: 1fr;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .opening {
    display: none;
  }
}
