:root {
  --pure-white: #ffffff;
  --soft-white: #f8f8f6;
  --warm-white: #fbf7f4;
  --ink: #080808;
  --ink-soft: #34302d;
  --muted: #6f6560;
  --crimson: #8b0015;
  --dark-crimson: #5e000e;
  --gold: #cba24a;
  --gold-line: rgba(203, 162, 74, 0.58);
  --line: rgba(8, 8, 8, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
  --gutter: clamp(24px, 5vw, 88px);
  --maxw: 1360px;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

* { box-sizing: border-box; }
html { background: var(--pure-white); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--pure-white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: 0; }
:focus-visible { outline: 2px solid var(--crimson); outline-offset: 4px; }

.skip {
  position: absolute;
  top: 16px;
  left: -999px;
  z-index: 300;
  padding: 16px 24px;
  background: var(--crimson);
  color: var(--pure-white);
}
.skip:focus { left: 16px; }

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

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--crimson);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.label::before { content: ""; width: 40px; height: 1px; background: var(--gold); }
.label.light { color: var(--pure-white); }

.button,
.booking-form button,
.subscribe-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}
.button:hover,
.booking-form button:hover,
.subscribe-form button:hover { transform: translateY(-1px); }
.button-primary,
.booking-form button { background: var(--crimson); color: var(--pure-white); }
.button-primary:hover,
.booking-form button:hover { background: var(--dark-crimson); }
.button-secondary { border-color: var(--crimson); background: var(--pure-white); color: var(--crimson); }
.button-secondary:hover { background: var(--crimson); color: var(--pure-white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px var(--gutter);
  border-bottom: 1px solid var(--gold-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}
.brand span {
  display: block;
  color: var(--crimson);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.nav-lanes {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
}
.nav-lanes a,
.book-link {
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-lanes a[aria-current="page"] { color: var(--crimson); border-bottom: 2px solid var(--crimson); }
.nav-lanes a:hover,
.book-link:hover { color: var(--crimson); }
.mobile-book-nav { display: none; }

.service-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  min-height: 680px;
  padding: 8px;
  border-bottom: 1px solid var(--gold-line);
  background: var(--pure-white);
}

.home-pivot-hero .hero-copy h1 {
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: 1.02;
}

.home-pivot-hero .hero-media img {
  object-position: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px var(--gutter);
}
.hero-copy h1 {
  max-width: 700px;
  font-size: clamp(58px, 7.2vw, 112px);
}
.hero-copy p {
  max-width: 460px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.hero-media,
.feature-media,
.preview-media,
.about-media {
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: var(--soft-white);
}
.hero-media img,
.feature-media img,
.preview-media img,
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.future-media { position: relative; }
.future-media::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 1px;
  background: var(--gold-line);
}

.lane-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-line);
}
.lane-strip a {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--gold-line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lane-strip a:last-child { border-right: 0; }
.lane-strip a:hover { color: var(--crimson); }

.shop-preview,
.service-feature,
.about-band {
  padding: 56px 0;
  border-bottom: 1px solid var(--gold-line);
  background: var(--pure-white);
}
.preview-grid,
.feature-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(480px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}
.preview-grid > div:first-child,
.feature-copy,
.about-copy {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: var(--pure-white);
}

.preview-grid > div:first-child {
  border: 1px solid var(--gold-line);
}

.feature-copy,
.about-copy {
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.preview-grid h2,
.feature-copy h2,
.about-copy h2 {
  margin-top: 16px;
  font-size: clamp(42px, 5vw, 72px);
}
.preview-grid p:not(.label),
.feature-copy p:not(.label),
.about-copy p:not(.label) {
  max-width: 480px;
  margin-top: 24px;
  color: var(--ink-soft);
}
.preview-grid .button,
.feature-copy .button { width: fit-content; margin-top: 32px; }
.preview-media img,
.feature-media img,
.about-media img { min-height: 480px; }
.film-media img {
  object-position: center bottom;
}
.feature-grid.reverse .feature-media { order: 2; }

.academy-panel,
.book-section {
  padding: 64px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: var(--pure-white);
  color: var(--ink);
}
.academy-grid,
.book-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}
.academy-panel h2,
.book-section h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
}
.academy-panel p,
.book-section p {
  max-width: 480px;
  margin-top: 16px;
  color: var(--ink-soft);
}
.subscribe-form label,
.booking-form label {
  display: block;
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.subscribe-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.subscribe-form input,
.booking-form input,
.booking-form select {
  min-height: 48px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--pure-white);
  color: var(--ink);
}
.booking-form select option { color: var(--ink); }
.subscribe-form input::placeholder { color: var(--muted); }
.subscribe-form button {
  border-color: var(--crimson);
  background: var(--crimson);
  color: var(--pure-white);
}
.concept-list {
  display: grid;
  max-width: 480px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.concept-list span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.booking-form {
  display: grid;
}
.booking-form button {
  margin-top: 24px;
  border-color: var(--crimson);
  background: var(--crimson);
  color: var(--pure-white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--pure-white);
  color: var(--muted);
}
.footer-brand span { font-size: 28px; }

.pivot-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(560px, 1.22fr);
  min-height: calc(100svh - 72px);
  padding: 8px;
  border-bottom: 1px solid var(--gold-line);
}

.pivot-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px var(--gutter);
}

