:root {
  color-scheme: dark;
  --black: #060504;
  --espresso: #120d0a;
  --espresso-2: #1b120d;
  --panel: rgba(255, 248, 237, 0.07);
  --panel-strong: rgba(255, 248, 237, 0.12);
  --line: rgba(237, 227, 208, 0.14);
  --line-strong: rgba(237, 227, 208, 0.26);
  --line-warm: rgba(201, 116, 42, 0.48);
  --champagne: #ede3d0;
  --white: #fff8ed;
  --muted: #b9ad9f;
  --orange: #c9742a;
  --orange-hot: #ffb25e;
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.52);
  --radius: 8px;
  --max: 1180px;
  --header-height: 88px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cinema-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 6%, rgba(201, 116, 42, 0.2), transparent 30rem),
    linear-gradient(180deg, #0e0a07 0%, var(--black) 34%, #0b0806 100%);
  color: var(--champagne);
  font-family: var(--sans);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(237, 227, 208, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 227, 208, 0.026) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

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

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

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

h2 {
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.5vw, 6.9rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.section-shell {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: calc(var(--page-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--orange-hot), var(--orange));
  box-shadow: 0 0 22px rgba(255, 178, 94, 0.54);
  transform-origin: left;
}

.story-thread {
  position: fixed;
  top: 50%;
  right: max(22px, calc((100vw - 1320px) / 2));
  z-index: 24;
  display: grid;
  grid-template-columns: 16px auto;
  gap: 14px;
  align-items: center;
  color: rgba(237, 227, 208, 0.38);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-50%);
  pointer-events: none;
}

.story-thread-line {
  position: relative;
  width: 1px;
  height: 260px;
  overflow: hidden;
  background: rgba(237, 227, 208, 0.16);
}

.story-thread-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--page-progress, 0) * 100%);
  background: linear-gradient(180deg, var(--orange-hot), var(--orange));
  box-shadow: 0 0 20px rgba(255, 178, 94, 0.5);
}

