@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-600-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-800-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #050505;
  --ink-soft: #0c0c0c;
  --ink-raised: #131313;
  --paper: #f0ede5;
  --paper-deep: #ded8ca;
  --white: #fbfaf6;
  --gold: #d7b842;
  --gold-light: #f0d66c;
  --gold-dark: #8f7425;
  --muted: #a7a39a;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(8, 8, 8, 0.16);
  --gutter: clamp(24px, 4.4vw, 76px);
  --section-y: clamp(104px, 12vw, 190px);
  --header-h: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-dark) var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  font: inherit;
}

address {
  font-style: normal;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-pad {
  padding: var(--section-y) var(--gutter);
}

.section-code {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-code span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

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

/* Header */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: var(--header-h);
  grid-template-columns: minmax(130px, 190px) 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: 12px var(--gutter);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.8), transparent);
  transition:
    min-height 350ms var(--ease),
    background 350ms ease,
    border-color 350ms ease,
    backdrop-filter 350ms ease;
}

.site-header.is-scrolled {
  min-height: 74px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px) saturate(125%);
}

.brand {
  display: inline-flex;
  width: clamp(118px, 11vw, 154px);
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3.3vw, 54px);
}

.desktop-nav a {
  position: relative;
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

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

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--white);
}

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

.book-link {
  display: grid;
  min-width: 190px;
  min-height: 54px;
  grid-template-columns: 1fr 43px;
  align-items: center;
  gap: 14px;
  padding: 6px 6px 6px 18px;
  border: 1px solid rgba(215, 184, 66, 0.55);
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
  background: rgba(5, 5, 5, 0.32);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease;
}

.book-link__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.book-link__copy small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-link__copy b {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book-link > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  transition: transform 300ms var(--ease), background 200ms ease;
}

.book-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.book-link:hover,
.book-link:focus-visible {
  border-color: var(--gold);
  background: rgba(215, 184, 66, 0.1);
}

.book-link:hover > i,
.book-link:focus-visible > i {
  background: var(--gold-light);
  transform: rotate(45deg);
}

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

/* Opening film */

.opening {
  position: relative;
  height: 300svh;
  background: var(--ink);
  --portal: 0;
}

.opening__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: min(620px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #030303 url("assets/images/poster-opening-cinematic.jpg") center / cover no-repeat;
}

.opening video {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  background: #030303;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.015);
  transform-origin: 50% 50%;
  transition: transform 900ms var(--ease), filter 700ms ease, object-position 900ms var(--ease);
  will-change: transform;
}

/* The logo scene needs a little more headroom beneath the fixed navigation. */
.opening[data-phase="1"] video {
  filter: saturate(0.96) contrast(1.035);
  transform: scale(1.03) translateY(10.5%);
}

.opening[data-phase="1"] .opening__stage {
  background-color: #030303;
  background-image: none;
}

.opening[data-phase="2"] video {
  transform: scale(1.015);
}

.opening__grade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, transparent 25%, transparent 60%, rgba(0, 0, 0, 0.66) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.06) 46%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
  transition: background 800ms var(--ease);
}

.opening[data-phase="1"] .opening__grade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 30%, transparent 55%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 35%, transparent 65%, rgba(0, 0, 0, 0.18));
}

.opening[data-phase="2"] .opening__grade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 31%, transparent 58%, rgba(0, 0, 0, 0.66) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), transparent 42%, transparent 70%, rgba(0, 0, 0, 0.3));
}

.opening__veil {
  position: absolute;
  z-index: -2;
  inset: -10%;
  background:
    radial-gradient(circle at 52% 44%, rgba(240, 214, 108, 0.45), transparent 28%),
    rgba(5, 5, 5, 0.3);
  opacity: calc(var(--portal) * 0.82);
  pointer-events: none;
  transform: scale(calc(1 + var(--portal) * 0.08));
  transition: opacity 80ms linear;
}

.opening-phase {
  position: absolute;
  z-index: 4;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 650ms var(--ease),
    transform 850ms var(--ease),
    filter 650ms ease;
}

.opening.is-settled .opening-phase.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  filter: none;
}

.opening-phase > p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.opening-phase > p span {
  color: var(--gold-light);
}

