@font-face {
  font-family: "Bodoni Moda";
  src: url("assets/fonts/BodoniModa-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("assets/fonts/BodoniModa-Italic-Variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --black: #070a0b;
  --black-soft: #111516;
  --bone: #eee8dc;
  --paper: #f7f2e8;
  --yellow: #bd9457;
  --yellow-soft: #e1c58f;
  --coral: #a76f46;
  --white: #fffefa;
  --muted: #8d999f;
  --line-dark: rgba(8, 13, 16, 0.18);
  --line-light: rgba(255, 254, 250, 0.18);
  --serif: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Manrope", "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease-film: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-inset-y: 9vh;
  --hero-inset-x: 9vw;
  --hero-image-scale: 1.12;
  --hero-image-y: 0px;
  --hero-copy-opacity: 1;
  --hero-copy-y: 0px;
  --hero-title-opacity: 0.96;
  --hero-top-x: 0px;
  --hero-bottom-x: 0px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--black);
  background: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.atelier-open,
body.intro-active {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

button {
  border-radius: 0;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-optical-sizing: auto;
  font-synthesis: none;
  text-wrap: balance;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--yellow);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.intro {
  position: fixed;
  z-index: 999;
  inset: 0;
  overflow: hidden;
  color: var(--white);
  background: #050708;
  transition:
    opacity 1100ms var(--ease-film),
    visibility 1100ms ease,
    transform 1200ms var(--ease-film);
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.intro.is-ready .intro__brand {
  opacity: 1;
}

.intro.is-ready .intro__meter,
.intro.is-ready > button {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* is-leaving styles refined later with blur dissolve */

.intro__stage {
  position: absolute;
  inset: 0;
}

.intro__video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  /* No CSS filter/scale on the video layer: those force re-composite and make short intros stutter. */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.intro__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 58% at 50% 42%, rgba(5, 7, 8, 0.18), rgba(5, 7, 8, 0.72) 72%, rgba(5, 7, 8, 0.9) 100%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.55) 0%, rgba(5, 7, 8, 0.12) 38%, rgba(5, 7, 8, 0.28) 62%, rgba(5, 7, 8, 0.88) 100%);
  pointer-events: none;
}

.intro__grain,
.memory-statement__grain,
.theater__grain {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  /* Static grain tile (no live SVG filter paint) keeps the intro film from hitching. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  pointer-events: none;
  mix-blend-mode: soft-light;
  will-change: auto;
}

/* Lighter grain on the intro only */
.intro__grain {
  opacity: 0.1;
}

.intro__chrome {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding:
    max(28px, env(safe-area-inset-top))
    max(22px, env(safe-area-inset-right))
    max(34px, env(safe-area-inset-bottom))
    max(22px, env(safe-area-inset-left));
  pointer-events: none;
}

.intro__brand {
  position: relative;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.94);
  transition:
    opacity 1200ms var(--ease-film) 320ms,
    transform 1400ms var(--ease-film) 320ms;
}

.intro.is-ready .intro__brand {
  transform: translate3d(0, 0, 0) scale(1);
}

.intro__halo {
  position: absolute;
  width: min(420px, 72vw);
  height: min(420px, 72vw);
  border-radius: 50%;
  /* Soft gradient only (no live blur filter + scale loop): those were hitching the intro reel. */
  background: radial-gradient(circle, rgba(225, 197, 143, 0.2), rgba(225, 197, 143, 0.05) 44%, transparent 70%);
  pointer-events: none;
  opacity: 0.85;
}

/* Full transparent lockup + halo for cinematic intro (premium, not tight crop) */
.intro__logo {
  position: relative;
  z-index: 1;
  width: min(460px, 72vw);
  height: auto;
  max-height: min(48vh, 420px);
  object-fit: contain;
  filter:
    drop-shadow(0 26px 56px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 36px rgba(225, 197, 143, 0.22));
}

.intro__letterbox {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.intro__letterbox i {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(28px, 7vh, 56px);
  background: #050708;
}

.intro__letterbox i:first-child { top: 0; }
.intro__letterbox i:last-child { bottom: 0; }

.intro__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 45%, transparent 0%, rgba(5, 7, 8, 0.35) 70%, rgba(5, 7, 8, 0.72) 100%);
  pointer-events: none;
}

.intro__meter {
  position: absolute;
  bottom: max(56px, calc(env(safe-area-inset-bottom) + 40px));
  left: 50%;
  width: min(160px, 38vw);
  transform: translate3d(-50%, 12px, 0);
  opacity: 0;
  transition:
    opacity 900ms var(--ease-film) 700ms,
    transform 1100ms var(--ease-film) 700ms;
}

.intro.is-ready .intro__meter {
  transform: translate3d(-50%, 0, 0);
}

.intro__line {
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 254, 250, 0.12);
}

.intro__line i {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(225, 197, 143, 0.35), var(--yellow-soft), rgba(225, 197, 143, 0.35), transparent);
  transition: width 80ms linear;
  box-shadow: 0 0 12px rgba(225, 197, 143, 0.35);
}

.intro.is-leaving {
  opacity: 0;
  visibility: hidden;
  /* Opacity-only exit. Blur on a full-screen video layer is a common frame-drop source. */
  pointer-events: none;
  transition:
    opacity 900ms var(--ease-film),
    visibility 900ms ease;
}

.intro > button {
  position: absolute;
  z-index: 3;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, calc(env(safe-area-inset-bottom) + 18px));
  min-height: 44px;
  padding: 10px 2px;
  color: rgba(255, 254, 250, 0.72);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(225, 197, 143, 0.45);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 700ms var(--ease-film) 700ms,
    transform 900ms var(--ease-film) 700ms,
    color 220ms ease,
    border-color 220ms ease;
  pointer-events: auto;
}

.intro > button:hover,
.intro > button:focus-visible {
  color: var(--yellow-soft);
  border-bottom-color: var(--yellow-soft);
}

.cursor-orbit {
  position: fixed;
  z-index: 400;
  top: 0;
  left: 0;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(165deg, #e8d0a4 0%, var(--yellow-soft) 42%, var(--yellow) 100%);
  border: 1px solid rgba(255, 254, 250, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 250, 0.4),
    0 12px 28px rgba(7, 10, 11, 0.22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease, background 220ms ease;
  will-change: transform, opacity;
}

/* Only appears over intentional hotspots (galleries, booth film) */
.cursor-orbit.is-active {
  opacity: 0.96;
  visibility: visible;
}

.cursor-orbit span {
  max-width: 62px;
  padding: 4px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.scroll-pilot {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: 28px;
  display: grid;
  justify-items: center;
  gap: 14px;
  color: rgba(255, 254, 250, 0.62);
  transform: translateY(-50%);
  pointer-events: none;
}

.scroll-pilot__label {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.scroll-pilot__label b {
  color: var(--yellow-soft);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.scroll-pilot__track {
  position: relative;
  width: 1px;
  height: 128px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(225, 197, 143, 0.55) 18%,
    rgba(255, 254, 250, 0.28) 50%,
    rgba(225, 197, 143, 0.55) 82%,
    transparent
  );
}

.scroll-pilot__track i {
  position: absolute;
  top: -9px;
  left: -11px;
  width: 24px;
  height: 24px;
  transform: translateY(0);
  will-change: transform;
}

.scroll-pilot__track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.2);
}

.scroll-pilot__track span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(165deg, #e8d0a4 0%, var(--yellow) 100%);
  border: 1px solid rgba(255, 254, 250, 0.35);
  box-shadow: 0 6px 16px rgba(7, 10, 11, 0.28);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.cinema-header {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  left: 0;
  min-height: 88px;
  padding: 8px 4.4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--black);
  background: rgba(247, 242, 232, 0.92);
  border-bottom: 1px solid rgba(7, 10, 11, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background 300ms ease, color 300ms ease, transform 600ms var(--ease-film);
}

.cinema-header.is-solid {
  background: rgba(247, 242, 232, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.cinema-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(320px, 46vw);
  text-decoration: none;
  color: inherit;
}

/* Tight-cropped lockup (padding removed) so mark reads large and sharp */
.cinema-brand__logo {
  display: block;
  width: auto;
  height: clamp(58px, 6.4vw, 76px);
  max-width: min(280px, 52vw);
  object-fit: contain;
  object-position: left center;
}

.cinema-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 44px);
}

.cinema-nav a {
  position: relative;
  color: rgba(7, 10, 11, 0.66);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cinema-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-film);
}

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

.cinema-nav > button {
  min-height: 46px;
  padding: 0 22px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--black);
  background: linear-gradient(165deg, #d4b07a 0%, var(--yellow) 48%, #a87d45 100%);
  border: 1px solid rgba(255, 254, 250, 0.22);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 250, 0.35),
    0 10px 28px rgba(7, 10, 11, 0.14);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 280ms var(--ease-film),
    box-shadow 280ms ease,
    filter 220ms ease;
}

.cinema-nav > button:hover,
.cinema-nav > button:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 250, 0.42),
    0 14px 34px rgba(7, 10, 11, 0.18);
}

.cinema-menu {
  display: none;
}

.opening {
  position: relative;
  height: 190svh;
  color: var(--white);
  background: var(--black);
}

.opening__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  touch-action: pan-y;
}

.opening__media {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  clip-path: inset(var(--hero-inset-y) var(--hero-inset-x));
  /* No transition on clip-path: it fights scroll rAF and feels choppy */
  transition: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.opening__media video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 32%;
  transform: translate3d(0, var(--hero-image-y), 0) scale(var(--hero-image-scale));
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
}

.opening__media .opening__echo {
  z-index: 1;
  opacity: 0;
  object-position: center 50%;
  filter: saturate(0.92) contrast(1.06) brightness(1.02);
  mix-blend-mode: normal;
  -webkit-mask-image: radial-gradient(
    260px circle at var(--lens-x) var(--lens-y),
    #000 0 40%,
    rgba(0, 0, 0, 0.9) 54%,
    transparent 74%
  );
  mask-image: radial-gradient(
    260px circle at var(--lens-x) var(--lens-y),
    #000 0 40%,
    rgba(0, 0, 0, 0.9) 54%,
    transparent 74%
  );
  /* Opacity only: mask position updates every frame without transition thrash */
  transition: opacity 280ms ease;
  pointer-events: none;
}

/* Premium temporal lens: wedding film under the pointer across the full frame */
.opening__media.is-lens-active .opening__echo {
  opacity: 0.97;
}

.opening__media.is-held.is-lens-active .opening__echo {
  opacity: 1;
  filter: saturate(0.45) contrast(1.12) brightness(1.08);
}

.opening__temporal-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 12.5% 12.5%;
  -webkit-mask-image: radial-gradient(340px circle at var(--lens-x) var(--lens-y), #000, transparent 74%);
  mask-image: radial-gradient(340px circle at var(--lens-x) var(--lens-y), #000, transparent 74%);
  pointer-events: none;
  transition: opacity 280ms ease;
}

.opening__media.is-lens-active .opening__temporal-grid {
  opacity: 0.12;
}

.opening__shade {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 15, 0.76), rgba(6, 12, 15, 0.08) 54%, rgba(6, 12, 15, 0.16)),
    linear-gradient(0deg, rgba(6, 12, 15, 0.8), transparent 46%);
}

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

.viewfinder {
  position: absolute;
  z-index: 4;
  inset: 26px;
  pointer-events: none;
}

.viewfinder i {
  position: absolute;
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, 0.64);
}

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

.opening__media-note {
  position: absolute;
  z-index: 5;
  right: 42px;
  bottom: 36px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.opening__media-note b {
  color: var(--yellow-soft);
  font-weight: 900;
}

.opening__media-note span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(167, 111, 70, 0.16);
}

.opening__hold {
  position: absolute;
  z-index: 7;
  top: 50%;
  right: calc(var(--hero-inset-x) + 25px);
  width: 86px;
  height: 86px;
  padding: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--white);
  background: rgba(7, 10, 11, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: right 80ms linear, color 320ms ease, background 320ms ease, transform 420ms var(--ease-film);
  cursor: pointer;
}

.opening__hold::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  transition: transform 600ms var(--ease-film), border-color 320ms ease;
}

.opening__hold:hover,
.opening__hold:focus-visible,
.opening__hold[aria-pressed="true"] {
  color: var(--black);
  background: var(--yellow-soft);
  transform: translateY(-50%) scale(1.07);
}

.opening__hold:hover::before,
.opening__hold:focus-visible::before,
.opening__hold[aria-pressed="true"]::before {
  border-color: rgba(7, 10, 11, 0.28);
  transform: rotate(90deg);
}

.opening__hold i {
  position: relative;
  width: 14px;
  height: 12px;
}