.story-thread ol {
  display: grid;
  gap: 19px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-thread li {
  position: relative;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.story-thread li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 178, 94, 0.48);
  border-radius: 50%;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.story-thread li.is-past,
.story-thread li.is-active {
  color: var(--orange-hot);
}

.story-thread li.is-active {
  transform: translateX(-6px);
}

.story-thread li.is-active::before {
  border-color: var(--orange-hot);
  background: var(--orange-hot);
  box-shadow: 0 0 18px rgba(255, 178, 94, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1260px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 12px -12px;
  z-index: -1;
  border: 1px solid rgba(237, 227, 208, 0.1);
  border-radius: 999px;
  background: rgba(6, 5, 4, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled::before {
  border-color: rgba(255, 178, 94, 0.22);
  background: rgba(6, 5, 4, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: clamp(104px, 9vw, 132px);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.48));
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.primary-nav a:hover,
.footer-links a:hover {
  color: var(--white);
}

.nav-cta,
.button,
.menu-toggle {
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line-warm);
  background: rgba(201, 116, 42, 0.15);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-cta::after {
  content: "↗";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 248, 237, 0.07);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

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

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

.hero {
  --scene-y: 0px;
  --scene-y-soft: 0px;
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6, 5, 4, 0.97) 0%, rgba(6, 5, 4, 0.76) 44%, rgba(6, 5, 4, 0.22) 100%),
    linear-gradient(180deg, rgba(6, 5, 4, 0.18) 0%, rgba(6, 5, 4, 0.88) 100%);
}

.hero-media > img,
.hero-scene,
.hero-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  filter: saturate(0.92) contrast(1.12) brightness(1.08);
  transform: scale(1.06) translate3d(0, var(--scene-y), 0);
  transform-origin: center;
  will-change: transform;
}

.hero-media > img {
  z-index: 0;
}

.hero-scene {
  z-index: 1;
  margin: 0;
  opacity: 0;
  animation: heroScene 24s infinite;
}

.hero-scene img {
  transform: none;
}

.hero-scene-one {
  opacity: 1;
  animation-delay: 0s;
}

.hero-scene-two {
  animation-delay: 6s;
}

.hero-scene-two img {
  object-position: 54% 42%;
  filter: saturate(0.12) contrast(1.22) brightness(0.88);
}

.hero-scene-three {
  animation-delay: 12s;
}

.hero-scene-three img {
  object-position: 74% 42%;
  filter: sepia(0.18) saturate(0.82) contrast(1.2) brightness(0.82);
}

.hero-scene-four {
  animation-delay: 18s;
}

.hero-scene-four img {
  object-position: 54% 38%;
  filter: sepia(0.28) saturate(0.58) contrast(1.18) brightness(0.76);
}

@keyframes heroScene {
  0%,
  21% {
    opacity: 1;
  }

  26%,
  100% {
    opacity: 0;
  }
}

.hero-shell {
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0 42px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange-hot);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-title {
  --scroll-y: var(--scene-y-soft);
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(4.25rem, 9.4vw, 10.4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.84;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) auto;
  align-items: end;
  gap: clamp(24px, 7vw, 96px);
  max-width: 1180px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-lower p {
  max-width: 760px;
  margin: 0;
  color: var(--champagne);
  font-size: clamp(1.18rem, 2.2vw, 1.65rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 248, 237, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  border-color: var(--line-warm);
  background: linear-gradient(135deg, var(--orange), #7c3e19);
  color: var(--white);
  box-shadow: 0 20px 64px rgba(201, 116, 42, 0.26);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 248, 237, 0.06);
  color: var(--white);
}

.cinema {
  --scene-y: 0px;
  --scene-y-soft: 0px;
  position: relative;
  padding: 118px max(22px, calc((100vw - 1260px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 30%, rgba(201, 116, 42, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 54%, rgba(255, 178, 94, 0.09), transparent 24rem),
    rgba(6, 5, 4, 0.74);
}

.structure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 0.92fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.cinema-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.cinema-copy .button {
  margin-top: 34px;
}

.structure-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    #0b0806;
  box-shadow: var(--shadow);
  transform: translate3d(0, var(--scene-y-soft), 0);
  will-change: transform;
  isolation: isolate;
}

.structure-map::before {
  content: "";
  position: absolute;
  inset: 13%;
  z-index: 2;
  border: 1px solid rgba(237, 227, 208, 0.08);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(237, 227, 208, 0.14) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(237, 227, 208, 0.14) 50%, transparent 51%);
  opacity: 0.75;
  pointer-events: none;
}

.structure-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 116, 42, 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(6, 5, 4, 0.16), rgba(6, 5, 4, 0.72)),
    linear-gradient(90deg, rgba(6, 5, 4, 0.82), rgba(6, 5, 4, 0.1), rgba(6, 5, 4, 0.82));
  pointer-events: none;
}

.scroll-film-fallback,
.scroll-film-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scroll-film-fallback {
  z-index: 0;
  object-fit: cover;
  opacity: 0.72;
  filter: sepia(0.18) saturate(0.8) contrast(1.15) brightness(0.75);
}

.scroll-film-canvas {
  z-index: 0;
  opacity: 0;
  filter: sepia(0.18) saturate(0.82) contrast(1.18) brightness(0.76);
  transition: opacity 320ms ease;
}

.scroll-film-canvas.is-ready {
  opacity: 0.82;
}

.scroll-film-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  display: grid;
  gap: 5px;
  max-width: 180px;
  padding: 14px 16px;
  border: 1px solid rgba(237, 227, 208, 0.13);
  border-radius: 8px;
  background: rgba(6, 5, 4, 0.58);
  backdrop-filter: blur(14px);
}

.scroll-film-label span {
  color: var(--orange-hot);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-film-label strong {
  color: var(--champagne);
  font-size: 0.88rem;
  line-height: 1.2;
}

.map-thread {
  position: absolute;
  inset: 13%;
  z-index: 2;
  border-radius: 50%;
  background:
    conic-gradient(from -90deg, rgba(255, 178, 94, 0.94) calc(var(--map-progress, 0) * 360deg), transparent 0),
    radial-gradient(circle, transparent 62%, rgba(255, 178, 94, 0.14) 63%, transparent 64%);
  opacity: calc(0.68 + (var(--map-glow, 0) * 0.22));
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle, transparent 59%, #000 60%, #000 62%, transparent 63%);
  filter: drop-shadow(0 0 calc(14px + (var(--map-glow, 0) * 28px)) rgba(255, 178, 94, 0.42));
}

.map-core {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(52%, 290px);
  aspect-ratio: 1;
  border: 1px solid var(--line-warm);
  border-radius: 50%;
  background: rgba(6, 5, 4, 0.74);
  text-align: center;
  box-shadow:
    0 0 calc(70px + (var(--map-glow, 0) * 50px)) rgba(201, 116, 42, calc(0.2 + (var(--map-glow, 0) * 0.24))),
    inset 0 0 calc(40px + (var(--map-glow, 0) * 28px)) rgba(255, 178, 94, calc(0.06 + (var(--map-glow, 0) * 0.1)));
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.map-core::before {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 178, 94, 0.34), transparent 64%);
  opacity: var(--map-glow, 0);
  transform: scale(calc(0.82 + (var(--map-glow, 0) * 0.2)));
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  pointer-events: none;
}

.map-core span,
.map-core em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-core strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.86;
  text-shadow:
    0 0 calc(var(--map-glow, 0) * 18px) rgba(255, 248, 237, 0.72),
    0 0 calc(var(--map-glow, 0) * 44px) rgba(255, 178, 94, 0.55);
  transition:
    color 260ms ease,
    text-shadow 260ms ease,
    transform 260ms ease;
}