.pivot-hero-copy h1 {
  max-width: 780px;
  margin-top: 16px;
  font-size: clamp(58px, 7.6vw, 120px);
}

.pivot-hero-copy p:not(.label) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.55;
}

.pivot-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border: 1px solid var(--gold-line);
  background: var(--soft-white);
}

.pivot-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
}

.trailer-hero {
  background:
    linear-gradient(90deg, rgba(251, 247, 244, 0.94), rgba(255, 255, 255, 0.98)),
    var(--pure-white);
}

.trailer-hero .pivot-hero-media::after,
.gallery-hero .pivot-hero-media::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 1px;
  background: var(--gold-line);
}

.set-body {
  background: var(--ink);
  color: var(--pure-white);
}

.set-header,
.set-footer {
  border-color: rgba(203, 162, 74, 0.38);
  background: rgba(8, 8, 8, 0.88);
  color: var(--pure-white);
}

.set-header .brand span,
.set-footer .brand span,
.set-header .nav-lanes a,
.set-header .book-link {
  color: var(--pure-white);
}

.set-header .nav-lanes a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.set-hero {
  background:
    radial-gradient(circle at 74% 42%, rgba(139, 0, 21, 0.52), transparent 34%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.98), rgba(8, 8, 8, 0.72)),
    var(--ink);
  color: var(--pure-white);
}

.set-hero .pivot-hero-copy p:not(.label),
.set-hero .label,
.set-section,
.set-artist,
.set-process,
.set-proof,
.set-footer p {
  color: var(--pure-white);
}

.set-hero .label::before,
.set-section .label::before,
.set-artist .label::before,
.set-process .label::before,
.set-proof .label::before {
  background: var(--gold);
}

.set-stage-media {
  border-color: rgba(203, 162, 74, 0.42);
  background: var(--ink);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.32);
}

.set-stage-media img {
  filter: contrast(1.06) saturate(1.08) brightness(0.86);
}

.set-secondary {
  border-color: rgba(255, 255, 255, 0.64);
  background: transparent;
  color: var(--pure-white);
}

.set-secondary:hover {
  border-color: var(--gold);
  background: rgba(203, 162, 74, 0.12);
  color: var(--pure-white);
}

.journey-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--gold-line);
  background: var(--pure-white);
}