.opening__hold i::before,
.opening__hold i::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: currentColor;
}

.opening__hold i::before { left: 3px; }
.opening__hold i::after { right: 3px; }

.opening__hold[aria-pressed="true"] i::before {
  left: 4px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
  background: transparent;
}

.opening__hold[aria-pressed="true"] i::after {
  display: none;
}

.opening__hold span {
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.opening__type {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: var(--hero-title-opacity);
  pointer-events: none;
}

.opening__word {
  position: absolute;
  right: 0;
  left: 0;
  font-family: var(--serif);
  font-size: clamp(84px, 14.2vw, 235px);
  font-weight: 400;
  line-height: 0.74;
  letter-spacing: -0.065em;
  text-align: center;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  mix-blend-mode: difference;
}

.opening__word--top {
  top: 8.5vh;
  transform: translate3d(var(--hero-top-x), 0, 0);
}

.opening__word--bottom {
  bottom: 7vh;
  color: var(--yellow);
  transform: translate3d(var(--hero-bottom-x), 0, 0);
  mix-blend-mode: normal;
}

.opening__copy {
  position: absolute;
  z-index: 4;
  bottom: 17vh;
  left: 13.2vw;
  max-width: 650px;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-y), 0);
  pointer-events: none;
}

.opening__copy > a {
  pointer-events: auto;
}

.opening__telemetry,
.opening__edge,
.opening__type,
.opening__scrub {
  pointer-events: none;
}

.opening__eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.opening__copy h1 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(44px, 4.4vw, 72px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.opening__copy h1 em {
  color: var(--yellow);
  font-weight: 400;
}

.opening__copy > a,
.invitation__content > button,
.theater__foot > button {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  color: var(--black);
  background: linear-gradient(165deg, #d4b07a 0%, var(--yellow) 48%, #a87d45 100%);
  border: 1px solid rgba(255, 254, 250, 0.22);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 250, 0.35),
    0 12px 30px rgba(7, 10, 11, 0.18);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 280ms var(--ease-film),
    box-shadow 280ms ease,
    filter 220ms ease;
}

.opening__copy > a::before {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -34%;
  width: 24%;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(8px);
  transform: skewX(-18deg);
  transition: left 760ms var(--ease-film);
  pointer-events: none;
}

.opening__copy > a:hover::before,
.opening__copy > a:focus-visible::before {
  left: 118%;
}

.opening__copy > a:hover,
.invitation__content > button:hover,
.theater__foot > button:hover,
.opening__copy > a:focus-visible,
.invitation__content > button:focus-visible,
.theater__foot > button:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 250, 0.42),
    0 16px 36px rgba(7, 10, 11, 0.22);
}

.opening__edge {
  position: absolute;
  z-index: 4;
  right: 4.2vw;
  bottom: 3vh;
  left: 4.2vw;
  display: flex;
  justify-content: space-between;
  opacity: var(--hero-copy-opacity);
}

.opening__edge p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.memory-statement {
  position: relative;
  min-height: 170svh;
  overflow: hidden;
  color: var(--black);
  background: var(--bone);
}

.memory-statement__grain {
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.memory-statement__inner {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100vw - 9vw));
  min-height: 170svh;
  margin-inline: auto;
  padding: 17vh 0 14vh;
}

.chapter-label {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--coral);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.chapter-label span {
  color: var(--black);
}

.chapter-label--light {
  color: var(--yellow);
}

.chapter-label--light span {
  color: rgba(255, 255, 255, 0.46);
}

.memory-statement h2 {
  max-width: 1200px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 9.4vw, 150px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.memory-statement__answer {
  width: min(670px, 48vw);
  margin: 50px 0 0 auto;
}

.memory-statement__answer p {
  margin-bottom: 20px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 70px);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.035em;
}

.memory-statement__answer i {
  width: 100%;
  height: 1px;
  display: block;
  background: var(--line-dark);
}

.memory-collage {
  position: relative;
  height: 74vh;
  margin-top: 12vh;
}

.memory-collage__frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 28px 80px rgba(8, 13, 16, 0.18);
  will-change: transform;
}

.memory-collage__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-film);
}

.memory-collage__frame:hover img {
  transform: scale(1.035);
}