.cinema.is-map-complete .map-core {
  border-color: rgba(255, 178, 94, 0.72);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 178, 94, 0.14), transparent 58%),
    rgba(6, 5, 4, 0.78);
}

.cinema.is-map-complete .map-core strong {
  color: #fff8ed;
  transform: scale(1.035);
}

.cinema.is-map-complete .map-node-four {
  border-color: rgba(255, 178, 94, 0.82);
  box-shadow:
    0 0 26px rgba(255, 178, 94, 0.24),
    inset 0 1px 0 rgba(255, 178, 94, 0.22);
}

.map-ring {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(237, 227, 208, 0.12);
  border-radius: 50%;
  transform: rotate(calc(var(--page-progress, 0) * 180deg));
  transition: transform 120ms linear;
}

.map-ring-one {
  width: 66%;
  aspect-ratio: 1;
}

.map-ring-two {
  width: 88%;
  aspect-ratio: 1;
  border-color: rgba(201, 116, 42, 0.22);
  transform: rotate(calc(var(--page-progress, 0) * -220deg));
}

.map-node {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(237, 227, 208, 0.16);
  border-radius: 999px;
  background: rgba(6, 5, 4, 0.68);
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition:
    border-color 240ms ease,
    background 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.map-node.is-active {
  border-color: rgba(255, 178, 94, 0.72);
  background: rgba(201, 116, 42, 0.2);
  color: var(--white);
  box-shadow: 0 0 28px rgba(255, 178, 94, 0.18);
}

.map-node-one {
  top: 13%;
  left: 50%;
  transform: translateX(-50%);
}

.map-node-two {
  right: 8%;
  top: 48%;
  transform: translateY(-50%);
}

.map-node-three {
  left: 8%;
  top: 48%;
  transform: translateY(-50%);
}

.map-node-four {
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
}

.cinema-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.cinema-step {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.035);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.cinema-step:hover {
  border-color: rgba(255, 178, 94, 0.36);
  background: rgba(201, 116, 42, 0.1);
  transform: translateY(-4px);
}

.cinema-step.is-active {
  border-color: rgba(255, 178, 94, 0.46);
  background:
    linear-gradient(180deg, rgba(201, 116, 42, 0.18), rgba(255, 248, 237, 0.035)),
    rgba(255, 248, 237, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 178, 94, 0.28);
}

.cinema-step span,
.system-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-hot);
  font-size: 0.85rem;
  font-weight: 900;
}