.journey-strip a {
  display: grid;
  min-height: 80px;
  place-items: center;
  border-right: 1px solid var(--gold-line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.journey-strip a:last-child {
  border-right: 0;
}

.journey-strip a:hover {
  color: var(--crimson);
}

.set-strip {
  border-color: rgba(203, 162, 74, 0.38);
  background: var(--ink);
}

.set-strip a {
  border-color: rgba(203, 162, 74, 0.32);
  color: var(--pure-white);
}

.set-strip a:hover {
  color: var(--gold);
}

.pivot-section {
  padding: 72px 0;
  background: var(--pure-white);
}

.section-intro {
  max-width: 840px;
}

.section-intro h2 {
  margin-top: 16px;
  font-size: clamp(42px, 5.2vw, 84px);
}

.section-intro p:not(.label) {
  max-width: 680px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-intro.dark p:not(.label) {
  color: rgba(255, 255, 255, 0.82);
}

.trailer-card-grid,
.set-card-grid,
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.image-card,
.masonry-grid article {
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: var(--pure-white);
}

.image-card img,
.masonry-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.image-card div,
.masonry-grid article {
  padding: 24px;
}

.image-card span,
.set-card-grid span,
.process-timeline span {
  color: var(--crimson);
  font-family: var(--serif);
  font-size: 22px;
}

.image-card h3,
.masonry-grid h3 {
  margin-top: 16px;
  font-size: clamp(30px, 3.1vw, 48px);
}

.image-card p,
.masonry-grid p {
  margin-top: 16px;
  color: var(--ink-soft);
}

.trailer-ritual {
  padding: 72px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: var(--soft-white);
}

.ritual-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
  gap: 48px;
  align-items: center;
}

.ritual-grid h2 {
  margin-top: 16px;
  font-size: clamp(42px, 5vw, 76px);
}

.ritual-grid p:not(.label) {
  margin-top: 24px;
  color: var(--ink-soft);
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ritual-steps article {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 24px 16px;
  border: 1px solid var(--gold-line);
  background: var(--pure-white);
  text-align: center;
}

.ritual-steps img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.ritual-steps strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.pivot-cta {
  padding: 72px 0;
  background: var(--crimson);
  color: var(--pure-white);
}

.crimson-band {
  padding: 72px 0;
  background: var(--crimson);
  color: var(--pure-white);
}

.crimson-band .label,
.crimson-band p,
.crimson-band h2 {
  color: var(--pure-white);
}

.crimson-band .label::before {
  background: var(--gold);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.cta-grid h2 {
  margin-top: 16px;
  font-size: clamp(42px, 5vw, 76px);
}

.cta-grid p:not(.label) {
  max-width: 640px;
  margin-top: 24px;
}

.light-button {
  border-color: var(--pure-white);
  background: var(--pure-white);
  color: var(--crimson);
}

.set-proof,
.set-section,
.set-artist,
.set-process {
  padding: 72px 0;
  background: var(--ink);
}

.proof-grid,
.split-cinema {
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.proof-screen,
.artist-chair {
  overflow: hidden;
  border: 1px solid rgba(203, 162, 74, 0.4);
  background: #000;
}

.proof-screen img,
.artist-chair img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.05) brightness(0.86);
}

.proof-copy h2,
.split-cinema h2 {
  margin-top: 16px;
  font-size: clamp(42px, 5vw, 80px);
}

.proof-copy p:not(.label),
.split-cinema p:not(.label) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.proof-copy .button {
  margin-top: 32px;
}

.set-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.set-card-grid article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(203, 162, 74, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(94, 0, 14, 0.28)),
    #050505;
}

.set-card-grid span,
.process-timeline span {
  color: var(--gold);
}

.set-card-grid h3 {
  margin-top: 56px;
  color: var(--pure-white);
  font-size: clamp(28px, 2.8vw, 44px);
}

.set-card-grid p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.process-timeline li {
  min-height: 220px;
  padding: 24px;
  border-top: 1px solid rgba(203, 162, 74, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.process-timeline strong {
  display: block;
  margin-top: 32px;
  color: var(--pure-white);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.process-timeline p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-board {
  padding: 72px 0;
  background: var(--pure-white);
}

.gallery-page {
  background:
    linear-gradient(180deg, var(--pure-white) 0%, var(--warm-white) 42%, var(--pure-white) 100%);
}

.gallery-proof-hero {
  position: relative;
  overflow: visible;
  padding: 48px 0 80px;
  border-bottom: 1px solid var(--gold-line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 244, 0.84)),
    var(--pure-white);
}

.gallery-proof-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  border-left: 1px solid var(--gold-line);
  background: rgba(139, 0, 21, 0.035);
}

.gallery-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 0.98fr) minmax(240px, 0.48fr);
  gap: 24px;
  align-items: stretch;
}

.gallery-hero-copy {
  display: flex;
  min-height: 720px;
  flex-direction: column;
  justify-content: center;
  padding: 48px 32px 48px 0;
}

.gallery-hero-copy h1 {
  max-width: 640px;
  margin-top: 24px;
  font-size: clamp(64px, 7vw, 118px);
}

.gallery-kicker {
  color: var(--crimson);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.gallery-hero-copy p:not(.label):not(.gallery-kicker) {
  max-width: 520px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.35vw, 22px);
}

.gallery-hero-frame {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border: 1px solid var(--gold-line);
  background: var(--ink);
  box-shadow: 0 24px 72px rgba(8, 8, 8, 0.14);
}

.gallery-hero-frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.gallery-hero-frame-main {
  min-height: 720px;
}

.gallery-hero-frame-main img {
  object-position: center;
}

.gallery-hero-stack {
  display: grid;
  gap: 24px;
}

.gallery-hero-stack .gallery-hero-frame {
  min-height: 348px;
}

.gallery-hero-stack .gallery-hero-frame:first-child img {
  object-position: 46% center;
}

.gallery-hero-frame figcaption,
.gallery-tile figcaption {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-top: 1px solid rgba(203, 162, 74, 0.5);
  background: var(--ink);
  color: var(--pure-white);
}

.gallery-hero-frame span,
.gallery-tile span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-hero-frame strong,
.gallery-tile strong {
  color: var(--pure-white);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.gallery-board {
  padding: 96px 0;
  background: var(--pure-white);
}

.gallery-board-head {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(320px, 0.38fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.gallery-board-head .label {
  grid-column: 1 / -1;
}

.gallery-board-head h2 {
  grid-column: 1;
  max-width: 820px;
  font-size: clamp(48px, 5.8vw, 92px);
}

.gallery-board-head p:not(.label) {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 18px;
}

.gallery-mosaic {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 104px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.gallery-tile {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  grid-column: span 3;
  grid-row: span 4;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--gold-line);
  background: var(--ink);
  box-shadow: 0 16px 48px rgba(8, 8, 8, 0.1);
}

.gallery-tile-large {
  grid-column: span 6;
  grid-row: span 5;
}

.gallery-tile-wide {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-tile-tall {
  grid-column: span 3;
  grid-row: span 5;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.gallery-tile:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-tile em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.35;
}

.world-choice {
  padding: 72px 0;
  border-bottom: 1px solid var(--gold-line);
  background: var(--pure-white);
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.world-card {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border: 1px solid var(--gold-line);
  background: var(--ink);
  color: var(--pure-white);
}

.world-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) contrast(1.08);
}

.world-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.14), rgba(8, 8, 8, 0.76)),
    radial-gradient(circle at 50% 72%, rgba(139, 0, 21, 0.28), transparent 36%);
}

.world-card > div {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 640px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}

.world-card h3 {
  margin-top: 16px;
  color: var(--pure-white);
  font-size: clamp(44px, 5vw, 82px);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.72);
}