.memory-collage__frame figcaption {
  position: absolute;
  right: 15px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.memory-collage__frame--one {
  z-index: 2;
  top: 8%;
  left: 3%;
  width: 38%;
  height: 75%;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.memory-collage__frame--one img {
  object-position: center 34%;
}

.memory-collage__frame--two {
  z-index: 3;
  top: 0;
  left: 36%;
  width: 34%;
  height: 47%;
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(2.5deg);
}

.memory-collage__frame--three {
  z-index: 1;
  right: 3%;
  bottom: 0;
  width: 38%;
  height: 82%;
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(-1.5deg);
}

.worlds {
  position: relative;
  height: 520svh;
  color: var(--white);
  background: var(--black);
}

.worlds__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.worlds__masthead {
  position: absolute;
  z-index: 20;
  top: 13vh;
  left: 4.4vw;
  width: 24vw;
}

.worlds__masthead h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.05em;
}

.worlds__stage {
  position: absolute;
  top: 8.5vh;
  right: 4.4vw;
  bottom: 8.5vh;
  left: 29vw;
  overflow: hidden;
  background: var(--black-soft);
  box-shadow:
    0 0 0 1px rgba(225, 197, 143, 0.14),
    0 28px 80px rgba(0, 0, 0, 0.38);
}

.world {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  pointer-events: none;
  transition:
    clip-path 900ms var(--ease-film),
    opacity 600ms ease;
  will-change: clip-path, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.world.is-before {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.world.is-active {
  z-index: 3;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}

.world.is-after {
  opacity: 0;
  clip-path: inset(100% 0 0 0);
}

.world > img,
.world__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world > img,
.world > .world__photo {
  object-fit: cover;
  /* No scale-up: scaling from center was cropping heads on every service still */
  object-position: center 18%;
  transform: none;
  transition: none;
}

/*
  Landscape service stage + portrait photos.
  Bias toward the upper frame so faces stay in view on desktop and mobile.
  Values are % from the top of the source photo.
*/
/* Landscape ceremony frame: full heads, no vertical crop fight */
.world > .world__photo--wedding {
  object-position: center 42%;
}

/* Full-body office portrait on landscape stage: pin to top so hairline + full face stay in frame */
.world > .world__photo--portrait {
  object-position: center top;
}

/* Walking couple: heads around upper third */
.world > .world__photo--family {
  object-position: center 18%;
}

/* Restored violinist editorial */
.world > .world__photo--editorial {
  object-position: center 14%;
}

.world.is-active > img,
.world.is-active > .world__photo {
  transform: none;
}

.world__shade {
  background:
    linear-gradient(90deg, rgba(6, 12, 15, 0.79) 0%, rgba(6, 12, 15, 0.18) 54%, rgba(6, 12, 15, 0.1)),
    linear-gradient(0deg, rgba(6, 12, 15, 0.89), transparent 54%);
}

.world__copy {
  position: absolute;
  z-index: 3;
  bottom: 7vh;
  left: 5vw;
  max-width: 620px;
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 520ms ease 260ms, transform 800ms var(--ease-film) 220ms;
}

.world.is-active .world__copy {
  opacity: 1;
  transform: translateY(0);
}

.world__copy > p {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.world__copy h3 {
  margin-bottom: 19px;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 98px);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.06em;
}

.world__copy > span {
  max-width: 500px;
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.world__copy button {
  margin-top: 25px;
  padding: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

.world__copy button b {
  color: var(--yellow);
}

.world__ghost {
  position: absolute;
  z-index: 2;
  top: 3vh;
  right: 0.4vw;
  display: block;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(72px, 11vw, 180px);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.07em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translateX(4vw);
  transition: opacity 700ms ease 300ms, transform 1s var(--ease-film) 220ms;
  pointer-events: none;
}

.world.is-active .world__ghost {
  opacity: 0.72;
  transform: translateX(0);
}

.worlds__nav {
  position: absolute;
  z-index: 20;
  bottom: 10vh;
  left: 4.4vw;
  width: 20vw;
  display: grid;
}

.worlds__nav button {
  min-height: 44px;
  padding: 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  color: rgba(255, 255, 255, 0.38);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: 17px;
  text-align: left;
  cursor: pointer;
  transition: color 250ms ease, padding 400ms var(--ease-film);
}

.worlds__nav button span {
  color: inherit;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.worlds__nav button.is-active {
  padding-left: 10px;
  color: var(--white);
}

.worlds__nav button.is-active span {
  color: var(--yellow);
}

.worlds__progress {
  position: absolute;
  z-index: 30;
  right: 4.4vw;
  bottom: 4.5vh;
  left: 29vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.worlds__progress i {
  width: 0;
  height: 100%;
  display: block;
  background: var(--yellow);
}

.worlds__counter {
  position: absolute;
  z-index: 30;
  top: 4vh;
  right: 4.4vw;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--serif);
  font-size: 18px;
}

.worlds__counter span {
  color: var(--yellow);
  font-size: 30px;
}

.light-table {
  position: relative;
  overflow: hidden;
  padding: 16vh 0 18vh;
  background: var(--bone);
}

.light-table__head {
  width: min(1460px, calc(100vw - 9vw));
  margin: 0 auto 10vh;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  column-gap: 10vw;
}

.light-table__head .chapter-label {
  grid-column: 1 / -1;
}

.light-table__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(60px, 7.6vw, 122px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.light-table__head h2 em {
  color: var(--coral);
  font-weight: 400;
}

.light-table__head > p:last-child {
  max-width: 420px;
  margin-bottom: 5px;
  color: #5e696f;
  font-size: 16px;
  line-height: 1.75;
}

.light-table__viewer {
  --gallery-pan-x: 0px;
  --gallery-pan-y: 0px;
  width: calc(100vw - 9vw);
  margin-inline: auto;
}

.light-table__main {
  position: relative;
  width: 100%;
  height: min(76vh, 850px);
  overflow: hidden;
  padding: 0;
  display: block;
  background: var(--black);
  border: 0;
  cursor: none;
}

.light-table__main > img {
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  max-width: none;
  margin: -25px;
  object-fit: cover;
  object-position: center 34%;
  transform: translate3d(var(--gallery-pan-x), var(--gallery-pan-y), 0) scale(1.025);
  transition: opacity 260ms ease, filter 500ms ease;
  will-change: transform;
}

.light-table__main.is-changing > img {
  opacity: 0.35;
  filter: blur(5px);
}

.shutter-wipe {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.light-table__main.is-changing .shutter-wipe {
  animation: shutter-wipe 520ms var(--ease-film);
}

@keyframes shutter-wipe {
  0% { transform: scaleX(0); transform-origin: left; }
  46% { transform: scaleX(1); transform-origin: left; }
  54% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

.light-table__corners {
  position: absolute;
  z-index: 3;
  inset: 28px;
  pointer-events: none;
}

.light-table__corners i {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.7);
}

.light-table__corners i:nth-child(1) { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.light-table__corners i:nth-child(2) { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.light-table__corners i:nth-child(3) { right: 0; bottom: 0; border-right: 1px solid; border-bottom: 1px solid; }
.light-table__corners i:nth-child(4) { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }

.light-table__caption {
  min-height: 100px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line-dark);
}

.light-table__caption > p {
  margin: 0;
  color: #727c81;
  font-family: var(--serif);
  font-size: 18px;
}

.light-table__caption > p span {
  color: var(--coral);
  font-size: 32px;
}

.light-table__caption > div:nth-child(2) {
  display: grid;
}

.light-table__caption strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.light-table__caption div:nth-child(2) span {
  margin-top: 5px;
  color: #677177;
  font-size: 11px;
}

.light-table__controls {
  display: flex;
  gap: 6px;
}

.light-table__controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: transparent;
  border: 1px solid var(--line-dark);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.light-table__controls button:hover {
  color: var(--bone);
  background: var(--black);
}

.contact-strip {
  width: calc(100vw - 9vw);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.contact-strip button {
  position: relative;
  height: clamp(150px, 18vw, 290px);
  overflow: hidden;
  padding: 0;
  background: var(--black);
  border: 0;
  cursor: pointer;
}

.contact-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0) brightness(0.74);
  transition: filter 350ms ease, transform 700ms var(--ease-film);
}

.contact-strip button:nth-child(1) img { object-position: center 28%; }
.contact-strip button:nth-child(2) img { object-position: center; }
.contact-strip button:nth-child(3) img { object-position: center 35%; }
.contact-strip button:nth-child(4) img { object-position: center; }
.contact-strip button:nth-child(5) img { object-position: center 44%; }
.contact-strip button:nth-child(6) img { object-position: center; }

.contact-strip button:hover img,
.contact-strip button.is-active img {
  filter: saturate(1) brightness(0.96);
  transform: scale(1.04);
}

.contact-strip button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 450ms var(--ease-film);
}

.contact-strip button.is-active::after {
  transform: scaleX(1);
}

.contact-strip button > span {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.theater {
  position: relative;
  overflow: hidden;
  padding: 16vh 4.4vw 13vh;
  color: var(--white);
  background: var(--black);
}

.theater__grain {
  opacity: 0.17;
}

.theater__head,
.theater__screen,
.theater__foot {
  position: relative;
  z-index: 2;
}

.theater__head {
  margin-bottom: 8vh;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 5vw;
  align-items: end;
}

.theater__head .chapter-label {
  grid-column: 1 / -1;
}

.theater__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 8.5vw, 135px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.theater__head h2 em {
  color: var(--yellow);
  font-weight: 400;
}

.theater__screen {
  position: relative;
  width: 100%;
  height: min(80vh, 920px);
  overflow: hidden;
  background: #020405;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(225, 197, 143, 0.16),
    0 32px 90px rgba(0, 0, 0, 0.4);
}

.theater__screen video,
.theater__screen-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.theater__screen video {
  object-fit: cover;
  object-position: center;
}

.theater__screen-shade {
  background: rgba(4, 8, 10, 0.36);
  transition: opacity 600ms ease;
}

.theater__screen.is-playing .theater__screen-shade {
  opacity: 0;
}

.sound-gate {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  min-width: min(430px, calc(100% - 40px));
  padding: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--white);
  background: transparent;
  border: 0;
  transform: translate(-50%, -50%);
  text-align: left;
  cursor: pointer;
  transition: opacity 280ms ease, transform 280ms var(--ease-film);
}

.sound-gate.is-playing {
  top: auto;
  bottom: 28px;
  left: 28px;
  min-width: 0;
  transform: none;
  padding: 10px 14px;
  background: rgba(7, 10, 11, 0.55);
  border: 1px solid rgba(255, 254, 250, 0.28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.sound-gate.is-playing .sound-gate__rings {
  width: 48px;
  height: 48px;
}

.sound-gate.is-playing strong {
  font-size: 13px;
}

.sound-gate.is-playing small {
  font-size: 8px;
}

.sound-gate__rings {
  position: relative;
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.sound-gate__rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  animation: sound-ring 2.8s ease-out infinite;
}

.sound-gate__rings i:nth-child(2) {
  animation-delay: 1.4s;
}

@keyframes sound-ring {
  from { transform: scale(0.48); opacity: 0.9; }
  to { transform: scale(1); opacity: 0; }
}

.sound-gate__rings b {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(165deg, #e8d0a4 0%, var(--yellow) 48%, #a87d45 100%);
  border: 1px solid rgba(255, 254, 250, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 250, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.28);
  border-radius: 50%;
  text-indent: 3px;
}

.sound-gate > span:last-child {
  display: grid;
}

.sound-gate strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.sound-gate small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.theater__wave {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 25px;
  left: 28px;
  height: 36px;
  display: flex;
  align-items: end;
  gap: 4px;
  opacity: 0.55;
}

.theater__wave i {
  width: 3px;
  height: 14%;
  background: var(--yellow);
  animation: wave 900ms ease-in-out infinite alternate;
  animation-play-state: paused;
}

.theater__wave i:nth-child(2n) { animation-duration: 700ms; }
.theater__wave i:nth-child(3n) { animation-duration: 1100ms; }
.theater__wave i:nth-child(4n) { animation-duration: 620ms; }
.theater__screen.is-playing .theater__wave i { animation-play-state: running; }

@keyframes wave {
  from { height: 12%; }
  to { height: 100%; }
}

.theater__status {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 70px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.theater__foot {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-bottom: 1px solid var(--line-light);
}

.theater__foot p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.theater__foot p span {
  margin-right: 12px;
  color: var(--coral);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.invitation {
  position: relative;
  min-height: 112svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--black);
}

.invitation > img,
.invitation__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.invitation > img {
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.0);
}

.invitation__shade {
  background:
    linear-gradient(90deg, rgba(5, 10, 13, 0.83), rgba(5, 10, 13, 0.22) 62%),
    linear-gradient(0deg, rgba(5, 10, 13, 0.82), transparent 52%);
}

.invitation__content {
  position: relative;
  z-index: 2;
  width: min(1460px, calc(100vw - 9vw));
  margin-inline: auto;
  padding-bottom: 13vh;
}

.invitation__content h2 {
  max-width: 1100px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(70px, 10vw, 160px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.invitation__content h2 em {
  color: var(--yellow);
  font-weight: 400;
}

.invitation__content > p:not(.chapter-label) {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.invitation__edge {
  position: absolute;
  z-index: 2;
  right: 4.4vw;
  bottom: 5vh;
  margin: 0;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Compact premium footer: large tight lockup fills left, no empty black waste */
.site-footer {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 12px;
  padding: 20px 4.4vw calc(22px + env(safe-area-inset-bottom));
  color: #fffefa;
  background: #070a0b;
  border-top: 1px solid rgba(255, 254, 250, 0.12);
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}

.site-footer__row--brand {
  align-items: center;
  gap: 20px 32px;
}

.site-footer__row--meta {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 254, 250, 0.1);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
  text-decoration: none;
  color: #fffefa;
}

.site-footer__logo {
  display: block;
  width: auto;
  height: clamp(108px, 12.5vw, 148px);
  max-width: min(520px, 58vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

.site-footer__aside {
  display: grid;
  justify-items: end;
  gap: 10px;
  flex: 1 1 280px;
  min-width: min(100%, 280px);
}

.site-footer__tag {
  margin: 0;
  color: #e1c58f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

/* Editorial text links, not generic square chips */
.site-footer__social a {
  position: relative;
  min-height: 0;
  padding: 4px 0 7px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 254, 250, 0.78);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 220ms ease;
}

.site-footer__social a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 197, 143, 0.75), transparent);
  transform: scaleX(0.35);
  transform-origin: center;
  opacity: 0.55;
  transition: transform 320ms var(--ease-film), opacity 220ms ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  color: var(--yellow-soft);
  background: transparent;
}

.site-footer__social a:hover::after,
.site-footer__social a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-footer__services,
.site-footer__copy,
.site-footer__contact {
  margin: 0;
  color: rgba(255, 254, 250, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.site-footer__services {
  flex: 1 1 220px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer__copy {
  flex: 1 1 220px;
  text-align: center;
  color: #fffefa;
  font-weight: 700;
}

.site-footer__contact {
  flex: 1 1 220px;
  text-align: right;
}

.site-footer__contact a {
  color: #e1c58f;
  text-decoration: none;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: #fffefa;
}

.story-bar {
  position: fixed;
  z-index: 140;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 70px;
  padding: 0 12px 0 4.4vw;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  color: var(--white);
  background: rgba(8, 13, 16, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  transform: translateY(105%);
  transition: transform 650ms var(--ease-film);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body.show-story-bar .story-bar {
  transform: translateY(0);
}

.story-bar > div {
  padding: 11px 0 10px;
  display: grid;
  align-content: center;
  /* No hard vertical rule beside the CTA (reads as template chrome). */
  border: 0;
}

.story-bar span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-bar strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.story-bar > button {
  min-width: 188px;
  min-height: 46px;
  margin: 0;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  background: linear-gradient(165deg, #d4b07a 0%, var(--yellow) 48%, #a87d45 100%);
  border: 1px solid rgba(255, 254, 250, 0.22);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 250, 0.32),
    0 8px 22px rgba(0, 0, 0, 0.22);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 280ms var(--ease-film), filter 220ms ease, box-shadow 280ms ease;
}

.story-bar > button:hover,
.story-bar > button:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.atelier {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--black);
  background: var(--paper);
  border: 0;
  overflow: hidden;
}

.atelier[open] {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  animation: atelier-in 750ms var(--ease-film) both;
}

@keyframes atelier-in {
  from { opacity: 0; clip-path: inset(0 0 0 100%); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}

.atelier::backdrop {
  background: rgba(8, 13, 16, 0.85);
}

.atelier__close {
  position: fixed;
  z-index: 10;
  top: 22px;
  right: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border: 0;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}

.atelier__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.atelier__visual > img,
.atelier__visual-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atelier__visual > img {
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.025);
  transition: opacity 350ms ease, transform 900ms var(--ease-film);
}

.atelier__visual.is-changing > img {
  opacity: 0.18;
  transform: scale(1.08);
}

.atelier__visual-shade {
  background: linear-gradient(180deg, rgba(6, 12, 15, 0.05), rgba(6, 12, 15, 0.88));
}

.atelier__visual-copy {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 7vh;
  left: 5vw;
}

.atelier__visual-copy p {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.atelier__visual-copy h2 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.atelier__visual-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.atelier__panel {
  min-width: 0;
  padding: 10vh clamp(38px, 5vw, 84px) 12vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.atelier__panel > h2 {
  margin-bottom: 7vh;
  font-family: var(--serif);
  font-size: clamp(52px, 5.4vw, 88px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.atelier__panel > h2 em {
  color: var(--coral);
  font-weight: 400;
}

.atelier-builder fieldset {
  margin: 0;
  padding: 0 0 5vh;
  border: 0;
}

.atelier-builder fieldset + fieldset {
  padding-top: 5vh;
  border-top: 1px solid var(--line-dark);
}

.atelier-builder legend {
  width: 100%;
  margin-bottom: 22px;
  padding: 0;
  font-family: var(--serif);
  font-size: 25px;
}

.atelier-builder legend span {
  margin-right: 11px;
  color: var(--coral);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.atelier-service {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 36px;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line-dark);
  cursor: pointer;
}

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

.atelier-service input {
  position: absolute;
  opacity: 0;
}

.atelier-service > span {
  display: grid;
}

.atelier-service strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.atelier-service small {
  margin-top: 2px;
  color: #717b80;
  font-size: 9px;
}

.atelier-service em {
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atelier-service > i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  font-style: normal;
  transition: color 220ms ease, background 220ms ease, transform 350ms var(--ease-film);
}

.atelier-service input:checked ~ i {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: rotate(45deg);
}

.atelier-service:focus-within {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.atelier-hours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.atelier-hours label {
  position: relative;
  min-height: 100px;
  cursor: pointer;
}

.atelier-hours input {
  position: absolute;
  opacity: 0;
}

.atelier-hours span {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  color: #6f7a7f;
  border: 1px solid var(--line-dark);
  transition: color 200ms ease, background 200ms ease, border 200ms ease;
}

.atelier-hours b {
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.atelier-hours small {
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atelier-hours input:checked + span {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.atelier-total {
  padding: 4vh 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.atelier-total > div {
  display: grid;
}

.atelier-total > div > span {
  color: var(--coral);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.atelier-total strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: clamp(54px, 5vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.atelier-total strong.is-custom {
  font-size: 46px;
}

.atelier-total small {
  color: #727c81;
  font-size: 8px;
}

.atelier-total > button,
.atelier-inquiry > button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: linear-gradient(165deg, #1a2224 0%, var(--black) 55%, #050708 100%);
  border: 1px solid rgba(225, 197, 143, 0.28);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 250, 0.08),
    0 12px 28px rgba(7, 10, 11, 0.16);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 280ms var(--ease-film), box-shadow 280ms ease, filter 220ms ease;
}

.atelier-total > button:hover,
.atelier-inquiry > button:hover,
.atelier-total > button:focus-visible,
.atelier-inquiry > button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 250, 0.12),
    0 16px 34px rgba(7, 10, 11, 0.2);
}

.atelier-inquiry {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 1s var(--ease-film), opacity 500ms ease, padding 700ms var(--ease-film);
}

.atelier-inquiry.is-revealed {
  max-height: 900px;
  padding-top: 7vh;
  opacity: 1;
}

.atelier-inquiry__head {
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--yellow);
}

.atelier-inquiry__head p {
  margin-bottom: 5px;
  color: var(--coral);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.atelier-inquiry__head output {
  font-family: var(--serif);
  font-size: 18px;
}

.atelier-inquiry > label,
.atelier-inquiry__row label {
  margin-bottom: 22px;
  display: grid;
  gap: 7px;
}

.atelier-inquiry label > span {
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.atelier-inquiry input,
.atelier-inquiry textarea {
  width: 100%;
  padding: 10px 0 12px;
  color: var(--black);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  outline: 0;
}

.atelier-inquiry input:focus,
.atelier-inquiry textarea:focus {
  border-color: var(--coral);
}

.atelier-inquiry textarea {
  resize: vertical;
}

.atelier-inquiry__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.atelier-inquiry > button {
  width: 100%;
  background: var(--coral);
}

.atelier-inquiry > p:last-child {
  margin: 10px 0 0;
  color: #7a858a;
  font-size: 8px;
  text-align: center;
}

.atelier-inquiry > p.is-success {
  padding: 12px;
  color: var(--black);
  background: #dfe8da;
}

.cinema-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 5vh 5vw 8vh;
  color: var(--white);
  background: rgba(8, 13, 16, 0.98);
  border: 0;
}

.cinema-lightbox[open] {
  display: grid;
  grid-template-rows: 1fr auto;
  animation: lightbox-in 500ms var(--ease-film) both;
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cinema-lightbox::backdrop {
  background: var(--black);
}

.cinema-lightbox > button {
  position: fixed;
  z-index: 3;
  top: 22px;
  right: 24px;
  width: 52px;
  height: 52px;
  color: var(--black);
  background: linear-gradient(165deg, #e8d0a4 0%, var(--yellow) 48%, #a87d45 100%);
  border: 1px solid rgba(255, 254, 250, 0.28);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 250, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.25);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

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

.cinema-lightbox p {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: 20px;
  text-align: center;
}

.cursor-orbit::before,
.cursor-orbit::after {
  content: "";
  position: absolute;
  background: currentColor;
  opacity: 0.48;
}

.cursor-orbit::before {
  width: 18px;
  height: 1px;
}

.cursor-orbit::after {
  width: 1px;
  height: 18px;
}

.cursor-orbit span {
  position: relative;
  z-index: 1;
  padding: 3px 5px;
  background: inherit;
}

.aperture-gate {
  --gate-x: 50%;
  --gate-y: 50%;
  position: fixed;
  z-index: 990;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--yellow-soft);
  background: var(--black);
  clip-path: circle(0 at var(--gate-x) var(--gate-y));
  pointer-events: none;
}

.aperture-gate span {
  opacity: 0;
  font-family: var(--serif);
  font-size: clamp(76px, 9vw, 150px);
  font-style: italic;
  line-height: 1;
}

.aperture-gate.is-active {
  animation: aperture-travel 1250ms var(--ease-film) both;
}

.aperture-gate.is-active span {
  animation: aperture-mark 1250ms ease both;
}

@keyframes aperture-travel {
  0% { clip-path: circle(0 at var(--gate-x) var(--gate-y)); }
  44%, 58% { clip-path: circle(160vmax at var(--gate-x) var(--gate-y)); }
  100% { clip-path: circle(0 at 50% 50%); }
}

@keyframes aperture-mark {
  0%, 34%, 70%, 100% { opacity: 0; transform: scale(0.72) rotate(-8deg); }
  46%, 58% { opacity: 1; transform: scale(1) rotate(0); }
}

[data-optical-surface] {
  --lens-x: 66%;
  --lens-y: 45%;
}

[data-optical-surface]::after {
  content: "";
  position: absolute;
  z-index: 16;
  inset: 0;
  background: radial-gradient(280px circle at var(--lens-x) var(--lens-y), rgba(255, 247, 225, 0.16), transparent 72%);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 480ms var(--ease-film);
}

[data-optical-surface].is-lens-active::after,
.worlds__stage:hover::after {
  opacity: 0.75;
}

.opening__media::after {
  z-index: 3;
}

.opening__media:not(.is-lens-active)::after {
  opacity: 0;
}

.focus-reticle {
  position: absolute;
  z-index: 5;
  top: var(--lens-y);
  left: var(--lens-x);
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    top 90ms linear,
    left 90ms linear,
    opacity 420ms var(--ease-film);
  pointer-events: none;
}

.opening__media.is-lens-active .focus-reticle {
  opacity: 1;
}

.focus-reticle::before,
.focus-reticle::after,
.focus-reticle i::before,
.focus-reticle i::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.focus-reticle::before { width: 19px; height: 1px; left: -10px; }
.focus-reticle::after { width: 19px; height: 1px; right: -10px; }
.focus-reticle i::before { width: 1px; height: 19px; top: -10px; }
.focus-reticle i::after { width: 1px; height: 19px; bottom: -10px; }

.focus-reticle span {
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.opening__telemetry {
  position: absolute;
  z-index: 6;
  top: 104px;
  right: 4.4vw;
  left: 4.4vw;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}

.identity-shift {
  position: relative;
  min-height: 118svh;
  padding: 14vh 4.4vw 10vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
  gap: 5.5vw 6vw;
  align-items: center;
  overflow: hidden;
  color: var(--black);
  background:
    radial-gradient(ellipse 50% 42% at 78% 28%, rgba(189, 148, 87, 0.12), transparent 70%),
    linear-gradient(180deg, #f8f3ea 0%, var(--paper) 48%, #f1ebe0 100%);
  border-bottom: 1px solid var(--line-dark);
  isolation: isolate;
}

.identity-shift__glow {
  position: absolute;
  z-index: -1;
  top: -12vw;
  left: 18vw;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 148, 87, 0.16), rgba(189, 148, 87, 0) 70%);
  filter: blur(28px);
  pointer-events: none;
}

.identity-shift__atelier {
  position: relative;
  align-self: stretch;
  min-height: clamp(420px, 62vh, 720px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1.15fr 0.85fr;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 254, 250, 0.55);
  border: 1px solid rgba(7, 10, 11, 0.1);
  box-shadow:
    0 30px 80px rgba(20, 16, 10, 0.08),
    inset 0 1px 0 rgba(255, 254, 250, 0.7);
}

.identity-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.identity-frame--lead {
  grid-column: 1;
  grid-row: 1 / -1;
}

.identity-frame--mid {
  grid-column: 2;
  grid-row: 1;
}

.identity-frame--small {
  grid-column: 2;
  grid-row: 2;
}

.identity-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.02);
  transition: transform 1400ms var(--ease-film), filter 700ms ease;
  filter: saturate(0.94) contrast(1.02);
}

.identity-frame--lead img {
  object-position: center 14%;
}

.identity-frame--mid img {
  object-position: center 22%;
}

.identity-frame--small img {
  object-position: center 16%;
}

.identity-shift__atelier:hover .identity-frame img {
  transform: scale(1.045);
}

.identity-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(7, 10, 11, 0.28) 100%),
    linear-gradient(90deg, rgba(7, 10, 11, 0.08), transparent 38%);
  pointer-events: none;
}

.identity-shift__copy {
  align-self: center;
  max-width: 760px;
  padding-right: 2vw;
}

.identity-shift__copy h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(54px, 6.4vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.identity-shift__copy h2 em,
.worlds__masthead h2 em {
  color: var(--yellow);
  font-weight: 400;
}

.identity-shift__lede {
  max-width: 34ch;
  margin: 0;
  color: rgba(7, 10, 11, 0.62);
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.identity-shift__signal {
  margin-top: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: rgba(7, 10, 11, 0.42);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.identity-shift__signal i {
  height: 1px;
  background: linear-gradient(90deg, rgba(189, 148, 87, 0.55), rgba(7, 10, 11, 0.12));
}

/* Restored Sol interactive spectrum: hover expands each service world */
.spectrum-band {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.visual-spectrum {
  /* Desktop-first: tall cinematic strip (mobile overrides keep their own heights) */
  height: min(64vh, 700px);
  margin: 0;
  display: flex;
  overflow: hidden;
}

.visual-spectrum button {
  --spectrum-x: 50%;
  --spectrum-y: 50%;
  --spectrum-pan-x: 0px;
  --spectrum-pan-y: 0px;
  position: relative;
  min-width: 0;
  padding: 0;
  flex: 1;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: flex 700ms var(--ease-film);
}

.visual-spectrum button::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  background: radial-gradient(220px circle at var(--spectrum-x) var(--spectrum-y), rgba(255, 239, 204, 0.32), transparent 70%);
  mix-blend-mode: screen;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.visual-spectrum button:last-child {
  border-right: 0;
}

.visual-spectrum button:hover,
.visual-spectrum button:focus-visible {
  /* Milder expand so cover-crops do not reframe faces off-canvas. */
  flex: 1.75;
}

.visual-spectrum button:hover::before,
.visual-spectrum button:focus-visible::before {
  opacity: 1;
}

.visual-spectrum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  opacity: 0.64;
  filter: saturate(0.72) contrast(1.06);
  /* Face-safe: never pan or zoom the photo on hover. Expand is flex only. */
  transform: none;
  transition: opacity 500ms ease, filter 500ms ease;
}

/* Face anchors per service still (strip is tall; keep subjects readable idle + hover). */
.visual-spectrum button:nth-child(1) img { object-position: center 40%; }
.visual-spectrum button:nth-child(2) img { object-position: center 38%; }
.visual-spectrum button:nth-child(3) img { object-position: center 18%; }
.visual-spectrum button:nth-child(4) img { object-position: center 32%; }
/* Desk editorial: subject sits lower-right; prior 48%/34% locked onto the window grid and chopped her head. */
.visual-spectrum button:nth-child(5) img { object-position: 68% 58%; }

.visual-spectrum button:hover img,
.visual-spectrum button:focus-visible img,
.visual-spectrum button.is-centered img {
  opacity: 0.96;
  filter: saturate(1) contrast(1.02);
  transform: none;
}

.visual-spectrum button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 11, 0.86), transparent 62%);
}

.visual-spectrum span {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 5px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.15vw, 40px);
  line-height: 1;
  text-align: left;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.visual-spectrum b {
  color: var(--yellow-soft);
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: 0.15em;
}

.js .develop-reveal {
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 900ms var(--ease-film) var(--develop-delay, 0ms),
    filter 900ms var(--ease-film) var(--develop-delay, 0ms),
    transform 1100ms var(--ease-film) var(--develop-delay, 0ms),
    clip-path 1200ms var(--ease-film) var(--develop-delay, 0ms);
}

.js .develop-reveal--frame {
  clip-path: inset(0 0 22% 0);
  filter: saturate(0.4) blur(4px);
  transform: translate3d(0, 48px, 0) scale(0.985);
}

.js .develop-reveal.is-developed {
  opacity: 1;
  filter: none;
  clip-path: inset(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1050px) {
  .cinema-header,
  .cinema-header.is-solid {
    min-height: 72px;
    padding-inline: 24px;
    /* iOS Safari/Brave: backdrop-filter on the header breaks painting and
       stacking of the fixed menu panel nested inside it (panel background
       fails to paint, page content bleeds through). Near-opaque paper reads
       identically on phones and lets the panel render as a true full-screen
       layer. */
    background: rgba(247, 242, 232, 0.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .cinema-menu {
    width: 74px;
    min-height: 44px;
    padding: 7px 0;
    display: grid;
    grid-template-columns: 1fr 24px;
    align-items: center;
    gap: 5px;
    color: var(--black);
    background: transparent;
    border: 0;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .cinema-menu span {
    grid-row: 1 / 3;
  }

  .cinema-menu i {
    height: 1px;
    background: currentColor;
    transition: transform 240ms var(--ease-film);
  }

  .cinema-menu[aria-expanded="true"] i:nth-of-type(1) {
    transform: translateY(3px) rotate(45deg);
  }

  .cinema-menu[aria-expanded="true"] i:nth-of-type(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .cinema-nav {
    position: fixed;
    z-index: 4;
    top: 72px;
    right: 0;
    left: 0;
    /* Explicit viewport height (not bottom:0) keeps the paper full-screen
       regardless of which element Safari treats as the containing block. */
    bottom: auto;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    isolation: isolate;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 48px 24px 110px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transform: translateY(-18px);
    transition: visibility 300ms ease, opacity 300ms ease, transform 450ms var(--ease-film);
  }

  /* Own paint layer: iOS Safari can drop the background of a fixed panel
     nested in the header during the open transition; a child layer never
     fails to paint. Tall enough to back the scrolled menu content too. */
  .cinema-nav::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 300vh;
    background: var(--paper);
  }

  .cinema-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  body.menu-open .cinema-header,
  body.menu-open .cinema-header.is-solid {
    background: #f7f2e8;
  }

  .cinema-nav a {
    min-height: 70px;
    display: flex;
    align-items: center;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
    border-bottom: 1px solid var(--line-dark);
  }

  .cinema-nav > button {
    margin-top: 26px;
    min-height: 58px;
    justify-content: space-between;
  }

  .scroll-pilot {
    display: none;
  }

  .identity-shift {
    grid-template-columns: 1fr;
    gap: 5vh;
  }

  .identity-shift__atelier {
    width: min(100%, 760px);
    min-height: clamp(380px, 52vh, 560px);
  }

  .identity-shift__copy {
    max-width: 820px;
  }

  .visual-spectrum {
    height: 42vh;
  }

  .worlds__masthead {
    left: 24px;
    width: 27vw;
  }

  .worlds__stage {
    right: 24px;
    left: 31vw;
  }

  .worlds__nav {
    left: 24px;
    width: 24vw;
  }

  .worlds__progress {
    right: 24px;
    left: 31vw;
  }

  .atelier[open] {
    grid-template-columns: 0.75fr minmax(520px, 1.25fr);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 70px;
  }

  .cursor-orbit {
    display: none;
  }

  .intro__logo {
    width: min(340px, 78vw);
    max-height: min(42vh, 340px);
  }

  .intro__halo {
    width: min(360px, 80vw);
    height: min(360px, 80vw);
  }

  .intro__meter {
    width: min(150px, 48vw);
    bottom: max(86px, calc(env(safe-area-inset-bottom) + 72px));
  }

  .intro > button {
    right: 50%;
    bottom: max(28px, calc(env(safe-area-inset-bottom) + 18px));
    transform: translate3d(50%, 10px, 0);
  }

  .intro.is-ready > button {
    transform: translate3d(50%, 0, 0);
  }

  .opening__telemetry {
    top: 82px;
    right: 18px;
    left: 18px;
    grid-template-columns: 1fr auto;
  }

  .opening__telemetry span:nth-child(2),
  .opening__telemetry span:nth-child(3) {
    display: none;
  }

  .focus-reticle {
    display: none;
  }

  .identity-shift {
    min-height: auto;
    padding: 0 16px 9vh;
    gap: 0;
  }

  .identity-shift__atelier {
    width: calc(100% + 32px);
    margin-left: -16px;
    min-height: clamp(320px, 48svh, 460px);
    gap: 8px;
    padding: 8px;
    border-right: 0;
    border-left: 0;
  }

  .identity-shift__copy {
    padding: 36px 0 28px;
  }

  .identity-shift__copy .chapter-label {
    margin-bottom: 20px;
  }

  .identity-shift__copy h2 {
    margin-bottom: 18px;
    font-size: clamp(44px, 12.6vw, 62px);
    line-height: 0.92;
    letter-spacing: -0.05em;
  }

  .identity-shift__lede {
    max-width: 34ch;
    font-size: clamp(17px, 4.6vw, 21px);
  }

  .identity-shift__signal {
    margin-top: 26px;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    gap: 8px;
    font-size: 6px;
    letter-spacing: 0.12em;
  }

  .visual-spectrum {
    height: clamp(410px, 56svh, 530px);
    margin-top: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(74vw, 330px);
    gap: 8px;
    overflow-x: auto;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .visual-spectrum::-webkit-scrollbar {
    display: none;
  }

  .visual-spectrum button {
    border: 0;
    scroll-snap-align: start;
  }

  .visual-spectrum button:hover,
  .visual-spectrum button:focus-visible {
    flex: 1;
  }

  .cinema-brand {
    max-width: min(220px, 58vw);
  }

  .cinema-brand__logo {
    height: 50px;
    max-width: min(200px, 54vw);
  }

  .opening {
    height: 165svh;
  }

  .opening__media {
    clip-path: inset(var(--hero-inset-y) 16px);
  }

  .opening__media video {
    object-position: 52% center;
  }

  .opening__hold {
    top: 39%;
    right: 28px;
    width: 68px;
    height: 68px;
  }

  .opening__shade {
    background:
      linear-gradient(90deg, rgba(6, 12, 15, 0.7), rgba(6, 12, 15, 0.16)),
      linear-gradient(0deg, rgba(6, 12, 15, 0.92), transparent 58%);
  }

  .viewfinder {
    inset: 14px;
  }

  .opening__media-note {
    right: 24px;
    bottom: 20px;
    max-width: 190px;
    font-size: 6px;
  }

  .opening__word {
    right: 20px;
    left: 20px;
    font-size: clamp(52px, 16.8vw, 72px);
    letter-spacing: -0.072em;
    white-space: nowrap;
  }

  .opening__word--top {
    top: 11vh;
  }

  .opening__word--bottom {
    bottom: 10vh;
    font-size: clamp(54px, 17.3vw, 74px);
  }

  .opening__copy {
    right: 30px;
    bottom: 18vh;
    left: 30px;
  }

  .opening__copy h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.88;
    letter-spacing: -0.055em;
  }

  .opening__copy > a {
    width: 100%;
  }

  .opening__edge {
    right: 24px;
    bottom: 3vh;
    left: 24px;
  }

  .opening__edge p:first-child {
    display: none;
  }

  .memory-statement,
  .memory-statement__inner {
    min-height: 150svh;
  }

  .memory-statement__inner {
    width: calc(100vw - 32px);
    padding-top: 13vh;
  }

  .memory-statement h2 {
    font-size: clamp(57px, 17vw, 78px);
  }

  .memory-statement__answer {
    width: 82vw;
    margin-top: 32px;
  }

  .memory-statement__answer p {
    font-size: 39px;
  }

  .memory-collage {
    height: 80vh;
    margin-top: 8vh;
  }

  .memory-collage__frame--one {
    top: 0;
    left: 0;
    width: 67%;
    height: 54%;
  }

  .memory-collage__frame--two {
    top: 40%;
    left: 9%;
    width: 60%;
    height: 35%;
  }

  .memory-collage__frame--three {
    right: 0;
    bottom: 0;
    width: 54%;
    height: 62%;
  }

  .worlds {
    height: 500svh;
  }

  .worlds__masthead {
    top: 11vh;
    left: 16px;
    width: auto;
  }

  .worlds__masthead .chapter-label {
    margin-bottom: 8px;
  }

  .worlds__masthead h2 {
    font-size: 40px;
    line-height: 0.9;
  }

  .worlds__stage {
    top: 27vh;
    right: 16px;
    bottom: 13vh;
    left: 16px;
  }

  .world__copy {
    right: 22px;
    bottom: 4vh;
    left: 22px;
  }

  .world__copy h3 {
    margin-bottom: 12px;
    font-size: clamp(44px, 14vw, 62px);
  }

  .world__copy > span {
    display: none;
  }

  .world__copy button {
    margin-top: 16px;
  }

  .world__ghost {
    top: 1vh;
    right: 8px;
    font-size: clamp(52px, 16vw, 84px);
    opacity: 0.28;
  }

  .world.is-active .world__ghost {
    opacity: 0.32;
  }

  .worlds__nav {
    top: 20.5vh;
    right: 16px;
    bottom: auto;
    left: 16px;
    width: auto;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }

  .worlds__nav button {
    min-height: 3px;
    padding: 0;
    display: block;
    overflow: hidden;
    color: transparent;
    border: 0;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0;
  }

  .worlds__nav button span {
    display: none;
  }

  .worlds__nav button.is-active {
    padding: 0;
    background: var(--yellow);
  }

  .worlds__progress {
    right: 16px;
    bottom: 9.5vh;
    left: 16px;
  }

  .worlds__counter {
    top: auto;
    right: 16px;
    bottom: 4vh;
  }

  .light-table {
    padding: 12vh 0 13vh;
  }

  .light-table__head {
    width: calc(100vw - 32px);
    margin-bottom: 7vh;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .light-table__head h2 {
    font-size: clamp(53px, 16vw, 74px);
  }

  .light-table__head > p:last-child {
    font-size: 14px;
  }

  .light-table__viewer {
    width: calc(100vw - 32px);
  }

  .light-table__main {
    height: 66svh;
    cursor: pointer;
  }

  .light-table__main > img {
    object-position: center 35%;
  }

  .light-table__caption {
    min-height: 128px;
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .light-table__caption strong {
    font-size: 21px;
  }

  .light-table__caption div:nth-child(2) span {
    font-size: 9px;
  }

  .light-table__controls {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .contact-strip {
    width: calc(100vw - 16px);
    margin-right: 0;
    margin-left: 16px;
    padding-right: 16px;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .contact-strip::-webkit-scrollbar {
    display: none;
  }

  .contact-strip button {
    width: 118px;
    height: 170px;
    flex: 0 0 auto;
  }

  .theater {
    padding: 12vh 16px 11vh;
  }

  .theater__head {
    margin-bottom: 6vh;
  }

  .theater__head h2 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .theater__screen {
    height: 68svh;
  }

  .sound-gate {
    min-width: 0;
    width: calc(100% - 34px);
    flex-direction: column;
    text-align: center;
    cursor: pointer;
  }

  .sound-gate__rings {
    width: 94px;
    height: 94px;
  }

  .sound-gate strong {
    font-size: 25px;
  }

  .theater__status {
    right: 16px;
    bottom: 62px;
    left: 16px;
    text-align: center;
  }

  .theater__wave {
    right: 16px;
    bottom: 20px;
    left: 16px;
  }

  .theater__foot {
    padding: 24px 0;
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .theater__foot > button {
    width: 100%;
  }

  .invitation {
    min-height: 104svh;
  }

  .invitation > img {
    object-position: center 24%;
  }

  .invitation__content {
    width: calc(100vw - 32px);
    padding-bottom: 13vh;
  }

  .invitation__content h2 {
    font-size: clamp(59px, 17vw, 80px);
  }

  .invitation__content > button {
    width: 100%;
  }

  .invitation__edge {
    display: none;
  }

  .cinema-brand {
    max-width: min(240px, 62vw);
  }

  .cinema-brand__logo {
    height: 52px;
    max-width: min(220px, 58vw);
  }

  .site-footer {
    padding: 18px 16px calc(88px + env(safe-area-inset-bottom));
    gap: 12px;
  }

  .site-footer__row,
  .site-footer__row--brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__logo {
    height: clamp(96px, 26vw, 120px);
    max-width: min(360px, 92vw);
  }

  .site-footer__aside {
    /* Desktop gives this a 280px flex-basis for the row layout; in the
       stacked column that basis becomes HEIGHT and opens a huge dead gap
       between the social links and the meta row. Content-size it. */
    flex: 0 0 auto;
    width: 100%;
    justify-items: start;
    gap: 12px;
  }

  .site-footer__row--brand {
    gap: 18px;
  }

  .site-footer__social {
    justify-content: flex-start;
    gap: 26px;
  }

  .site-footer__row--meta {
    padding-top: 16px;
    gap: 10px;
  }

  .site-footer__services,
  .site-footer__copy,
  .site-footer__contact {
    flex: 1 1 auto;
    width: 100%;
    text-align: left;
  }

  .story-bar {
    min-height: 70px;
    padding-left: 15px;
    grid-template-columns: 1fr auto;
  }

  .story-bar > div {
    padding-right: 15px;
  }

  .story-bar > div:nth-child(2) {
    display: none;
  }

  .story-bar > button {
    min-width: 124px;
    padding-inline: 15px;
  }

  .atelier {
    overflow-y: auto;
  }

  .atelier[open] {
    display: block;
  }

  .atelier__close {
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
  }

  .atelier__visual {
    min-height: 46svh;
  }

  .atelier__visual-copy {
    right: 24px;
    bottom: 35px;
    left: 24px;
  }

  .atelier__visual-copy h2 {
    font-size: 46px;
  }

  .atelier__panel {
    padding: 70px 20px 100px;
    overflow: visible;
  }

  .atelier__panel > h2 {
    margin-bottom: 50px;
    font-size: 53px;
  }

  .atelier-service {
    min-height: 90px;
    grid-template-columns: minmax(0, 1fr) 32px;
  }

  .atelier-service em {
    grid-column: 1;
  }

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

  .atelier-total {
    grid-template-columns: 1fr;
  }

  .atelier-total > button {
    width: 100%;
  }

  .atelier-inquiry__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cinema-lightbox {
    padding: 70px 12px 30px;
  }
}

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

  .opening__echo,
  .opening__temporal-grid {
    display: none;
  }

  .opening__hold {
    display: none;
  }

  .light-table__main,
  .sound-gate {
    cursor: pointer;
  }
}

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

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

  .opening {
    height: 100svh;
  }

  .opening__media {
    clip-path: inset(0);
  }

  .opening__echo,
  .opening__temporal-grid {
    display: none;
  }

  .opening__hold {
    display: none;
  }

  .worlds {
    height: 500svh;
  }
}

body.gallery-open {
  overflow: hidden;
}

.opening__media .opening__echo {
  opacity: 0;
  filter: saturate(0.92) contrast(1.06) brightness(1.02);
  mix-blend-mode: normal;
}

.opening__media.is-lens-active .opening__echo {
  opacity: 0.97;
}

.opening__shade {
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.72), rgba(5, 8, 10, 0.08) 48%, rgba(5, 8, 10, 0.2)),
    linear-gradient(0deg, rgba(5, 8, 10, 0.78), transparent 42%);
}

.opening__word {
  font-size: clamp(104px, 16vw, 260px);
  letter-spacing: -0.07em;
}

.opening__word--top {
  top: 9vh;
  color: rgba(255, 254, 250, 0.94);
}

.opening__word--bottom {
  bottom: 4.5vh;
  color: var(--yellow-soft);
}

.opening__copy {
  bottom: 19vh;
  max-width: 560px;
}

.opening__copy h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 4.9vw, 78px);
}

.opening__copy h1 em {
  color: var(--white);
}

.opening__media-note {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.focus-reticle span {
  width: 90px;
  margin-left: -45px;
  text-align: center;
}

.identity-shift {
  min-height: 112svh;
  padding-top: 12vh;
}

.identity-shift__copy h2 {
  margin-bottom: 24px;
}

.identity-shift__signal {
  margin-top: 38px;
}

.visual-spectrum {
  height: 48vh;
  margin-top: 5vh;
  grid-column: 1 / -1;
}

.world > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: translateZ(0);
  transition: none;
}

.world.is-active > video {
  transform: translateZ(0);
}

.world__copy h3 {
  margin-bottom: 16px;
}

.world__copy button {
  margin-top: 0;
}

.deliveries {
  position: relative;
  overflow: clip;
  color: var(--black);
  background: var(--paper);
  border-top: 1px solid var(--line-dark);
}

.deliveries::before {
  content: "";
  position: absolute;
  top: 18vh;
  right: -20vw;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 148, 87, 0.2), transparent 67%);
  filter: blur(18px);
  pointer-events: none;
}

.deliveries__head {
  position: relative;
  z-index: 2;
  min-height: 70svh;
  padding: 11vh 8vw 7vh;
  display: grid;
  align-content: center;
}

.deliveries__head h2 {
  max-width: 1100px;
  margin: 3vh 0 26px;
  font-family: var(--serif);
  font-size: clamp(76px, 9vw, 152px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.072em;
}

.deliveries__head h2 em {
  color: var(--yellow);
  font-weight: 400;
}

.deliveries__head > p:last-child {
  margin: 0;
  color: rgba(7, 10, 11, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.deliveries__stack {
  position: relative;
  padding-bottom: 13vh;
}

.delivery {
  position: relative;
  height: 116svh;
}

.delivery__portal {
  --delivery-scale: 0.96;
  --delivery-lift: 0px;
  --delivery-split: 0px;
  --delivery-dim: 0.12;
  --portal-x: 50%;
  --portal-y: 50%;
  --portal-pan-x: 0px;
  --portal-pan-y: 0px;
  --portal-pan-x-reverse: 0px;
  --portal-pan-y-reverse: 0px;
  position: sticky;
  top: 7vh;
  width: calc(100% - 8.8vw);
  height: 86svh;
  margin: 0 4.4vw;
  padding: 0;
  display: block;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(225, 197, 143, 0.18);
  box-shadow:
    0 0 0 1px rgba(255, 254, 250, 0.04) inset,
    0 40px 110px rgba(7, 10, 11, 0.32);
  transform: translate3d(0, var(--delivery-lift), 0) scale(var(--delivery-scale));
  transform-origin: center;
  cursor: pointer;
  will-change: transform;
  transition: border-color 400ms ease, box-shadow 400ms ease;
}

.delivery__portal:hover,
.delivery__portal:focus-visible {
  border-color: rgba(225, 197, 143, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 254, 250, 0.06) inset,
    0 48px 120px rgba(7, 10, 11, 0.4);
}

.delivery__portal::before,
.delivery__portal::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.delivery__portal::before {
  opacity: 0;
  background: radial-gradient(330px circle at var(--portal-x) var(--portal-y), rgba(255, 235, 198, 0.28), transparent 72%);
  mix-blend-mode: screen;
  transition: opacity 450ms ease;
}

.delivery__portal::after {
  background:
    linear-gradient(0deg, rgba(4, 7, 8, 0.9), transparent 48%),
    linear-gradient(90deg, rgba(4, 7, 8, 0.24), transparent 40%);
}

.delivery__portal:hover::before,
.delivery__portal:focus-visible::before {
  opacity: 1;
}

.delivery__mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 8px;
  background: var(--black);
}

.delivery__mosaic::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(7, 10, 11, var(--delivery-dim));
  pointer-events: none;
}

.delivery__mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.88) contrast(1.03);
  transition: filter 700ms ease, transform 1.1s var(--ease-film);
  will-change: transform;
}

.delivery__mosaic img:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 11;
  object-position: center 16%;
  transform: translate3d(var(--portal-pan-x), calc(var(--portal-pan-y) + var(--delivery-split)), 0) scale(1.03);
}

.delivery__mosaic img:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1 / 6;
  object-position: center 18%;
  transform: translate3d(var(--portal-pan-x-reverse), calc(var(--portal-pan-y-reverse) - var(--delivery-split)), 0) scale(1.035);
}

.delivery__mosaic img:nth-child(3) {
  grid-column: 7 / 10;
  grid-row: 6 / 11;
  object-position: center 20%;
  transform: translate3d(var(--portal-pan-x), calc(var(--portal-pan-y) + var(--delivery-split)), 0) scale(1.04);
}

.delivery__mosaic img:nth-child(4) {
  grid-column: 10 / 13;
  grid-row: 6 / 11;
  object-position: center 18%;
  transform: translate3d(var(--portal-pan-x-reverse), calc(var(--portal-pan-y-reverse) - var(--delivery-split)), 0) scale(1.04);
}

.delivery__portal:hover .delivery__mosaic img,
.delivery__portal:focus-visible .delivery__mosaic img {
  filter: saturate(1.02) contrast(1.02);
}

.delivery__meta {
  position: absolute;
  z-index: 5;
  right: 4vw;
  bottom: 4.5vh;
  left: 4vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px 30px;
  text-align: left;
}

.delivery__meta small {
  grid-column: 1 / -1;
  color: var(--yellow-soft);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.delivery__meta strong {
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 118px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.065em;
}

.delivery__meta i {
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.delivery--two .delivery__portal {
  background: #17201f;
}

.delivery--three .delivery__portal {
  background: #161216;
}

.gallery-premiere {
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #050708;
  border: 0;
}

.gallery-premiere[open] {
  display: block;
  animation: premiere-enter 700ms var(--ease-film) both;
}

.gallery-premiere::backdrop {
  background: rgba(3, 5, 6, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

@keyframes premiere-enter {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

.gallery-premiere__close {
  position: absolute;
  z-index: 12;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 25px;
  cursor: pointer;
}

.gallery-premiere__head {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  left: 0;
  min-height: 96px;
  padding: 18px 100px 18px 4.4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(rgba(5, 7, 8, 0.95), rgba(5, 7, 8, 0.46), transparent);
}

.gallery-premiere__head div {
  display: flex;
  align-items: baseline;
  gap: 22px;
}

.gallery-premiere__head span,
.gallery-premiere__head a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.gallery-premiere__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.gallery-premiere__head a {
  padding-bottom: 7px;
  color: var(--yellow-soft);
  border-bottom: 1px solid rgba(225, 197, 143, 0.45);
}

.gallery-premiere__stage {
  --premiere-pan-x: 0px;
  --premiere-pan-y: 0px;
  position: absolute;
  top: 94px;
  right: 4.4vw;
  bottom: 112px;
  left: 4.4vw;
  overflow: hidden;
  background: #090c0d;
  cursor: pointer;
}

.gallery-premiere__stage > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate3d(var(--premiere-pan-x), var(--premiere-pan-y), 0) scale(1.012);
  transition: opacity 260ms ease, clip-path 600ms var(--ease-film), filter 600ms ease, transform 900ms var(--ease-film);
}

.gallery-premiere__stage.is-changing > img {
  opacity: 0;
  filter: blur(10px);
  clip-path: inset(0 0 0 100%);
}

.gallery-premiere__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 46%, rgba(5, 7, 8, 0.3)),
    linear-gradient(0deg, rgba(5, 7, 8, 0.72), transparent 24%);
  pointer-events: none;
}

.gallery-premiere__stage > button {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: rgba(5, 7, 8, 0.38);
  border: 1px solid rgba(225, 197, 143, 0.42);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    transform 280ms var(--ease-film),
    box-shadow 280ms ease;
}

.gallery-premiere__stage > button:hover,
.gallery-premiere__stage > button:focus-visible {
  color: var(--black);
  background: linear-gradient(165deg, #e8d0a4 0%, var(--yellow) 100%);
  border-color: rgba(255, 254, 250, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 250, 0.35),
    0 14px 32px rgba(0, 0, 0, 0.3);
  /* Keep existing transform (centered on desktop, bottom dock on mobile). */
  filter: brightness(1.03);
}

.gallery-premiere__stage > button[data-premiere-prev] { left: 24px; }
.gallery-premiere__stage > button[data-premiere-next] { right: 24px; }

.gallery-premiere__progress {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  width: min(340px, 32vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.gallery-premiere__progress i {
  width: 25%;
  height: 100%;
  display: block;
  background: var(--yellow-soft);
  transition: width 520ms var(--ease-film);
}

.gallery-premiere__rail {
  position: absolute;
  right: 4.4vw;
  bottom: 18px;
  left: 4.4vw;
  height: 76px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery-premiere__rail button {
  width: 76px;
  padding: 0;
  overflow: hidden;
  opacity: 0.34;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: width 500ms var(--ease-film), opacity 300ms ease, border-color 300ms ease;
}

.gallery-premiere__rail button.is-active {
  width: 126px;
  opacity: 1;
  border-color: var(--yellow);
}

.gallery-premiere__rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theater__screen video {
  object-position: center;
}

.invitation > img {
  object-position: center 26%;
}

.invitation__content > p:not(.chapter-label) {
  display: none;
}

.story-bar > div:nth-child(2) strong {
  color: var(--yellow-soft);
}

.story-bar {
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) auto;
}

@media (max-width: 900px) {
  .opening__word {
    font-size: clamp(64px, 18.5vw, 100px);
  }

  .opening__word--top {
    top: 15vh;
  }

  .opening__word--bottom {
    bottom: 7vh;
  }

  .opening__copy {
    right: 22px;
    bottom: 20vh;
    left: 22px;
  }

  .opening__copy h1 {
    font-size: clamp(45px, 12vw, 70px);
  }

  .opening__telemetry span:nth-child(2),
  .opening__telemetry span:nth-child(3),
  .opening__media-note {
    display: none;
  }

  .opening__hold {
    display: none;
  }

  .identity-shift {
    min-height: auto;
    padding-top: 0;
  }

  .identity-shift__copy {
    padding-bottom: 18px;
  }

  .visual-spectrum {
    height: clamp(410px, 56svh, 560px);
    margin-top: 0;
  }

  .world > .world__photo--wedding { object-position: center 40%; }
  .world > .world__photo--portrait { object-position: center top; }
  .world > .world__photo--family { object-position: center 16%; }
  .world > .world__photo--editorial { object-position: center 12%; }

  .worlds__masthead h2 {
    font-size: clamp(36px, 9vw, 52px);
    line-height: 0.95;
  }

  .world__copy h3 {
    font-size: clamp(42px, 11vw, 64px);
    line-height: 0.9;
  }

  .world__ghost {
    font-size: clamp(64px, 18vw, 110px);
    opacity: 0.35;
  }

  .js .visual-spectrum.develop-reveal {
    opacity: 1;
    filter: none;
    clip-path: inset(0);
    transform: none;
  }

  .world > video {
    object-position: center;
  }

  .deliveries__head {
    min-height: 62svh;
    padding: 9vh 18px 6vh;
  }

  .deliveries__head h2 {
    margin-top: 4vh;
    font-size: clamp(62px, 17vw, 94px);
  }

  .delivery {
    height: 106svh;
  }

  .delivery__portal {
    top: 10svh;
    width: calc(100% - 32px);
    height: 78svh;
    margin: 0 16px;
  }

  .delivery__mosaic {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
  }

  .delivery__mosaic img:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .delivery__mosaic img:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .delivery__mosaic img:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .delivery__mosaic img:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
  }

  .delivery__meta {
    right: 18px;
    bottom: 25px;
    left: 18px;
    grid-template-columns: 1fr;
  }

  .delivery__meta strong {
    font-size: clamp(48px, 13vw, 74px);
  }

  .delivery__meta i {
    display: none;
  }

  .gallery-premiere__close {
    top: 14px;
    right: 14px;
  }

  .gallery-premiere__head {
    min-height: 112px;
    padding: 16px 70px 16px 16px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .gallery-premiere__head div {
    display: grid;
    gap: 2px;
  }

  .gallery-premiere__head div > span {
    display: none;
  }

  .gallery-premiere__head h2 {
    font-size: 34px;
  }

  .gallery-premiere__stage {
    top: 112px;
    right: 0;
    bottom: 100px;
    left: 0;
  }

  .gallery-premiere__stage > button {
    top: auto;
    bottom: 20px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .gallery-premiere__stage > button[data-premiere-prev] { left: auto; right: 74px; }
  .gallery-premiere__stage > button[data-premiere-next] { right: 18px; }

  .gallery-premiere__progress {
    display: none;
  }

  .gallery-premiere__rail {
    right: 12px;
    bottom: 12px;
    left: 12px;
    height: 72px;
  }

  .gallery-premiere__rail button {
    width: 54px;
  }

  .gallery-premiere__rail button.is-active {
    width: 88px;
  }

  .invitation > img {
    object-position: center 22%;
  }
}

@media (hover: none), (pointer: coarse) {
  .delivery__portal {
    --portal-pan-x: 0px !important;
    --portal-pan-y: 0px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .identity-shift__ticker > div {
    animation: none;
  }

  .delivery__portal {
    --delivery-scale: 1 !important;
    --delivery-lift: 0px !important;
    --delivery-split: 0px !important;
  }

  .gallery-premiere[open] {
    animation: none;
  }
}

.opening__scrub {
  display: none;
}

.gallery-premiere__stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -32px;
  opacity: 0.22;
  background-image: var(--premiere-image);
  background-position: center;
  background-size: cover;
  filter: blur(26px) saturate(0.72) brightness(0.62);
  transform: scale(1.06);
  transition: background-image 320ms ease;
}

.gallery-premiere__stage > img {
  position: relative;
  z-index: 1;
}

.gallery-premiere__wash {
  z-index: 2;
}

.gallery-premiere__beat {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 112px;
  color: var(--yellow-soft);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.gallery-premiere__gesture {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  transition: opacity 420ms ease;
}

.gallery-premiere__stage.has-advanced .gallery-premiere__gesture {
  opacity: 0;
}

@media (max-width: 1050px) {
  .cinema-header {
    min-height: calc(72px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
  }

  .cinema-nav {
    top: calc(72px + env(safe-area-inset-top));
    height: calc(100vh - 72px - env(safe-area-inset-top));
    height: calc(100dvh - 72px - env(safe-area-inset-top));
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .opening__media {
    touch-action: pan-y;
  }

  .opening__scrub {
    position: absolute;
    z-index: 8;
    top: calc(112px + env(safe-area-inset-top));
    right: 22px;
    width: 126px;
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 6px;
    font-weight: 850;
    letter-spacing: 0.17em;
    text-align: right;
    text-transform: uppercase;
    pointer-events: none;
  }

  .opening__scrub i {
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.28);
  }

  .opening__scrub b {
    width: 0;
    height: 100%;
    display: block;
    background: var(--yellow-soft);
  }

  .opening__media.is-scrubbing ~ .opening__scrub {
    color: var(--yellow-soft);
  }

  .opening__media.is-scrubbing ~ .opening__scrub i {
    height: 2px;
  }

  .visual-spectrum {
    grid-auto-columns: min(74vw, 330px);
    padding-inline: 0 18vw;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 0;
    touch-action: pan-x;
  }

  .visual-spectrum button {
    scroll-snap-align: center;
    transform: scale(0.965);
    transform-origin: center;
    transition: transform 520ms var(--ease-film), opacity 400ms ease;
  }

  .visual-spectrum button img {
    opacity: 0.5;
    filter: saturate(0.62) contrast(1.08);
  }

  .visual-spectrum button.is-centered {
    transform: scale(1);
  }

  .visual-spectrum button.is-centered::before {
    opacity: 0.82;
  }

  .visual-spectrum button.is-centered img {
    opacity: 0.96;
    filter: saturate(1) contrast(1.02);
    transform: translate3d(0, 0, 0) scale(1.025);
  }

  .worlds__nav button {
    position: relative;
    min-height: 44px;
    background: transparent;
  }

  .worlds__nav button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%);
  }

  .worlds__nav button.is-active {
    background: transparent;
  }

  .worlds__nav button.is-active::before {
    background: var(--yellow);
    box-shadow: 0 0 18px rgba(189, 148, 87, 0.52);
  }

  .world__copy button {
    min-height: 44px;
  }

  .theater__screen {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .sound-gate {
    gap: 14px;
  }

  .sound-gate__rings {
    width: 68px;
    height: 68px;
  }

  .sound-gate strong {
    font-size: 20px;
  }

  .sound-gate small {
    font-size: 8px;
  }

  .theater__status {
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .gallery-premiere__close {
    top: calc(14px + env(safe-area-inset-top));
  }

  .gallery-premiere__head {
    min-height: calc(108px + env(safe-area-inset-top));
    padding-top: calc(14px + env(safe-area-inset-top));
  }

  .gallery-premiere__stage {
    top: calc(108px + env(safe-area-inset-top));
    bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .gallery-premiere__stage::before {
    opacity: 0.31;
    filter: blur(28px) saturate(0.72) brightness(0.54);
  }

  .gallery-premiere__beat {
    top: 18px;
    bottom: auto;
    left: 18px;
    font-size: 32px;
  }

  .gallery-premiere__gesture {
    top: 25px;
    right: 18px;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .gallery-premiere__rail {
    bottom: calc(12px + env(safe-area-inset-bottom));
    overflow: hidden;
  }

  .story-bar {
    min-height: calc(70px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
  }

  .site-footer {
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
  }

  .atelier__close {
    top: calc(12px + env(safe-area-inset-top));
  }

  .atelier__panel {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .identity-shift__copy h2 {
    font-size: clamp(40px, 12.2vw, 54px);
  }

  .identity-shift__atelier {
    min-height: clamp(300px, 46svh, 400px);
  }

  .identity-shift__seal span {
    letter-spacing: 0.12em;
  }

  .opening__copy h1 {
    font-size: clamp(42px, 11.5vw, 54px);
  }

  .opening__word--bottom {
    font-size: clamp(57px, 17.8vw, 76px);
  }

  .gallery-premiere__rail {
    justify-content: flex-start;
  }

  .gallery-premiere__rail button {
    width: 48px;
    flex: 0 0 auto;
  }

  .gallery-premiere__rail button.is-active {
    width: 76px;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .opening {
    height: 150svh;
  }

  .opening__copy {
    bottom: 13vh;
    max-width: 54vw;
  }

  .opening__copy h1 {
    font-size: clamp(36px, 6.2vw, 54px);
  }

  .opening__word--bottom {
    right: auto;
    bottom: 4vh;
    left: 48vw;
    font-size: 12vw;
  }

  .worlds__masthead {
    top: 16vh;
  }

  .worlds__stage {
    top: 31vh;
    bottom: 9vh;
  }

  .worlds__nav {
    top: 23vh;
  }

  .theater__screen {
    width: min(100%, 980px);
    margin-inline: auto;
  }
}

@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .worlds__masthead {
    display: none;
  }

  .worlds__stage {
    top: 88px;
    right: 24px;
    bottom: 50px;
    left: 210px;
  }

  .worlds__nav {
    top: 88px;
    right: auto;
    bottom: 50px;
    left: 24px;
    width: 160px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .worlds__nav button {
    min-height: 44px;
    padding: 0;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    overflow: visible;
    color: rgba(255, 255, 255, 0.38);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--serif);
    font-size: 15px;
    text-align: left;
  }

  .worlds__nav button::before {
    display: none;
  }

  .worlds__nav button span {
    display: block;
    color: inherit;
    font-family: var(--sans);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: 0.12em;
  }

  .worlds__nav button.is-active {
    padding-left: 8px;
    color: var(--white);
    background: transparent;
  }

  .worlds__nav button.is-active span {
    color: var(--yellow);
  }

  .world__copy {
    right: 32px;
    bottom: 20px;
    left: 32px;
  }

  .world__copy > p {
    margin-bottom: 6px;
    font-size: 7px;
  }

  .world__copy h3 {
    margin-bottom: 4px;
    font-size: clamp(32px, 6vw, 52px);
  }

  .world__copy button {
    margin-top: 4px;
  }

  .world__ghost {
    top: 8px;
    font-size: 82px;
  }

  .worlds__progress {
    right: 24px;
    bottom: 28px;
    left: 210px;
  }

  .worlds__counter {
    display: none;
  }
}

/* -- Desktop cinema elevation (pointer / wide stage only) --
   Mobile layouts above stay as-is. This raises large screens to the same
   intentional premium density without shrinking phone compositions. */
@media (min-width: 1051px) and (hover: hover) and (pointer: fine) {
  .cinema-header {
    min-height: 92px;
    padding-block: 10px;
  }

  .opening__copy {
    left: 11vw;
    bottom: 16vh;
    max-width: 680px;
  }

  .opening__copy h1 {
    font-size: clamp(52px, 4.6vw, 78px);
  }

  .opening__edge {
    right: 5vw;
    bottom: 3.4vh;
    left: 5vw;
  }

  .opening__edge p {
    letter-spacing: 0.14em;
  }

  .opening__hold {
    width: 92px;
    height: 92px;
    border-color: rgba(225, 197, 143, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  }

  .focus-reticle {
    border-color: rgba(225, 197, 143, 0.55);
  }

  .visual-spectrum button:hover,
  .visual-spectrum button:focus-visible {
    flex: 1.9;
  }

  .visual-spectrum span {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }

  .worlds__masthead h2 {
    font-size: clamp(56px, 5.2vw, 88px);
  }

  .world__copy h3 {
    font-size: clamp(56px, 5.6vw, 96px);
  }

  .world__copy button {
    letter-spacing: 0.16em;
    border-bottom-color: rgba(225, 197, 143, 0.55);
  }

  .world__copy button:hover,
  .world__copy button:focus-visible {
    color: var(--yellow-soft);
    border-bottom-color: var(--yellow-soft);
  }

  .delivery {
    height: 120svh;
  }

  .delivery__portal {
    top: 6.5vh;
    height: 87svh;
  }

  .delivery__meta strong {
    font-size: clamp(64px, 6.4vw, 124px);
  }

  .delivery__meta i {
    padding: 0 0 8px;
    border-bottom-color: rgba(225, 197, 143, 0.55);
    color: var(--yellow-soft);
    letter-spacing: 0.16em;
  }

  .theater {
    padding-top: 18vh;
    padding-bottom: 14vh;
  }

  .theater__screen {
    height: min(82vh, 960px);
  }

  .invitation {
    min-height: 118svh;
  }

  .invitation__content h2 {
    font-size: clamp(78px, 9.2vw, 168px);
  }

  .gallery-premiere__stage {
    top: 100px;
    right: 5vw;
    bottom: 120px;
    left: 5vw;
  }

  .gallery-premiere__rail {
    height: 84px;
    bottom: 22px;
  }

  .gallery-premiere__rail button {
    width: 88px;
  }

  .gallery-premiere__rail button.is-active {
    width: 148px;
    border-color: var(--yellow-soft);
  }

  .atelier[open] {
    grid-template-columns: minmax(0, 0.95fr) minmax(620px, 1.05fr);
  }

  .site-footer {
    padding-inline: 4.8vw;
  }
}

/* ==================================================================
   MOBILE CINEMA ELEVATION
   Phone + touch upgrades so the small screen carries the same
   premium light as the desktop cut. Desktop (fine pointer, wide
   viewport) is intentionally untouched by everything below.
   ================================================================== */

.scroll-thread,
.visual-spectrum__progress,
.cinema-nav__meta {
  display: none;
}

@media (max-width: 1050px) {
  /* Gold scroll thread: the phone's frame counter. */
  .scroll-thread {
    position: fixed;
    z-index: 149;
    top: calc(72px + env(safe-area-inset-top));
    right: 0;
    left: 0;
    height: 2px;
    display: block;
    background: linear-gradient(90deg, rgba(232, 208, 164, 0.95), var(--yellow) 55%, #a87d45);
    box-shadow: 0 0 14px rgba(189, 148, 87, 0.4);
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 400ms ease;
    pointer-events: none;
  }

  body.intro-active .scroll-thread,
  body.menu-open .scroll-thread,
  body.atelier-open .scroll-thread,
  body.gallery-open .scroll-thread {
    opacity: 0;
  }

  /* Menu becomes a composed page: staggered entrance + direct contact. */
  .cinema-nav > a,
  .cinema-nav > button,
  .cinema-nav__meta {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 360ms ease, transform 560ms var(--ease-film);
  }

  .cinema-nav.is-open > a,
  .cinema-nav.is-open > button,
  .cinema-nav.is-open .cinema-nav__meta {
    opacity: 1;
    transform: translateY(0);
  }

  .cinema-nav.is-open > a:nth-of-type(1) { transition-delay: 70ms; }
  .cinema-nav.is-open > a:nth-of-type(2) { transition-delay: 140ms; }
  .cinema-nav.is-open > a:nth-of-type(3) { transition-delay: 210ms; }
  .cinema-nav.is-open > button { transition-delay: 290ms; }
  .cinema-nav.is-open .cinema-nav__meta { transition-delay: 370ms; }

  .cinema-nav__meta {
    margin-top: auto;
    padding-top: 26px;
    display: grid;
    gap: 2px;
    border-top: 1px solid var(--line-dark);
  }

  .cinema-nav__meta > p {
    margin: 0 0 10px;
    color: var(--coral);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .cinema-nav__meta > a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    border: 0;
    color: rgba(7, 10, 11, 0.82);
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-transform: none;
  }

  .cinema-nav__social {
    margin-top: 14px;
    display: flex;
    gap: 28px;
  }

  .cinema-nav__social a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 0;
    border-bottom: 1px solid rgba(189, 148, 87, 0.55);
    color: rgba(7, 10, 11, 0.62);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
}

@media (max-width: 900px) {
  /* Keep both telemetry markers — two words are worth their space. */
  .opening__telemetry span:nth-child(2) {
    display: inline;
  }

  /* Tap-to-focus: the phone's temporal lens. */
  .opening__media.is-tap-focus .focus-reticle {
    display: grid;
    opacity: 1;
    animation: reticle-pull 760ms var(--ease-film);
  }

  .opening__media.is-tap-focus::after {
    opacity: 0.85;
  }

  /* Hero CTA breathes a shine sweep so the gold reads as metal, not flat. */
  .opening__copy > a::before {
    animation: cta-shine 5.6s var(--ease-film) 2.2s infinite;
  }

  /* Service stage obeys horizontal swipes. */
  .worlds__stage {
    touch-action: pan-y;
  }

  /* Gallery portals light up as they hold the frame (no hover on glass). */
  .delivery__portal.is-focus {
    border-color: rgba(225, 197, 143, 0.5);
    box-shadow:
      0 0 0 1px rgba(255, 254, 250, 0.07) inset,
      0 34px 100px rgba(7, 10, 11, 0.44);
  }

  .delivery__portal.is-focus::before {
    opacity: 0.9;
  }

  .delivery__portal.is-focus .delivery__mosaic img {
    filter: saturate(1.02) contrast(1.02);
  }

  /* “Enter gallery” returns on phones as a gold seal — the tap affordance. */
  .delivery__meta i {
    min-height: 38px;
    margin-top: 16px;
    padding: 0 18px 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: start;
    color: var(--black);
    background: linear-gradient(165deg, #e8d0a4 0%, var(--yellow) 52%, #c49a5f 100%);
    border: 1px solid rgba(255, 254, 250, 0.32);
    border-radius: 999px;
    box-shadow:
      inset 0 1px 0 rgba(255, 254, 250, 0.4),
      0 10px 26px rgba(0, 0, 0, 0.32);
    font-size: 7px;
    letter-spacing: 0.16em;
  }

  /* Reclaim the dead band under the footer. */
  body {
    padding-bottom: 0;
  }

  .site-footer {
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 760px) {
  /* Carousel progress: one gold hairline tracking the swipe. */
  .visual-spectrum__progress {
    height: 1px;
    margin: 16px 16px 18px;
    display: block;
    overflow: hidden;
    background: rgba(7, 10, 11, 0.14);
  }

  .visual-spectrum__progress i {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(90deg, var(--yellow), #a87d45);
    transform: scaleX(0);
    transform-origin: left;
  }
}

@media (hover: none) {
  /* Pressed states: gold answers touch the way it answers hover. */
  .opening__copy > a:active,
  .invitation__content > button:active,
  .theater__foot > button:active,
  .cinema-nav > button:active,
  .story-bar > button:active,
  .atelier-total > button:active,
  .atelier-inquiry > button:active {
    transform: translateY(1px) scale(0.984);
    filter: brightness(1.07);
    transition-duration: 130ms;
  }

  .worlds__nav button:active::before {
    background: var(--yellow-soft);
  }

  .world__copy button:active {
    color: var(--yellow-soft);
    border-bottom-color: var(--yellow-soft);
  }

  .delivery__portal:active {
    border-color: rgba(225, 197, 143, 0.62);
  }

  /* iOS form fields: strip UA chrome so the paper stays couture. */
  .atelier-inquiry input,
  .atelier-inquiry textarea {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
  }

  .atelier-inquiry input[type="date"] {
    min-height: 42px;
  }

  /* Comfortable thumb targets: text links keep their editorial look,
     the touch area grows invisibly. */
  .site-footer__social a,
  .site-footer__contact a,
  .cinema-nav__social a,
  .gallery-premiere__head a {
    position: relative;
  }

  .site-footer__social a::before,
  .site-footer__contact a::before,
  .cinema-nav__social a::before,
  .gallery-premiere__head a::before {
    content: "";
    position: absolute;
    inset: -12px -8px;
  }
}

@keyframes cta-shine {
  0% { left: -34%; }
  16% { left: 118%; }
  100% { left: 118%; }
}

@keyframes reticle-pull {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.55);
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ==================================================================
   MOBILE FINAL CUT
   A faster editorial rhythm for phones. The desktop composition stays
   untouched while touch devices avoid duplicate scale, expensive blur,
   and gestures that compete with vertical scrolling.
   ================================================================== */

@media (max-width: 760px) {
  html {
    scroll-behavior: auto;
    scroll-padding-top: 64px;
  }

  body {
    min-width: 0;
  }

  .cinema-header,
  .cinema-header.is-solid {
    min-height: 64px;
    padding-inline: 16px;
  }

  .cinema-brand__logo {
    height: 44px;
    max-width: 172px;
  }

  .cinema-menu {
    width: 70px;
    min-height: 44px;
  }

  .cinema-nav {
    top: calc(64px + env(safe-area-inset-top));
    height: calc(100dvh - 64px - env(safe-area-inset-top));
    padding: 30px 18px calc(86px + env(safe-area-inset-bottom));
  }

  .cinema-nav a {
    min-height: 62px;
    font-size: 27px;
  }

  .scroll-thread {
    top: calc(64px + env(safe-area-inset-top));
  }

  .opening {
    height: 140svh;
  }

  .opening__sticky {
    height: 100dvh;
  }

  .opening__media {
    clip-path: inset(var(--hero-inset-y) 10px);
  }

  .opening__telemetry {
    top: 74px;
    right: 15px;
    left: 15px;
  }

  .opening__scrub {
    display: none;
  }

  .opening__copy {
    right: 20px;
    bottom: 17vh;
    left: 20px;
  }

  .opening__eyebrow {
    margin-bottom: 14px;
    font-size: 6px;
    letter-spacing: 0.15em;
  }

  .opening__copy h1 {
    margin-bottom: 19px;
    font-size: clamp(40px, 11.4vw, 52px);
    line-height: 0.9;
  }

  .opening__copy > a {
    min-height: 52px;
  }

  .opening__word--bottom {
    right: 14px;
    bottom: 5.2vh;
    left: 14px;
    font-size: clamp(54px, 17.1vw, 72px);
  }

  .opening__edge {
    right: 16px;
    bottom: 2vh;
    left: 16px;
  }

  .spectrum-band {
    padding: 10px 0 12px;
  }

  .visual-spectrum {
    height: 210px;
    grid-auto-columns: min(44vw, 176px);
    gap: 6px;
    padding-inline: 12px;
    scroll-padding-inline: 12px;
    scroll-snap-type: x proximity;
  }

  .visual-spectrum button {
    transform: none;
    scroll-snap-align: start;
  }

  .visual-spectrum button img,
  .visual-spectrum button.is-centered img {
    opacity: 0.9;
    filter: saturate(0.9) contrast(1.03);
    transform: none;
  }

  .visual-spectrum span {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 3px;
    font-size: 20px;
  }

  .visual-spectrum b {
    font-size: 6px;
  }

  .visual-spectrum__progress {
    margin: 9px 12px 0;
  }

  .worlds {
    height: 445svh;
  }

  .worlds__sticky {
    top: 64px;
    height: calc(100dvh - 64px);
  }

  .worlds__masthead {
    top: 12px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .worlds__masthead .chapter-label {
    margin-bottom: 4px;
  }

  .worlds__masthead h2 {
    font-size: clamp(29px, 8vw, 34px);
    line-height: 0.92;
    letter-spacing: -0.045em;
  }

  .worlds__masthead h2 br {
    display: none;
  }

  .worlds__masthead h2 em {
    margin-left: 0.18em;
  }

  .worlds__nav {
    top: 78px;
    right: 16px;
    left: 16px;
  }

  .worlds__stage {
    top: 100px;
    right: 12px;
    bottom: 68px;
    left: 12px;
    box-shadow: 0 0 0 1px rgba(225, 197, 143, 0.17);
  }

  .world__shade {
    background:
      linear-gradient(90deg, rgba(6, 12, 15, 0.46), rgba(6, 12, 15, 0.04) 64%),
      linear-gradient(0deg, rgba(6, 12, 15, 0.96), rgba(6, 12, 15, 0.04) 64%);
  }

  .world__copy {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .world__copy p {
    margin-bottom: 7px;
    color: var(--yellow-soft);
    font-size: 6px;
    letter-spacing: 0.14em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  }

  .world__copy h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: clamp(38px, 10.7vw, 47px);
    line-height: 0.86;
    text-shadow: 0 5px 28px rgba(0, 0, 0, 0.58);
  }

  .world__copy button {
    min-height: 44px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.9);
  }

  .world__ghost {
    top: 8px;
    right: 8px;
    font-size: clamp(46px, 13vw, 60px);
    opacity: 0.13;
  }

  .world.is-active .world__ghost {
    opacity: 0.16;
  }

  .worlds__progress,
  .worlds__counter {
    display: none;
  }

  .story-bar {
    min-height: calc(62px + env(safe-area-inset-bottom));
    padding: 0 0 env(safe-area-inset-bottom) 13px;
    border-top-color: rgba(225, 197, 143, 0.38);
    background: rgba(7, 10, 11, 0.98);
  }

  .story-bar strong {
    max-width: 150px;
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .story-bar > button {
    min-width: 118px;
    min-height: 44px;
    padding-inline: 13px;
    border-radius: 0;
    font-size: 7px;
  }

  .deliveries__head {
    min-height: 46svh;
    padding: 8vh 16px 5vh;
  }

  .deliveries__head h2 {
    margin-top: 3vh;
    font-size: clamp(50px, 14vw, 66px);
    line-height: 0.86;
  }

  .deliveries__stack {
    padding-bottom: 4vh;
  }

  .delivery {
    height: 94svh;
  }

  .delivery__portal {
    top: 78px;
    width: calc(100% - 24px);
    height: calc(100dvh - 100px);
    margin: 0 12px;
    transform: none;
    will-change: auto;
  }

  .delivery__mosaic img {
    will-change: auto;
  }

  .delivery__meta {
    right: 16px;
    bottom: 18px;
    left: 16px;
  }

  .delivery__meta strong {
    font-size: clamp(45px, 12.5vw, 60px);
  }

  .delivery__meta i {
    min-height: 36px;
    margin-top: 11px;
    border-radius: 0;
  }

  .theater {
    padding: 9vh 12px 8vh;
  }

  .theater__head {
    margin-bottom: 4vh;
  }

  .theater__head h2 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .theater__foot p {
    display: grid;
    gap: 5px;
    font-size: 10px;
    line-height: 1.55;
  }

  .theater__foot p span {
    margin-right: 0;
  }

  .invitation {
    min-height: 94svh;
  }

  .invitation__content {
    padding-bottom: 9vh;
  }

  .invitation__content h2 {
    font-size: clamp(52px, 15vw, 68px);
  }

  .site-footer__social a,
  .site-footer__contact a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .site-footer__social a {
    min-width: 44px;
    justify-content: center;
  }

  .js .develop-reveal,
  .js .develop-reveal--frame {
    filter: none;
    clip-path: inset(0);
    transform: translate3d(0, 18px, 0);
    transition:
      opacity 500ms ease var(--develop-delay, 0ms),
      transform 700ms var(--ease-film) var(--develop-delay, 0ms);
  }

  .js .develop-reveal.is-developed {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  html {
    scroll-behavior: auto;
  }

  .opening {
    height: 132svh;
  }

  .worlds {
    height: 430svh;
  }

  .delivery__portal {
    transform: none;
    will-change: auto;
  }

  .opening__scrub {
    display: none;
  }

  .site-footer__social a,
  .site-footer__contact a {
    min-height: 44px;
  }

  .world__copy button {
    min-height: 46px;
  }

  .site-footer__social a {
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-footer__contact a {
    display: inline-flex;
    align-items: center;
  }
}