.cinema-step p {
  margin: 0;
  color: var(--muted);
}

.partner {
  --scene-y: 0px;
  --scene-y-reverse: 0px;
  padding: 126px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.36fr);
  align-items: end;
  gap: 52px;
  margin-bottom: 54px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.partner-head p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.partner-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.partner-photo-grid {
  --scroll-y: var(--scene-y-reverse);
  position: sticky;
  top: 122px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(178px, 1fr);
  gap: 12px;
  margin: 0;
}

.partner-photo {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--espresso);
  box-shadow: var(--shadow);
}

.partner-photo-large {
  grid-row: span 2;
  min-height: 454px;
}

.partner-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 5, 4, 0.08), rgba(6, 5, 4, 0.82)),
    linear-gradient(120deg, rgba(201, 116, 42, 0.22), transparent 58%);
}

.partner-photo img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.65) contrast(1.16);
  transition:
    filter 260ms ease,
    transform 320ms ease;
}

.partner-photo.is-active img,
.partner-photo:hover img {
  filter: saturate(0.82) contrast(1.12);
  transform: scale(1.035);
}

.partner-photo.is-active {
  border-color: rgba(255, 178, 94, 0.38);
}

.partner-photo:nth-child(1) img {
  object-position: 50% 38%;
}

.partner-photo:nth-child(2) img {
  object-position: 48% 42%;
  filter: sepia(0.15) saturate(0.86) contrast(1.18) brightness(0.9);
}

.partner-photo:nth-child(3) img {
  object-position: 50% 38%;
  filter: saturate(0.5) contrast(1.12) brightness(0.86);
}

.partner-photo:nth-child(4) img {
  object-position: 52% 44%;
  filter: sepia(0.22) saturate(0.5) contrast(1.14) brightness(0.82);
}

.partner-photo:nth-child(5) img {
  object-position: 54% 38%;
  filter: sepia(0.2) saturate(0.52) contrast(1.16) brightness(0.86);
}

.partner-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  margin: 0;
}

.partner-photo figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-hot);
  font-size: 0.72rem;
  font-weight: 900;
}

.partner-photo figcaption strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2.2vw, 2.15rem);
  font-weight: 800;
  line-height: 0.94;
  text-wrap: balance;
}

.partner-photo-large figcaption {
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.partner-photo-large figcaption strong {
  font-size: clamp(2rem, 3.8vw, 3.55rem);
}

.partner-list {
  border-top: 1px solid var(--line);
}

.partner-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(24px, 4vw, 38px) 0;
  border-bottom: 1px solid var(--line);
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}

.partner-list article:hover {
  border-color: rgba(255, 178, 94, 0.42);
  transform: translateX(8px);
}

.partner-list article.is-active {
  border-color: rgba(255, 178, 94, 0.42);
  background: linear-gradient(90deg, rgba(201, 116, 42, 0.1), transparent 60%);
  transform: translateX(8px);
}

.partner-list span {
  color: var(--orange-hot);
  font-size: 0.84rem;
  font-weight: 900;
}

.partner-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  font-weight: 800;
  line-height: 0.92;
}

.partner-list p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
}

.system {
  --scene-y: 0px;
  --scene-y-reverse: 0px;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 84px);
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.system-visual {
  --scroll-y: var(--scene-y-reverse);
  position: sticky;
  top: 122px;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--espresso);
  box-shadow: var(--shadow);
}

.system-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 5, 4, 0.08), rgba(6, 5, 4, 0.72)),
    linear-gradient(120deg, rgba(201, 116, 42, 0.16), transparent 58%);
}

.system-visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 46% 44%;
  filter: sepia(0.2) saturate(0.82) contrast(1.22) brightness(0.8);
}

.system-copy {
  padding-top: 42px;
}