.opening-phase h1,
.opening-phase h2 {
  margin: 0;
  font-size: clamp(50px, 7vw, 118px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.83;
  text-transform: uppercase;
}

.opening-phase h1 span,
.opening-phase h1 em {
  display: block;
}

.opening-phase h1 em,
.opening-phase h2 span {
  color: var(--gold-light);
  font-style: inherit;
}

.opening-phase--hero {
  left: var(--gutter);
  bottom: clamp(78px, 11vh, 128px);
  width: min(760px, 61vw);
}

.opening-phase--hero strong {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.opening-phase--hero strong i {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.opening-phase--mark {
  top: 75%;
  left: 50%;
  width: min(660px, 72vw);
  padding: 11px 18px 13px;
  text-align: center;
  transform: translate(-50%, 30px);
}

.opening.is-settled .opening-phase--mark.is-active {
  transform: translate(-50%, 0);
}

.opening-phase--mark::before {
  position: absolute;
  z-index: -1;
  inset: -10px -20px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.7) 80%, transparent);
  content: "";
}

.opening-phase--mark > p {
  justify-content: center;
  margin-bottom: 7px;
  color: var(--gold-light);
}

.opening-phase--mark h2 {
  font-size: clamp(11px, 1vw, 15px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.opening-phase--mark h2 span {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.opening-phase--invitation {
  inset: 0;
  width: 100%;
  text-align: center;
}

.opening-phase--invitation > p {
  position: absolute;
  top: calc(var(--header-h) + 30px);
  left: 50%;
  justify-content: center;
  transform: translateX(-50%);
}

.opening-phase--invitation h2 {
  font-size: clamp(40px, 4.65vw, 78px);
}

.opening-phase--invitation h2 span {
  position: absolute;
  top: 43%;
  width: min(31vw, 540px);
  transform: translateY(-50%);
}

.opening-phase--invitation h2 span:first-child {
  left: var(--gutter);
  color: var(--white);
  text-align: left;
}

.opening-phase--invitation h2 span:last-child {
  right: var(--gutter);
  text-align: right;
}

.opening-phase--invitation > a {
  position: absolute;
  top: 59.5%;
  left: 50%;
  display: flex;
  min-width: 204px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0 21px 0 24px;
  border: 1px solid rgba(247, 219, 112, 0.88);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(4, 4, 4, 0.94), rgba(27, 23, 9, 0.88));
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.56),
    inset 0 1px rgba(255, 255, 255, 0.16),
    0 0 30px rgba(215, 184, 66, 0.16);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.opening-phase--invitation > a i {
  color: var(--gold-light);
  font-size: 18px;
  font-style: normal;
  transition: transform 250ms var(--ease);
}

.opening-phase--invitation > a:hover i,
.opening-phase--invitation > a:focus-visible i {
  transform: translate(4px, 4px);
}

.opening-phase--invitation > a:hover,
.opening-phase--invitation > a:focus-visible {
  background: var(--gold-light);
  box-shadow: 0 20px 60px rgba(215, 184, 66, 0.3);
  color: var(--ink);
}

.opening__meta {
  position: absolute;
  z-index: 5;
  top: calc(var(--header-h) + 24px);
  right: var(--gutter);
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.opening__meta span:last-child {
  color: var(--gold-light);
}

.opening__scroll {
  position: absolute;
  z-index: 5;
  right: var(--gutter);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.opening__scroll i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.opening__scroll i::before,
.opening__scroll i::after {
  position: absolute;
  left: 50%;
  content: "";
  transform: translateX(-50%);
}

.opening__scroll i::before {
  top: 8px;
  width: 1px;
  height: 12px;
  background: var(--gold-light);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.opening__scroll i::after {
  bottom: 8px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  transform: translateX(-50%) rotate(45deg);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: translate(-50%, -2px); }
  50% { opacity: 1; transform: translate(-50%, 3px); }
}

.opening__steps {
  position: absolute;
  z-index: 7;
  top: 50%;
  right: 15px;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}

.opening__steps i {
  width: 2px;
  height: 27px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 350ms ease, height 350ms var(--ease);
}

.opening[data-phase="0"] .opening__steps i:nth-child(1),
.opening[data-phase="1"] .opening__steps i:nth-child(2),
.opening[data-phase="2"] .opening__steps i:nth-child(3) {
  height: 43px;
  background: var(--gold-light);
}

/* About */

.about {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(22px, 3.2vw, 54px);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.about__headline {
  z-index: 2;
  grid-column: 1 / -1;
}

.about__headline .section-code {
  margin-bottom: 28px;
}

.about__headline h2,
.section-intro h2,
.locations-header h2,
.career h2 {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(52px, 8.4vw, 142px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.85;
  text-transform: uppercase;
}

.about__headline h2 span,
.section-intro h2 span,
.locations-header h2 span,
.career h2 span {
  color: var(--gold-dark);
}

.about__image {
  position: relative;
  grid-column: 1 / span 8;
  min-height: 640px;
  margin: clamp(54px, 7vw, 110px) 0 0;
  overflow: hidden;
  background: var(--ink);
  clip-path: polygon(0 0, 96% 0, 100% 7%, 100% 100%, 0 100%);
}

.about__image::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 35%;
  height: 5px;
  background: var(--gold);
  content: "";
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.75) contrast(1.06);
  transition: transform 1.3s var(--ease-slow), filter 800ms ease;
}

.about__image:hover img {
  transform: scale(1.025);
  filter: saturate(0.9) contrast(1.04);
}

.about__image figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 9px 12px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about__copy {
  display: grid;
  grid-column: 9 / -1;
  align-content: end;
  gap: 22px;
  padding-bottom: 14px;
}

.about__copy > p {
  margin: 0 0 16px;
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.65;
}

.about__copy > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.about__copy strong {
  color: var(--gold-dark);
  font-size: 38px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.about__copy span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* Services */

.services {
  background: var(--ink);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 32vw);
  align-items: end;
  gap: 30px;
  margin-bottom: clamp(70px, 8vw, 120px);
}

.section-intro .section-code {
  grid-column: 1 / -1;
  margin-bottom: 3px;
}

.section-intro h2 {
  font-size: clamp(50px, 7vw, 116px);
}

.section-intro > p:last-child {
  max-width: 410px;
  margin: 0 0 6px auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-workbench {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  align-items: start;
  gap: clamp(38px, 6vw, 104px);
}

.service-visual {
  position: sticky;
  top: 104px;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 6 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--ink-raised);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.service-visual::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 34%;
  height: 4px;
  background: var(--gold);
  content: "";
}

.service-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 45%);
  content: "";
}

.service-visual picture,
.service-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.service-visual img {
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.service-visual:hover img {
  transform: scale(1.035);
}

.service-visual figcaption {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(24px, 3.5vw, 48px);
  left: clamp(22px, 3vw, 42px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.service-visual figcaption span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-visual figcaption b {
  font-size: 24px;
  font-style: italic;
  font-weight: 800;
}

.service-visual figcaption strong {
  max-width: 60%;
  font-size: clamp(24px, 2.6vw, 44px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-align: right;
  text-transform: uppercase;
}

.service-index {
  counter-reset: service;
}

.service-row {
  position: relative;
  display: grid;
  min-height: 136px;
  grid-template-columns: 48px minmax(170px, 0.8fr) minmax(180px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: padding 350ms var(--ease), border-color 250ms ease;
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row::before {
  position: absolute;
  z-index: -1;
  inset: 0 -22px;
  background: rgba(215, 184, 66, 0.075);
  content: "";
  opacity: 0;
  transform: scaleX(0.97);
  transition: opacity 250ms ease, transform 350ms var(--ease);
}

.service-row.is-active::before,
.service-row:hover::before,
.service-row:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-row > b {
  align-self: start;
  padding-top: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 23px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.service-row a {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateX(-10px);
  transition: opacity 250ms ease, transform 300ms var(--ease);
}

.service-row.is-active a,
.service-row:focus-within a {
  opacity: 1;
  transform: none;
}

/* Precision film */

.precision-film {
  position: relative;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.precision-film video {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.precision-film__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.05) 58%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 50%, rgba(0, 0, 0, 0.55));
}

.precision-film__copy {
  position: absolute;
  bottom: clamp(55px, 9vh, 100px);
  left: var(--gutter);
  width: min(650px, 58vw);
}

.precision-film__copy > p {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.precision-film__copy h2 {
  margin: 0;
  font-size: clamp(56px, 8vw, 130px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.83;
  text-transform: uppercase;
}

.precision-film__copy h2 span {
  color: var(--gold-light);
}

.precision-film__copy > div {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.precision-film__copy > div span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Offers */

.offers {
  background: var(--paper);
  color: var(--ink);
}

.section-intro--compact {
  grid-template-columns: 1fr;
  margin-bottom: clamp(54px, 7vw, 95px);
}

.section-intro--compact h2 {
  max-width: 930px;
}

.offer-ticket {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) repeat(2, minmax(280px, 1fr));
  border: 1px solid rgba(8, 8, 8, 0.42);
  background: var(--paper);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.offer-ticket::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 28%;
  height: 5px;
  background: var(--gold-dark);
  content: "";
}

.ticket-stub,
.offer-ticket article {
  min-height: 420px;
  padding: clamp(28px, 3.4vw, 52px);
}

.ticket-stub {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px dashed rgba(8, 8, 8, 0.32);
  background: var(--ink);
  color: var(--white);
}

.ticket-stub img {
  width: 74px;
  height: auto;
}

.ticket-stub p {
  margin: auto 0 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.ticket-stub span {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offer-ticket article {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(8, 8, 8, 0.18);
}

.offer-ticket article:last-child {
  border-right: 0;
}

.offer-ticket article > p {
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offer-ticket article > strong {
  margin: 28px 0 18px;
  color: var(--gold-dark);
  font-size: clamp(70px, 7vw, 116px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.offer-ticket article > strong small {
  font-size: 0.27em;
  letter-spacing: 0;
}

.offer-ticket h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.offer-ticket article > span {
  margin-bottom: 32px;
  font-size: 13px;
}

.offer-ticket article > small {
  max-width: 360px;
  margin-top: auto;
  color: #666158;
  font-size: 10px;
  line-height: 1.6;
}

/* Proof */

.proof {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.4fr);
  align-items: stretch;
  gap: clamp(50px, 8vw, 130px);
  background: var(--ink-soft);
}

.rating {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  padding-right: clamp(26px, 4vw, 60px);
  border-right: 1px solid var(--line);
}

.rating__number {
  margin: auto 0 0;
  color: var(--gold-light);
  font-size: clamp(120px, 18vw, 276px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.72;
}

.rating > span {
  margin-top: 38px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-stage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stage h2 {
  margin: 0 0 58px;
  font-size: clamp(45px, 5.3vw, 86px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.review-stage h2 span {
  color: var(--gold-light);
}

.review-copy {
  position: relative;
  min-height: 230px;
}

.review-copy > article {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 420ms ease, transform 550ms var(--ease);
}

.review-copy > article.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.review-copy > article p {
  max-width: 840px;
  margin: 0;
  font-size: clamp(18px, 2vw, 31px);
  line-height: 1.5;
}

.review-copy footer {
  margin-top: 28px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.review-tabs button {
  min-height: 64px;
  padding: 0 12px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease;
}

.review-tabs button:last-child {
  border-right: 0;
}

.review-tabs button span {
  margin-right: 8px;
  color: var(--gold);
}

.review-tabs button:hover,
.review-tabs button:focus-visible,
.review-tabs button.is-active {
  background: rgba(215, 184, 66, 0.08);
  color: var(--white);
}

/* Locations */

.locations {
  background: var(--ink);
}

.locations-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
}

.locations-header .section-code {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.locations-header h2 {
  font-size: clamp(58px, 8vw, 132px);
}

.locations-header > p:last-child {
  max-width: 330px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.location-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location {
  position: relative;
  height: min(86svh, 920px);
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-raised);
}

.location:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.location > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08);
  transition: transform 1.2s var(--ease-slow), filter 700ms ease;
}

.location--hollywood > img {
  object-position: 50% 50%;
}

.location--cooper > img {
  object-position: 50% 45%;
}

.location::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 60%);
  content: "";
}

.location:hover > img,
.location:focus-within > img {
  filter: saturate(0.9) contrast(1.03);
  transform: scale(1.035);
}

.location__content {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(30px, 5vw, 68px);
  left: clamp(24px, 4vw, 58px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
}

.location__content > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location__content > strong {
  grid-column: 1 / -1;
  margin: 4px 0 -8px;
  font-size: clamp(84px, 11vw, 170px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.location__content address {
  font-size: clamp(17px, 1.8vw, 27px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-transform: uppercase;
}

.location__content > div {
  display: flex;
  gap: 9px;
}

.location__content a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.location__content a:first-child {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.location__content a:hover,
.location__content a:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

/* Seamless career-to-clipper finale */

.finale {
  position: relative;
  height: 200svh;
  background: var(--ink);
  --career-opacity: 1;
  --career-copy-opacity: 1;
  --career-scale: 1;
  --ender-opacity: 0;
  --ender-copy: 0;
  --ender-details: 0;
}

.finale.is-ender {
  /* Keep the career image opaque beneath the incoming film so the handoff
   * never composites two half-transparent layers over black. */
  --career-opacity: 1;
  --career-copy-opacity: 0;
  --career-scale: 1.035;
  --ender-opacity: 1;
}

.finale__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: min(650px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.career,
.ender {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.career {
  z-index: 1;
  opacity: var(--career-opacity);
  pointer-events: none;
  transition: opacity 760ms var(--ease);
}

.career.is-interactive {
  pointer-events: auto;
}

.career > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--career-scale));
  transition: filter 200ms linear, transform 1.1s var(--ease-slow);
}

.career__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.32)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 45%, rgba(0, 0, 0, 0.58));
}

.career__copy {
  position: absolute;
  bottom: clamp(70px, 11vh, 124px);
  left: var(--gutter);
  width: min(840px, 69vw);
  opacity: var(--career-copy-opacity);
  transform: translateY(calc((1 - var(--career-opacity)) * -24px));
  transition: opacity 260ms ease;
}

.career__copy .section-code {
  margin-bottom: 25px;
}

.career h2 {
  font-size: clamp(52px, 7.3vw, 120px);
}

.text-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  border-bottom: 1px solid var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.text-action i {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.text-action i::before,
.text-action i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold-light);
  content: "";
  transform: translate(-50%, -50%);
}

.text-action i::before { width: 10px; height: 1px; }
.text-action i::after { width: 1px; height: 10px; }

.ender {
  z-index: 2;
  opacity: var(--ender-opacity);
  pointer-events: none;
  transition: opacity 760ms var(--ease);
}

.ender video {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  background: #000;
  transform: scale(1.012);
}

.ender__content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ender__content > p {
  position: absolute;
  top: calc(var(--header-h) + 18px);
  left: 50%;
  margin: 0;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: var(--ender-copy);
  text-transform: uppercase;
  transform: translate(-50%, calc((1 - var(--ender-copy)) * 12px));
}

.ender h2 {
  position: absolute;
  top: calc(var(--header-h) + 42px);
  left: 50%;
  width: min(1180px, 92vw);
  margin: 0;
  font-size: clamp(34px, 4.7vw, 72px);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.94;
  opacity: var(--ender-copy);
  text-align: center;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.68);
  text-transform: uppercase;
  transform: translate(-50%, calc((1 - var(--ender-copy)) * 22px));
}

.ender h2 br {
  display: none;
}

.ender h2 span {
  margin-left: 0.22em;
  color: var(--gold-light);
}

.ender__shops {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(88px, 13vh, 136px);
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  opacity: var(--ender-details);
  pointer-events: auto;
  transform: translateY(calc((1 - var(--ender-details)) * 18px));
}

.ender__shops a {
  display: flex;
  min-width: min(360px, 36vw);
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 220ms ease, color 220ms ease;
}

.ender__shops a:hover,
.ender__shops a:focus-visible {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.ender__shops span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
}

.ender__shops b,
.ender__shops span {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.96);
}

.ender nav {
  position: absolute;
  bottom: 30px;
  left: var(--gutter);
  display: flex;
  gap: clamp(16px, 2.5vw, 38px);
  opacity: var(--ender-details);
  pointer-events: auto;
  transform: translateY(calc((1 - var(--ender-details)) * 12px));
}

.ender nav a,
.ender small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ender nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.ender nav a:hover,
.ender nav a:focus-visible {
  color: var(--gold-light);
}

.ender small {
  position: absolute;
  right: var(--gutter);
  bottom: 30px;
  opacity: var(--ender-details);
}

.mobile-call-dock {
  display: none;
}

@media (max-width: 1180px) {
  :root { --gutter: clamp(24px, 4vw, 46px); }

  .site-header {
    grid-template-columns: 135px 1fr auto;
  }

  .desktop-nav { gap: 24px; }

  .book-link { min-width: 170px; }

  .service-workbench {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
    gap: 46px;
  }

  .service-row {
    grid-template-columns: 38px minmax(150px, 0.85fr) 1fr;
  }

  .location__content {
    grid-template-columns: 1fr;
  }

  .location__content > div {
    flex-wrap: wrap;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 128px 1fr auto;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about__headline,
  .about__image,
  .about__copy {
    grid-column: 1;
  }

  .about__image {
    min-height: 560px;
  }

  .about__copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 22px;
  }

  .about__copy > p {
    grid-column: 1 / -1;
  }

  .service-workbench {
    grid-template-columns: 1fr;
  }

  .service-visual {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 6 / 5;
  }

  .offer-ticket {
    grid-template-columns: 0.55fr 1fr;
  }

  .offer-ticket article:last-child {
    grid-column: 1 / -1;
    min-height: 320px;
    border-top: 1px solid var(--line-dark);
  }

  .proof {
    grid-template-columns: 1fr;
  }

  .rating {
    min-height: 340px;
    padding: 0 0 48px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rating__number { font-size: 190px; }

  .locations-header {
    grid-template-columns: 1fr;
  }

  .locations-header > p:last-child {
    margin: 0;
  }

  .location-split {
    grid-template-columns: 1fr;
  }

  .location:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 767px) {
  :root {
    --gutter: 20px;
    --section-y: 88px;
    --header-h: 74px;
  }

  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }

  .desktop-nav { display: none; }

  .site-header,
  .site-header.is-scrolled {
    min-height: var(--header-h);
    grid-template-columns: 104px 1fr 48px;
    gap: 12px;
    padding: 8px var(--gutter);
  }

  .brand { width: 104px; }

  .book-link {
    justify-self: end;
    min-width: 0;
    min-height: 44px;
    grid-template-columns: auto 36px;
    gap: 8px;
    padding: 4px 4px 4px 10px;
  }

  .book-link__copy small { display: none; }
  .book-link__copy b { font-size: 8px; }

  .book-link > i {
    width: 34px;
    height: 34px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .menu-toggle i {
    display: block;
    width: 21px;
    height: 1px;
    background: var(--white);
    transition: transform 260ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] i:first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: calc(var(--header-h) + 38px) var(--gutter) calc(34px + env(safe-area-inset-bottom));
    height: 100dvh;
    min-height: 100svh;
    background: rgba(5, 5, 5, 0.98);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-menu[hidden] { display: none; }

  .mobile-menu > p {
    display: flex;
    justify-content: space-between;
    margin: 0 0 34px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .mobile-menu > a {
    display: grid;
    min-height: 64px;
    grid-template-columns: 34px 1fr;
    align-items: center;
    border-top: 1px solid var(--line);
    font-size: clamp(24px, 8vw, 38px);
    font-style: italic;
    font-weight: 800;
    letter-spacing: -0.045em;
    text-transform: uppercase;
  }

  .mobile-menu > a small {
    color: var(--gold);
    font-size: 9px;
    font-style: normal;
    letter-spacing: 0.1em;
  }

  .mobile-menu > div {
    display: grid;
    gap: 8px;
    margin-top: auto;
  }

  .mobile-menu > div a {
    color: var(--muted);
    font-size: 10px;
  }

  .opening__stage { min-height: min(560px, 100svh); }

  .opening video {
    object-position: 50% center;
  }

  .opening[data-phase="0"] video {
    object-position: 31% center;
  }

  .opening__grade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 26%, transparent 50%, rgba(0, 0, 0, 0.8)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 70%);
  }

  .opening-phase > p {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 8px;
  }

  .opening-phase--hero {
    right: var(--gutter);
    bottom: 94px;
    width: auto;
  }

  .opening-phase--hero h1 {
    font-size: clamp(46px, 16vw, 72px);
  }

  .opening-phase--hero strong {
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 7px;
  }

  .opening-phase--mark {
    top: 73%;
    width: calc(100vw - 34px);
  }

  .opening-phase--mark h2 {
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

  .opening-phase--invitation {
    inset: 0;
    width: 100%;
  }

  .opening-phase--invitation h2 {
    font-size: clamp(24px, 7vw, 38px);
  }

  .opening-phase--invitation h2 span {
    top: 43%;
    width: 29vw;
  }

  .opening-phase--invitation h2 span:first-child {
    left: var(--gutter);
  }

  .opening-phase--invitation h2 span:last-child {
    right: var(--gutter);
  }

  .opening-phase--invitation > a {
    top: 59.5%;
    min-width: 174px;
    min-height: 46px;
    margin: 0;
    padding: 0 16px 0 18px;
    font-size: 8px;
  }

  .opening-phase--invitation > p {
    top: calc(var(--header-h) + 18px);
  }

  .opening__meta {
    top: 92px;
    font-size: 7px;
  }

  .opening__meta span:first-child { display: none; }
  .opening__meta { justify-content: flex-end; }

  .opening__scroll {
    right: var(--gutter);
    bottom: 20px;
  }

  .opening__scroll span { display: none; }
  .opening__steps { right: 7px; }

  .about__headline h2,
  .section-intro h2,
  .locations-header h2,
  .career h2 {
    font-size: clamp(45px, 14vw, 68px);
  }

  .about__image {
    min-height: 430px;
    margin-top: 44px;
  }

  .about__copy {
    grid-template-columns: 1fr;
  }

  .about__copy > div {
    grid-template-columns: 72px 1fr;
  }

  .section-intro {
    grid-template-columns: 1fr;
    margin-bottom: 52px;
  }

  .section-intro > p:last-child {
    margin: 0;
  }

  .service-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 5 / 6;
  }

  .service-visual figcaption {
    display: grid;
    gap: 8px;
  }

  .service-visual figcaption strong {
    max-width: 100%;
    text-align: left;
  }

  .service-row {
    min-height: 150px;
    grid-template-columns: 32px 1fr;
    align-content: center;
    gap: 8px 12px;
  }

  .service-row p {
    grid-column: 2;
  }

  .service-row a {
    right: 0;
    bottom: 8px;
  }

  .precision-film {
    min-height: 580px;
  }

  .precision-film video {
    object-position: 56% center;
  }

  .precision-film__copy {
    right: var(--gutter);
    bottom: 74px;
    width: auto;
  }

  .precision-film__copy h2 {
    font-size: clamp(50px, 16vw, 76px);
  }

  .precision-film__copy > div {
    flex-wrap: wrap;
  }

  .offer-ticket {
    grid-template-columns: 1fr;
  }

  .ticket-stub,
  .offer-ticket article {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .ticket-stub {
    min-height: 260px;
  }

  .offer-ticket article:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .proof { gap: 54px; }

  .rating {
    min-height: 290px;
  }

  .rating__number { font-size: 150px; }

  .review-stage h2 {
    font-size: clamp(34px, 10.5vw, 44px);
    margin-bottom: 40px;
  }

  .review-copy { min-height: 285px; }

  .review-tabs button {
    min-height: 58px;
    padding: 0 8px;
    font-size: 7px;
  }

  .review-tabs button span {
    display: block;
    margin: 0 0 3px;
  }

  .locations-header { gap: 18px; }

  .location {
    height: 76svh;
    min-height: 580px;
  }

  .location__content {
    grid-template-columns: 1fr;
  }

  .location__content > strong {
    font-size: clamp(82px, 27vw, 132px);
  }

  .location__content > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .location__content a { padding: 0 10px; }

  .finale__stage { min-height: min(580px, 100svh); }

  .career > img {
    object-position: 55% center;
  }

  .career__copy {
    right: var(--gutter);
    bottom: 82px;
    width: auto;
  }

  .career h2 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .ender video {
    object-position: 50% center;
  }

  .ender__content > p {
    top: calc(var(--header-h) + 14px);
    width: 100%;
    text-align: center;
  }

  .ender h2 {
    top: calc(var(--header-h) + 34px);
    width: 92vw;
    font-size: clamp(21px, 6.5vw, 34px);
  }

  .ender__shops {
    right: var(--gutter);
    bottom: 144px;
    left: var(--gutter);
    display: grid;
    gap: 8px;
  }

  .ender__shops a {
    min-width: 0;
    min-height: 48px;
  }

  .ender nav {
    right: var(--gutter);
    bottom: 92px;
    justify-content: space-between;
    gap: 8px;
  }

  .ender small {
    right: auto;
    bottom: 70px;
    left: var(--gutter);
  }

  .mobile-call-dock {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(62px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(16px);
  }

  .mobile-call-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-call-dock a:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-call-dock span { color: var(--gold-light); }

  body.menu-open .mobile-call-dock {
    display: none;
  }
}

/* Full-bleed portrait crops, authored per scene so the films remain continuous. */
@media (max-width: 767px) and (orientation: portrait) {
  .opening__stage {
    background: #030303;
  }

  .opening video,
  .precision-film video,
  .ender video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: none;
  }

  .opening video {
    transition:
      top 900ms var(--ease),
      height 900ms var(--ease),
      transform 900ms var(--ease),
      filter 700ms ease,
      object-position 900ms var(--ease);
  }

  .opening[data-phase="0"] video {
    object-position: 31% 50%;
    transform: none;
  }

  .opening[data-phase="1"] video {
    top: var(--header-h);
    bottom: auto;
    height: min(calc(100% - var(--header-h) - 18px), calc(100vw * 1.255));
    object-position: 50% 48%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 5%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 5%, #000 94%, transparent 100%);
    transform: none;
  }

  .opening[data-phase="2"] video {
    object-position: 50% 50%;
    transform: none;
  }

  .opening-phase--mark {
    top: 72%;
  }

  .opening-phase--invitation h2 span {
    top: 43%;
  }

  .opening-phase--invitation > a {
    top: 60%;
  }

  .precision-film {
    min-height: 100svh;
    background: #000;
  }

  .precision-film video {
    object-position: 56% 50%;
    transform: none;
  }

  .ender video {
    object-position: 50% 50%;
    transform: none;
  }
}

@media (max-width: 767px) and (max-height: 620px) and (orientation: portrait) {
  .ender__shops {
    display: none;
  }
}

@media (max-width: 360px) {
  .review-stage h2 {
    font-size: 33px;
    letter-spacing: -0.065em;
  }
}

@media (min-width: 768px) and (max-width: 920px) and (max-height: 520px) and (orientation: landscape) {
  .opening video,
  .precision-film video,
  .ender video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: scale(1);
  }

  .opening[data-phase="0"] video,
  .opening[data-phase="2"] video {
    object-position: 50% 50%;
    transform: scale(1);
  }

  .opening[data-phase="1"] video {
    object-position: 50% 50%;
    transform: scale(1.015) translateY(18.5%);
  }

  .opening-phase--mark {
    top: 68%;
  }

  .precision-film {
    height: 100svh;
    min-height: 0;
  }

  .career__copy {
    bottom: 24px;
  }

  .career__copy .section-code {
    margin-bottom: 12px;
  }

  .career h2 {
    font-size: clamp(36px, 7vw, 58px);
  }

  .career .text-action {
    margin-top: 16px;
  }
}

@media (max-width: 767px) and (max-height: 520px) and (orientation: landscape) {
  .opening video,
  .precision-film video,
  .ender video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: scale(1);
  }

  .opening[data-phase="0"] video,
  .opening[data-phase="2"] video {
    object-position: 50% 50%;
    transform: scale(1);
  }

  .opening[data-phase="1"] video {
    object-position: 50% 50%;
    transform: scale(1.015) translateY(18.5%);
  }

  .opening-phase--mark {
    top: 68%;
  }

  .opening__scroll {
    bottom: 72px;
  }

  .precision-film {
    height: 100svh;
    min-height: 0;
  }

  .ender__content > p,
  .ender small {
    display: none;
  }

  .ender h2 {
    top: calc(var(--header-h) + 14px);
    font-size: clamp(20px, 4.2vw, 28px);
  }

  .ender__shops {
    bottom: 122px;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .ender__shops a {
    min-height: 40px;
    font-size: 8px;
  }

  .ender nav {
    bottom: 70px;
  }
}

@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 {
    height: 100svh;
  }

  .opening-phase:not(.opening-phase--hero),
  .opening__steps {
    display: none;
  }

  .opening-phase--hero {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .finale {
    height: auto;
  }

  .finale__stage {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .career,
  .ender {
    position: relative;
    height: 100svh;
    min-height: min(620px, 100svh);
    opacity: 1;
  }

  .ender {
    background: #000 url("assets/images/poster-footer-clipper-final.jpg") center / cover no-repeat;
  }

  .ender video { display: none; }

  .ender__content > p,
  .ender h2 {
    opacity: 1;
    transform: translateX(-50%);
  }

  .ender__shops,
  .ender nav,
  .ender small {
    opacity: 1;
    transform: none;
  }
}