.world-card p:not(.label) {
  max-width: 460px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.world-card .button {
  width: fit-content;
  margin-top: 32px;
}

.trailer-world::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 8, 8, 0.78)),
    radial-gradient(circle at 24% 32%, rgba(203, 162, 74, 0.22), transparent 30%);
}

.light-split {
  color: var(--ink);
}

.light-split h2 {
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 76px);
}

.light-split p:not(.label) {
  margin-top: 24px;
  color: var(--ink-soft);
}

.light-panel {
  border-color: var(--gold-line);
  background: var(--soft-white);
}

.light-panel img {
  filter: none;
}

.mock-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(8, 8, 8, 0.18);
}

.mock-form label {
  color: var(--pure-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mock-form input,
.mock-form select,
.mock-form textarea {
  min-height: 48px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pure-white);
}

.mock-form option {
  background: var(--pure-white);
  color: var(--ink);
}

.mock-form button {
  min-height: 48px;
  border: 1px solid var(--pure-white);
  background: var(--pure-white);
  color: var(--crimson);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mock-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.masonry-grid {
  align-items: start;
}

.masonry-grid article {
  display: grid;
  padding: 0;
}

.masonry-grid article h3,
.masonry-grid article p {
  padding-right: 24px;
  padding-left: 24px;
}

.masonry-grid article p {
  padding-bottom: 24px;
}

.trailer-studio-body {
  background: #080808;
  color: var(--pure-white);
}

.trailer-studio-page {
  min-height: 100vh;
  margin-left: 232px;
  background: var(--pure-white);
}

.studio-builder-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 100;
  display: flex;
  width: 232px;
  flex-direction: column;
  padding: 32px 32px 24px;
  border-right: 1px solid var(--gold-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 247, 244, 0.98)),
    var(--pure-white);
  color: var(--ink);
}