.system-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.system-list {
  display: grid;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.system-list div {
  display: grid;
  grid-template-columns: 82px minmax(0, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.system-list div.is-active {
  border-color: rgba(255, 178, 94, 0.42);
  background: linear-gradient(90deg, rgba(201, 116, 42, 0.12), transparent 62%);
  transform: translateX(8px);
}

.system-list span,
.system-list h3,
.system-list p {
  margin: 0;
}

.system-list p {
  color: var(--muted);
}

.outcome {
  --scene-x: 0px;
  --scene-x-soft: 0px;
  --scene-x-reverse: 0px;
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(201, 116, 42, 0.13), transparent 40%),
    #080605;
}

.outcome-shell {
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto;
}

.outcome-lines {
  display: grid;
  gap: 20px;
}

.outcome-lines p {
  max-width: 1160px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 8.7vw, 9.9rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
  will-change: transform;
}

.outcome-lines p:nth-child(2) {
  --scroll-x: var(--scene-x-reverse);
  margin-left: clamp(0px, 10vw, 150px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 227, 208, 0.78);
}

.outcome-lines p:nth-child(3) {
  --scroll-x: var(--scene-x-soft);
  color: var(--orange-hot);
}

.invitation {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
  padding: 124px 0 110px;
}

.invitation-copy {
  position: sticky;
  top: 124px;
}

.invitation-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.invitation-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.invitation-proof span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.05);
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 248, 237, 0.1), rgba(255, 248, 237, 0.035)),
    rgba(6, 5, 4, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.lead-honeypot {
  display: none !important;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.lead-form span,
.lead-form legend {
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(237, 227, 208, 0.18);
  border-radius: 6px;
  background: rgba(255, 248, 237, 0.08);
  color: var(--white);
  font: inherit;
  outline: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.lead-form input,
.lead-form select {
  min-height: 50px;
  padding: 0 13px;
}

.lead-form textarea {
  min-height: 118px;
  padding: 13px;
  resize: vertical;
}

.lead-form select option {
  color: var(--black);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(255, 178, 94, 0.8);
  background: rgba(255, 248, 237, 0.12);
  box-shadow: 0 0 0 3px rgba(201, 116, 42, 0.18);
}

.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"],
.lead-form textarea[aria-invalid="true"] {
  border-color: rgba(255, 121, 92, 0.82);
}

.lead-form fieldset {
  padding: 0;
  border: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid rgba(237, 227, 208, 0.13);
  border-radius: 6px;
  background: rgba(255, 248, 237, 0.06);
}

.checkbox-grid input {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}

.checkbox-grid span {
  color: var(--muted);
  font-size: 0.72rem;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--orange-hot);
  font-size: 0.88rem !important;
  font-weight: 800;
}

.form-status[data-tone="success"] {
  color: #b7e4c0;
}

.form-status[data-tone="error"] {
  color: #ff9b82;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 46px 0 54px;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 150px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

[data-reveal],
.hero-stagger {
  --reveal-y: 24px;
  --scroll-x: 0px;
  --scroll-y: 0px;
  opacity: 0;
  transform: translate3d(var(--scroll-x), calc(var(--reveal-y) + var(--scroll-y)), 0);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  will-change: opacity, transform;
}

[data-reveal].is-visible,
.hero-stagger.is-visible {
  --reveal-y: 0px;
  opacity: 1;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-hot);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 178, 94, 0.58);
  border-radius: 50%;
  transition:
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-active .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(237, 227, 208, 0.62);
  background: rgba(255, 178, 94, 0.08);
}

@media (max-width: 1100px) {
  .story-thread {
    display: none;
  }

  .structure-grid,
  .system,
  .invitation {
    grid-template-columns: 1fr;
  }

  .cinema {
    padding: 92px 22px;
  }

  .system-visual,
  .invitation-copy {
    position: relative;
    top: auto;
  }

  .cinema-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cinema-step {
    min-height: auto;
    padding: 22px;
  }

  .system-visual {
    min-height: 520px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    width: min(100% - 28px, 760px);
  }

  .site-header::before {
    inset: 10px -6px;
  }

  .brand-logo {
    width: clamp(112px, 28vw, 138px);
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(6, 5, 4, 0.96);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(237, 227, 208, 0.1);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero-lower,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .partner-showcase {
    grid-template-columns: 1fr;
  }

  .partner-photo-grid {
    position: relative;
    top: auto;
    grid-auto-rows: minmax(210px, 1fr);
  }

  .partner-photo-large {
    min-height: 440px;
  }

  .system-list div {
    grid-template-columns: 56px 1fr;
  }

  .system-list p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 86px;
  }

  .section-shell,
  .hero-shell,
  .outcome-shell,
  .structure-grid {
    width: min(100% - 32px, 560px);
  }

  .site-header {
    width: min(100% - 26px, 560px);
    gap: 12px;
    padding: 16px 0;
  }

  .site-header::before {
    inset: 10px -6px;
  }

  .menu-toggle {
    width: 58px;
    height: 58px;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    padding: 92px 0 46px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(6, 5, 4, 0.54) 0%, rgba(6, 5, 4, 0.86) 58%, rgba(6, 5, 4, 0.96) 100%),
      linear-gradient(90deg, rgba(6, 5, 4, 0.9), rgba(6, 5, 4, 0.32));
  }

  .hero-media > img,
  .hero-scene,
  .hero-scene img {
    object-position: 64% 50%;
    transform: scale(1.03) translate3d(0, var(--scene-y-soft), 0);
  }

  .eyebrow {
    max-width: 21rem;
    margin-bottom: 22px;
    font-size: clamp(0.78rem, 3.4vw, 0.94rem);
  }

  .hero-title {
    max-width: 22rem;
    font-size: clamp(4.25rem, 18vw, 5.8rem);
    line-height: 0.86;
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4.25rem);
    line-height: 0.96;
  }

  .hero-lower {
    gap: 24px;
    margin-top: 34px;
  }

  .section-head {
    gap: 24px;
    margin-bottom: 34px;
  }

  .section-head .eyebrow {
    margin-bottom: -6px;
  }

  .hero-lower p {
    font-size: clamp(1.08rem, 5vw, 1.32rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 58px;
    padding: 17px 18px;
    font-size: clamp(0.88rem, 3.8vw, 1rem);
  }

  .cinema,
  .partner,
  .system,
  .outcome,
  .invitation {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .system-visual {
    min-height: 420px;
  }

  .partner-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .partner-photo,
  .partner-photo-large {
    grid-row: auto;
    min-height: 300px;
  }

  .partner-photo figcaption strong,
  .partner-photo-large figcaption strong {
    font-size: clamp(1.62rem, 8vw, 2.65rem);
  }

  .structure-map {
    min-height: 390px;
  }

  .map-core {
    width: min(46%, 190px);
  }

  .scroll-film-label {
    display: none;
  }

  .map-core strong {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .map-core span,
  .map-core em {
    font-size: 0.62rem;
  }

  .map-node {
    min-width: 82px;
    min-height: 34px;
    padding: 8px 9px;
    font-size: 0.58rem;
  }

  .map-node-two {
    right: 0;
  }

  .map-node-three {
    left: 0;
  }

  .cinema-steps {
    grid-template-columns: 1fr;
  }

  .partner-head p {
    font-size: 1rem;
  }

  .partner-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 0;
  }

  .partner-list h3 {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }

  .partner-list article:hover {
    transform: none;
  }

  .partner-list article.is-active,
  .system-list div.is-active {
    transform: none;
  }

  .outcome-lines {
    gap: 18px;
  }

  .outcome-lines p {
    font-size: clamp(3.1rem, 14vw, 5.4rem);
    line-height: 0.94;
  }

  .outcome-lines p:nth-child(2) {
    margin-left: 0;
  }

  .form-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 20px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    font-size: 16px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
    width: min(100% - 32px, 560px);
  }

  .footer-links {
    gap: 16px;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media > img,
  .hero-scene,
  .hero-scene img,
  .structure-map,
  [data-reveal],
  .hero-stagger,
  .outcome-lines p {
    transform: none !important;
  }

  .hero-media video {
    display: none;
  }

  .story-thread {
    display: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