.studio-rail-mark {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: var(--ink);
  text-align: center;
}

.studio-rail-mark span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 58px;
  line-height: 0.85;
}

.studio-rail-mark em {
  color: var(--crimson);
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.studio-rail-mark small {
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.rail-flourish {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 32px 0;
  color: var(--gold);
}

.rail-flourish::before,
.rail-flourish::after {
  content: "";
  height: 1px;
  background: var(--gold-line);
}

.rail-title,
.standard-note span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.builder-steps {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.builder-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
}

.builder-steps li::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -18px;
  width: 1px;
  background: var(--gold-line);
}

.builder-steps li:last-child::after {
  display: none;
}

.builder-steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: var(--pure-white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
}

.builder-steps .active span {
  border-color: var(--crimson);
  background: var(--crimson);
  color: var(--pure-white);
}

.builder-steps strong {
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.builder-steps .active strong {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.standard-note {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--gold-line);
}

.standard-note p {
  margin-top: 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.12;
}

.standard-note a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--crimson);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rail-tools {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 24px -32px -24px;
  padding: 16px 32px;
  border-top: 1px solid var(--gold-line);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trailer-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 16px 32px 16px 96px;
  border-bottom: 1px solid rgba(203, 162, 74, 0.5);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.trailer-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
}

.trailer-nav a,
.save-studio {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trailer-nav a[aria-current="page"] {
  color: var(--crimson);
  border-bottom: 2px solid var(--crimson);
  padding-bottom: 8px;
}

.save-studio {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  border: 1px solid var(--gold-line);
  background: rgba(8, 8, 8, 0.94);
  color: var(--pure-white);
}

.save-studio span {
  color: var(--gold);
}

.trailer-studio-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 84px);
  align-items: center;
  overflow: hidden;
  padding: 80px 56px 80px 120px;
  background: #080808;
  color: var(--pure-white);
  isolation: isolate;
}

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

.trailer-stage-video,
.trailer-stage-poster {
  z-index: 1;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.04) brightness(0.82);
}

.trailer-stage-poster {
  z-index: 0;
}

.trailer-stage-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.72) 34%, rgba(8, 8, 8, 0.18) 74%),
    radial-gradient(circle at 76% 64%, rgba(203, 162, 74, 0.16), transparent 26%),
    radial-gradient(circle at 46% 36%, rgba(139, 0, 21, 0.18), transparent 32%);
}

.trailer-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
}

.cinema-kicker,
.trailer-subtitle {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.trailer-subtitle {
  margin-top: 28px;
  color: rgba(203, 162, 74, 0.86);
  letter-spacing: 0.24em;
}

.trailer-hero-copy h1 {
  margin-top: 16px;
  color: var(--pure-white);
  font-size: clamp(58px, 6.8vw, 108px);
  line-height: 0.94;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.7);
}

.trailer-hero-copy h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.trailer-hero-copy > p:not(.cinema-kicker):not(.trailer-subtitle) {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(21px, 1.7vw, 30px);
  line-height: 1.28;
}

.trailer-value-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 620px;
  margin-top: 32px;
}

.trailer-value-row span {
  display: grid;
  min-height: 72px;
  align-content: end;
  border-bottom: 1px solid var(--gold);
  color: var(--pure-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.trailer-outline {
  border-color: var(--gold-line);
  background: rgba(8, 8, 8, 0.34);
  color: var(--gold);
}

.trailer-outline:hover {
  border-color: var(--gold);
  background: rgba(203, 162, 74, 0.12);
  color: var(--pure-white);
}

.watch-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
  color: var(--pure-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.watch-link span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--pure-white);
  border-radius: 999px;
}

.exclusive-card {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 4;
  width: min(380px, 30vw);
  padding: 24px 28px;
  border: 1px solid rgba(203, 162, 74, 0.42);
  background: rgba(8, 8, 8, 0.68);
  backdrop-filter: blur(12px);
}

.exclusive-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.exclusive-card p {
  margin-top: 14px;
  color: var(--pure-white);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
}

.exclusive-card em {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 32px;
  text-align: right;
}

.studio-process-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.26fr) minmax(0, 1fr);
  border-top: 1px solid var(--gold-line);
  background: var(--pure-white);
  color: var(--ink);
}

.trailer-door-card {
  min-height: 280px;
  overflow: hidden;
  border-right: 1px solid var(--gold-line);
}

.trailer-door-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: brightness(0.88) contrast(1.02);
}

.studio-process-content {
  padding: 36px 48px 40px;
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 32px;
}

.process-heading span {
  height: 1px;
  background: var(--gold-line);
}

.process-heading h2 {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.studio-process-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
}

.studio-process-grid article {
  min-height: 152px;
  padding: 8px 18px;
  border-right: 1px solid var(--gold-line);
}

.studio-process-grid article:last-child {
  border-right: 0;
}

.studio-process-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
}

.studio-process-grid h3 {
  margin-top: 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.studio-process-grid p {
  margin-top: 12px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.trailer-proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 24px 40px;
  border-top: 1px solid rgba(203, 162, 74, 0.36);
  background:
    radial-gradient(circle at 20% 10%, rgba(203, 162, 74, 0.08), transparent 24%),
    #080808;
  color: var(--pure-white);
}

.trailer-proof-strip article {
  min-height: 64px;
  padding: 0 24px;
  border-right: 1px solid rgba(203, 162, 74, 0.3);
}

.trailer-proof-strip article:last-child {
  border-right: 0;
}

.trailer-proof-strip span {
  color: var(--pure-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trailer-proof-strip p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .nav-lanes {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .service-hero,
  .pivot-hero,
  .gallery-hero-shell,
  .world-grid,
  .preview-grid,
  .feature-grid,
  .about-grid,
  .academy-grid,
  .book-grid,
  .ritual-grid,
  .proof-grid,
  .split-cinema {
    grid-template-columns: 1fr;
  }
  .feature-grid.reverse .feature-media { order: 0; }
  .trailer-studio-page {
    margin-left: 0;
  }
  .gallery-hero-copy {
    min-height: 0;
    padding: 56px 0 24px;
  }
  .gallery-hero-frame-main {
    min-height: 560px;
  }
  .gallery-hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-hero-stack .gallery-hero-frame {
    min-height: 320px;
  }
  .gallery-board-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .gallery-board-head h2,
  .gallery-board-head p:not(.label) {
    grid-column: 1;
  }
  .gallery-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .gallery-tile {
    grid-column: span 3;
  }
  .gallery-tile-large,
  .gallery-tile-wide {
    grid-column: span 6;
  }
  .studio-builder-rail {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    padding: 20px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--gold-line);
  }
  .studio-rail-mark {
    justify-items: start;
    text-align: left;
  }
  .studio-rail-mark span {
    font-size: 42px;
  }
  .studio-rail-mark em,
  .studio-rail-mark small,
  .rail-flourish,
  .rail-title,
  .standard-note,
  .rail-tools {
    display: none;
  }
  .builder-steps {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .builder-steps li {
    flex: 0 0 auto;
    grid-template-columns: 32px auto;
    min-height: 40px;
    padding-right: 16px;
  }
  .builder-steps li::after {
    display: none;
  }
  .builder-steps strong {
    white-space: nowrap;
  }
  .trailer-topbar {
    top: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 24px;
  }
  .trailer-nav {
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .save-studio {
    width: fit-content;
  }
  .trailer-studio-hero {
    min-height: 760px;
    padding: 56px 24px;
  }
  .trailer-stage-shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.78) 0%, rgba(8, 8, 8, 0.62) 42%, rgba(8, 8, 8, 0.42) 100%),
      radial-gradient(circle at 64% 24%, rgba(203, 162, 74, 0.16), transparent 28%);
  }
  .exclusive-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 420px);
    margin-top: 32px;
  }
  .studio-process-panel {
    grid-template-columns: 1fr;
  }
  .trailer-door-card {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--gold-line);
  }
  .studio-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .studio-process-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--gold-line);
  }
  .trailer-proof-strip {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .trailer-proof-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(203, 162, 74, 0.3);
    padding: 16px 0;
  }
  .trailer-proof-strip article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 56px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 16px 0;
  }
  .brand span { font-size: 25px; }
  .book-link { display: none; }
  .nav-lanes {
    width: calc(100vw - 32px);
    gap: 18px;
    justify-content: flex-start;
    padding-bottom: 8px;
  }
  .nav-lanes a { flex: 0 0 auto; }
  .mobile-book-nav { display: inline-flex; }
  .section-shell { padding: 0 20px; }
  .service-hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { min-height: 0; aspect-ratio: 1 / 0.82; }
  .hero-copy { padding: 32px 20px 48px; }
  .hero-copy h1 { max-width: 340px; font-size: clamp(48px, 14vw, 72px); }
  .hero-copy p { max-width: 340px; font-size: 16px; }
  .hero-actions { display: grid; gap: 8px; }
  .button { width: 100%; }
  .lane-strip {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .lane-strip a {
    flex: 0 0 164px;
    min-height: 64px;
  }
  .shop-preview,
  .service-feature,
  .about-band,
  .academy-panel,
  .book-section {
    padding: 40px 0;
  }
  .preview-grid > div:first-child,
  .feature-copy,
  .about-copy {
    min-height: 0;
    padding: 32px 24px;
  }
  .preview-grid h2,
  .feature-copy h2,
  .about-copy h2,
  .academy-panel h2,
  .book-section h2 {
    font-size: clamp(38px, 12vw, 56px);
  }
  .preview-grid .button,
  .feature-copy .button { width: 100%; }
  .preview-media img,
  .feature-media img,
  .about-media img {
    min-height: 0;
    aspect-ratio: 1 / 0.82;
  }
  .subscribe-form div { grid-template-columns: 1fr; }
  .site-footer {
    display: grid;
    padding: 40px 24px;
  }
  .pivot-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .pivot-hero-media {
    order: -1;
    min-height: 0;
  }
  .pivot-hero-media img {
    min-height: 0;
    aspect-ratio: 1 / 0.78;
  }
  .pivot-hero-copy {
    padding: 40px 24px 56px;
  }
  .pivot-hero-copy h1 {
    font-size: clamp(48px, 14vw, 72px);
  }
  .gallery-proof-hero {
    padding: 24px 0 48px;
  }
  .gallery-proof-hero::before {
    display: none;
  }
  .gallery-hero-shell {
    gap: 16px;
  }
  .gallery-hero-copy {
    min-height: 0;
    padding: 16px 0 24px;
  }
  .gallery-hero-copy h1 {
    max-width: 340px;
    font-size: clamp(46px, 14vw, 68px);
  }
  .gallery-hero-copy p:not(.label):not(.gallery-kicker) {
    max-width: 340px;
    font-size: 16px;
  }
  .gallery-hero-frame-main {
    order: -1;
    min-height: 0;
    aspect-ratio: 1 / 1.08;
  }
  .gallery-hero-stack {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-hero-stack .gallery-hero-frame {
    min-height: 0;
    aspect-ratio: 1 / 0.78;
  }
  .gallery-hero-frame figcaption,
  .gallery-tile figcaption {
    padding: 20px;
  }
  .gallery-board {
    padding: 56px 0;
  }
  .gallery-board-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
  .gallery-board-head h2 {
    font-size: clamp(40px, 12vw, 58px);
  }
  .gallery-board-head p:not(.label) {
    font-size: 16px;
  }
  .gallery-mosaic {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-tile,
  .gallery-tile-large,
  .gallery-tile-wide,
  .gallery-tile-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 1 / 1.08;
  }
  .gallery-tile-wide {
    aspect-ratio: 1 / 0.72;
  }
  .journey-strip {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .journey-strip a {
    flex: 0 0 184px;
    min-height: 64px;
  }
  .trailer-card-grid,
  .set-card-grid,
  .masonry-grid,
  .process-timeline,
  .ritual-steps {
    grid-template-columns: 1fr;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .proof-screen img,
  .artist-chair img {
    min-height: 0;
    aspect-ratio: 1 / 0.82;
  }
  .trailer-studio-hero {
    min-height: 720px;
  }
  .trailer-hero-copy h1 {
    font-size: clamp(48px, 15vw, 68px);
  }
  .trailer-hero-copy > p:not(.cinema-kicker):not(.trailer-subtitle) {
    font-size: 19px;
  }
  .trailer-value-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cinema-kicker,
  .trailer-subtitle {
    font-size: 11px;
    letter-spacing: 0.2em;
  }
  .studio-process-content {
    padding: 32px 24px;
  }
  .process-heading {
    grid-template-columns: 1fr;
  }
  .process-heading span {
    display: none;
  }
  .studio-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* === Trailer launch sections (2026-06-11, Bright Beauty Standard) === */
.light-band { background: var(--pure-white, #FFFFFF); color: var(--ink, #080808); padding: 96px 0; }
.band-heading { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.band-heading span { height: 1px; background: var(--gold-line, #CBA24A); }
.band-heading h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 500; font-size: clamp(34px, 4.4vw, 64px); line-height: 1.05; text-align: center; margin: 0; }
.band-intro { max-width: 560px; margin: 16px auto 48px; text-align: center; color: var(--ink-soft, #34302D); }
.band-kicker { font-family: Jost, system-ui, sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--crimson, #8B0015); margin: 0 0 16px; }
.band-kicker.light { color: var(--soft-gold, #E8D7AE); }

.services-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.service-card { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; }
.service-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.service-card:hover img { transform: scale(1.04); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,0) 45%, rgba(8,8,8,0.78) 100%); }
.service-name { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 1; color: #FFFFFF; font-family: Jost, system-ui, sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.45; }
.service-name em { display: block; font-style: normal; font-weight: 300; letter-spacing: 0.08em; font-size: 12px; color: rgba(255,255,255,0.82); }

.ritual-row { display: grid; grid-template-columns: minmax(240px, 0.55fr) minmax(480px, 1.45fr); gap: 48px; align-items: center; }
.ritual-script { font-family: "Playfair Display", Georgia, serif; font-size: clamp(26px, 2.6vw, 38px); line-height: 1.2; margin: 0; color: var(--ink, #080808); }
.ritual-script em { color: var(--crimson, #8B0015); }
.ritual-flow { list-style: none; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; margin: 0; padding: 0; }
.ritual-flow li { text-align: center; font-family: Jost, system-ui, sans-serif; }
.ritual-flow img { width: 44px; height: 44px; object-fit: contain; margin: 0 auto 12px; display: block; }
.ritual-flow strong { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson, #8B0015); }
.ritual-flow span { display: block; font-size: 12px; font-weight: 300; color: var(--ink-soft, #34302D); margin-top: 4px; }

.trailer-bridal { background: var(--soft-white, #F8F8F6); padding: 96px 0; color: var(--ink, #080808); }
.bridal-split, .kit-split, .book-split { display: grid; grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr); gap: 64px; align-items: center; }
.bridal-media img, .kit-media img, .book-media img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; display: block; }
.bridal-copy h2, .kit-copy h2, .book-copy h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 500; font-size: clamp(30px, 3.6vw, 52px); line-height: 1.08; margin: 0 0 16px; }
.bridal-copy p, .kit-copy p { color: var(--ink-soft, #34302D); max-width: 480px; margin: 0 0 32px; }

.trailer-outline-dark { border: 1px solid var(--ink, #080808); color: var(--ink, #080808); background: transparent; padding: 16px 32px; }
.trailer-outline-dark:hover { background: var(--ink, #080808); color: #FFFFFF; }
.button-gold { background: var(--brand-gold, #CBA24A); color: var(--ink, #080808); padding: 16px 32px; font-weight: 500; }
.button-gold:hover { background: var(--highlight-gold, #D6B766); }

.trailer-book .book-copy p { color: rgba(255,255,255,0.88); max-width: 460px; margin: 0 0 32px; }
.trailer-book h2 { font-family: "Playfair Display", Georgia, serif; font-style: italic; }

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ritual-row, .bridal-split, .kit-split, .book-split { grid-template-columns: 1fr; gap: 32px; }
  .ritual-flow { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
  .light-band, .trailer-bridal { padding: 64px 0; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ritual-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

/* === Film Set launch sections (2026-06-11) === */
.set-lookbook { padding: 96px 0; background: #0B0B0B; }
.set-lookbook-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 48px 0 32px; }
.set-lookbook-grid a { display: block; aspect-ratio: 4 / 5; overflow: hidden; }
.set-lookbook-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.set-lookbook-grid a:hover img { transform: scale(1.04); }
.set-lookbook-cta { display: inline-block; }
.set-hire h2 { font-family: "Playfair Display", Georgia, serif; }
@media (max-width: 720px) {
  .set-lookbook { padding: 64px 0; }
  .set-lookbook-grid { grid-template-columns: 1fr; }
}
