:root {
  --gold: #dcae51;
  --gold-bright: #f1bd42;
  --ink: #060707;
  --white: #f7f4ed;
  --muted: rgba(255, 255, 255, 0.68);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

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

body.modal-open { overflow: hidden; }

.event-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  visibility: hidden;
  opacity: 0;
  transition: opacity .58s ease, visibility .58s ease;
}

.event-modal.is-visible { visibility: visible; opacity: 1; }
.event-modal[hidden] { display: none; }
.event-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.54);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity .65s ease;
}
.event-modal.is-visible .event-modal__backdrop { opacity: 1; }
.event-modal__panel {
  position: relative;
  width: min(600px, calc(100vw - 72px));
  max-height: calc(100dvh - 36px);
  border: 1px solid rgba(220,174,81,.7);
  background: #0b0b0b;
  box-shadow: 0 28px 90px rgba(0,0,0,.72), 0 0 0 1px rgba(255,255,255,.08) inset;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(46px) scale(.92);
  transition: opacity .62s ease, filter .72s ease, transform .78s cubic-bezier(.16,.84,.24,1);
}
.event-modal.is-visible .event-modal__panel { opacity: 1; filter: none; transform: none; }
.event-modal__panel img { display: block; width: 100%; height: auto; max-height: calc(100dvh - 38px); object-fit: contain; }
.event-modal__close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.72);
  font: 300 30px/1 Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,.42);
}
.event-modal__close:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.event-modal__close:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.experience {
  --mouse-x: 0px;
  --mouse-y: 0px;
  --product-x: 0px;
  --product-y: 0px;
  --product-tilt-x: 0deg;
  --product-tilt-y: 0deg;
  background: #050606;
  min-height: 100vh;
}

.intro {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: #050606;
  pointer-events: none;
  animation: intro-away 1.8s cubic-bezier(.77,0,.18,1) forwards;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #050606;
  animation: curtain 1s 1s cubic-bezier(.77,0,.18,1) forwards;
}
.intro::before { left: 0; transform-origin: left; }
.intro::after { right: 0; transform-origin: right; }
.intro img { width: 260px; height: 150px; object-fit: contain; filter: drop-shadow(0 0 28px rgba(240,181,48,.16)); z-index: 1; animation: logo-intro 1.1s ease both; }
.intro span { position: absolute; width: 120px; height: 1px; background: var(--gold); z-index: 1; transform: translateY(68px); animation: line-intro .9s .2s ease both; }

@keyframes logo-intro { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes line-intro { from { transform: translateY(68px) scaleX(0); } to { transform: translateY(68px) scaleX(1); } }
@keyframes curtain { to { transform: scaleX(0); } }
@keyframes intro-away { 0%, 92% { visibility: visible; } 100% { visibility: hidden; } }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 18px 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.site-header > * { pointer-events: auto; }
.brand { width: 164px; height: 58px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.94); display: grid; place-items: center; backdrop-filter: blur(16px); box-shadow: 0 12px 40px rgba(0,0,0,.16); overflow: hidden; }
.brand img { width: 124px; height: 48px; object-fit: contain; }
.header-mark { font: 600 10px/1 "Arial Narrow", Arial, sans-serif; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.68); text-shadow: 0 1px 8px rgba(0,0,0,.8); }
.instagram-link { display: flex; align-items: center; gap: 10px; font: 600 11px/1 Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.instagram-icon { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; display: grid; place-items: center; background: rgba(5,6,6,.34); backdrop-filter: blur(12px); font-size: 9px; }
.instagram-text { text-shadow: 0 1px 10px #000; }

.scene-nav { position: fixed; z-index: 25; right: 24px; top: 50%; transform: translateY(-50%); display: grid; gap: 10px; }
.scene-nav a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid transparent; border-radius: 50%; color: rgba(255,255,255,.58); transition: .4s ease; }
.scene-nav a span { font: 600 8px/1 Arial, sans-serif; letter-spacing: .08em; text-shadow: 0 1px 6px #000; }
.scene-nav a::before { content: ""; position: absolute; width: 3px; height: 3px; border-radius: 50%; background: currentColor; transition: .4s ease; }
.scene-nav a span { opacity: 0; transition: .3s ease; }
.scene-nav a:hover span, .scene-nav a.active span { opacity: 1; }
.scene-nav a:hover::before, .scene-nav a.active::before { opacity: 0; }
.scene-nav a.active { border-color: var(--gold); color: var(--gold-bright); }

.scene {
  --parallax-y: 0px;
  position: relative;
  min-height: 100svh;
  padding: 118px 8vw 110px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  scroll-snap-align: start;
}

.scene::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(5,6,6,.98) 0%, rgba(5,6,6,.94) 52%, rgba(220,174,81,.3) 70%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
}

.scene.is-active::after {
  animation: scene-wipe 1.05s cubic-bezier(.77,0,.18,1) both;
}

.scene-light::after,
.scene-flagship::after {
  background: linear-gradient(105deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 55%, rgba(220,174,81,.32) 74%, transparent 100%);
}

@keyframes scene-wipe {
  0% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

.cinematic-bg {
  position: absolute;
  z-index: -3;
  inset: -4%;
  background-size: cover;
  background-position: center;
  transform: translate3d(var(--mouse-x), calc(var(--mouse-y) + var(--parallax-y)), 0) scale(1.08);
  filter: saturate(.84) contrast(1.04);
  transition: transform .18s linear, filter 1.2s ease;
  will-change: transform;
}

.scene.is-active .cinematic-bg {
  filter: saturate(1) contrast(1.02);
  animation: background-arrive 7s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes background-arrive {
  from { transform: translate3d(var(--mouse-x), calc(var(--mouse-y) + var(--parallax-y) + 16px), 0) scale(1.14); }
  to { transform: translate3d(var(--mouse-x), calc(var(--mouse-y) + var(--parallax-y)), 0) scale(1.08); }
}
.scene-shade { position: absolute; z-index: -2; inset: 0; pointer-events: none; }
.scene-hero .scene-shade { background: linear-gradient(90deg, rgba(0,0,0,.08) 25%, rgba(0,0,0,.52) 63%, rgba(0,0,0,.86) 100%), linear-gradient(0deg, rgba(0,0,0,.72), transparent 38%); }
.scene-light .scene-shade { background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.76) 34%, transparent 66%); }
.scene-milan .scene-shade { background: linear-gradient(90deg, rgba(5,5,5,.82) 0%, rgba(5,5,5,.43) 35%, transparent 63%), linear-gradient(0deg, rgba(0,0,0,.65), transparent 42%); }
.scene-color .cinematic-bg { background-position: 20% center; filter: saturate(.45) brightness(.58); }
.scene-color .scene-shade { background: linear-gradient(90deg, rgba(0,0,0,.83) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.86) 100%); }
.scene-flagship .scene-shade { background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,.25) 50%, rgba(255,255,255,.96) 78%, #fff 100%); }

.scene-copy { position: relative; z-index: 2; width: min(640px, 47vw); }
.align-right { margin-left: auto; }
.align-left { margin-right: auto; }
.top-copy { align-self: flex-start; margin-top: 8vh; }
.compact-copy { width: min(540px, 42vw); }
.dark-copy { color: #161716; }

.eyebrow { margin: 0 0 28px; display: flex; align-items: center; gap: 14px; font: 600 10px/1.4 "Arial Narrow", Arial, sans-serif; letter-spacing: .38em; text-transform: uppercase; color: var(--gold-bright); opacity: 0; transform: translateX(-34px); filter: blur(5px); transition: opacity .65s .16s ease, transform .85s .16s cubic-bezier(.2,.8,.2,1), letter-spacing 1s .16s ease, filter .65s .16s ease; }
.eyebrow span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 8px; letter-spacing: 0; }
.eyebrow::after { content: ""; width: 54px; height: 1px; margin-left: 5px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .7s .62s ease; }
.dark-copy .eyebrow { color: #9d7123; }
.scene h1, .scene h2 { margin: 0; font: 700 clamp(56px, 7.4vw, 132px)/.82 "Arial Narrow", "Helvetica Neue", Arial, sans-serif; letter-spacing: -.075em; text-transform: uppercase; opacity: 0; clip-path: inset(0 100% 0 0); transform: translate3d(-46px, 22px, 0) skewX(-3deg); filter: blur(8px); transition: opacity .35s .3s ease, clip-path 1.15s .26s cubic-bezier(.77,0,.18,1), transform 1.15s .26s cubic-bezier(.2,.8,.2,1), filter .7s .32s ease; }
.scene h2 { font-size: clamp(48px, 6vw, 102px); }
.scene h1 em, .scene h2 em { color: var(--gold-bright); font-style: normal; font-weight: 400; }
.title-word { display: inline-block; white-space: nowrap; }
.reactive-title .letter {
  display: inline-block;
  transform: translate3d(var(--letter-x, 0), var(--letter-y, 0), 0) rotate(var(--letter-r, 0deg));
  transition: transform .28s cubic-bezier(.2,.8,.2,1), text-shadow .35s ease;
  will-change: transform;
}
.scene.is-active .reactive-title:hover .letter {
  text-shadow: 0 0 24px rgba(241,189,66,.25);
}
.dark-copy h2 em { color: #b98328; }
.lead { margin: 30px 0 0; max-width: 560px; font: 400 clamp(20px, 2vw, 30px)/1.22 Arial, sans-serif; letter-spacing: -.035em; opacity: 0; transform: translate3d(-28px, 18px, 0); filter: blur(5px); transition: .85s .58s cubic-bezier(.2,.8,.2,1); }
.support { margin: 14px 0 0; max-width: 480px; color: var(--muted); font: 400 14px/1.55 Arial, sans-serif; opacity: 0; transform: translate3d(-22px, 16px, 0); filter: blur(4px); transition: .85s .72s cubic-bezier(.2,.8,.2,1); }
.dark-copy .support { color: rgba(20,21,20,.62); }
.is-active .eyebrow, .is-active h1, .is-active h2, .is-active .lead, .is-active .support { opacity: 1; transform: none; filter: none; }
.is-active .eyebrow { letter-spacing: .26em; }
.is-active .eyebrow::after { transform: scaleX(1); }
.is-active h1, .is-active h2 { clip-path: inset(0 0 0 0); }
.scroll-cue { display: inline-flex; align-items: center; gap: 32px; margin-top: 40px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.36); font: 600 10px/1 Arial, sans-serif; letter-spacing: .18em; text-transform: uppercase; opacity: 0; transform: translateX(-20px); transition: .9s .88s ease; }
.is-active .scroll-cue { opacity: 1; transform: none; }
.scroll-cue i { font-style: normal; font-size: 18px; color: var(--gold-bright); animation: arrow 1.7s ease-in-out infinite; }
@keyframes arrow { 50% { transform: translateY(5px); } }

.scene-index { position: absolute; left: 4.5vw; bottom: 92px; font: 600 9px/1 Arial, sans-serif; letter-spacing: .18em; color: rgba(255,255,255,.62); }
.dark-index { color: rgba(15,15,15,.55); }

.product-layer {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: min(680px, 43vw);
  perspective: 1200px;
}
.product-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1.763 / 1;
  transform: translate3d(var(--product-x), var(--product-y), 0) rotateX(var(--product-tilt-x)) rotateY(var(--product-tilt-y));
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.product-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  clip-path: var(--clip);
  opacity: 0;
  transform: translate3d(var(--from-x), var(--from-y), 0) rotate(var(--from-r)) scale(.86);
  filter: blur(8px) drop-shadow(0 22px 28px rgba(0,0,0,.24));
  transition: opacity .55s var(--delay) ease, transform 1.15s var(--delay) cubic-bezier(.16,.82,.24,1), filter .8s var(--delay) ease;
  will-change: opacity, transform, filter;
}
.scene.is-active .product-stack img {
  opacity: 1;
  transform: translate3d(0,0,0) rotate(0deg) scale(1);
  filter: blur(0) drop-shadow(0 22px 28px rgba(0,0,0,.24));
}
.product-hero { left: 25.5%; bottom: 11%; width: min(430px, 27vw); }
.product-innovation { right: 1%; bottom: 8%; width: min(730px, 45vw); }
.product-milan { left: 37%; bottom: 7%; width: min(640px, 40vw); }
.product-color { left: 20%; bottom: 10%; width: min(390px, 24vw); }
.product-flagship { left: 2%; bottom: 6%; width: min(780px, 49vw); }
.science-orbit { position: absolute; border: 1px solid rgba(73,171,185,.24); border-radius: 50%; pointer-events: none; opacity: 0; transform: scale(.45); transition: opacity .9s .7s ease, transform 1.3s .7s cubic-bezier(.2,.8,.2,1); }
.scene-light.is-active .science-orbit { opacity: 1; transform: scale(1); animation: orbit 16s 1.6s linear infinite; }
.orbit-one { width: 180px; height: 180px; left: 42%; top: 24%; }
.orbit-two { width: 72px; height: 72px; left: 48%; top: 40%; animation-direction: reverse; }
@keyframes orbit { to { transform: rotate(360deg); } }

.vertical-word { position: absolute; right: 5vw; top: 20%; writing-mode: vertical-rl; font: 700 clamp(60px,8vw,130px)/1 Arial, sans-serif; letter-spacing: -.08em; color: rgba(255,255,255,.11); opacity: 0; transform: translateY(-70px); transition: opacity 1.1s .45s ease, transform 1.5s .45s cubic-bezier(.2,.8,.2,1); }
.scene-milan.is-active .vertical-word { opacity: 1; transform: none; }
.color-word { position: absolute; left: 0; top: 7%; font: 700 19vw/.8 Arial, sans-serif; letter-spacing: -.1em; color: rgba(255,255,255,.035); opacity: 0; transform: translateX(-7vw); transition: opacity 1s .35s ease, transform 1.6s .35s cubic-bezier(.2,.8,.2,1); }
.scene-color.is-active .color-word { opacity: 1; transform: none; }
.color-cards { position: relative; z-index: 2; margin-left: auto; display: grid; grid-template-columns: repeat(2, minmax(210px, 270px)); gap: 14px; }
.color-cards article { min-height: 330px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.24); background: rgba(7,7,7,.38); backdrop-filter: blur(14px); transform: translate3d(50px,70px,0) rotate(2deg); opacity: 0; transition: 1s .5s cubic-bezier(.2,.8,.2,1); }
.color-cards article:nth-child(2) { transition-delay: .68s; transform: translate3d(50px,-40px,0) rotate(-2deg); }
.is-active .color-cards article { opacity: 1; transform: translateY(0); }
.color-cards span { font: 600 9px/1 Arial, sans-serif; color: var(--gold-bright); }
.color-cards img { width: 100%; max-height: 70px; object-fit: contain; filter: brightness(0) invert(1); }
.color-cards small { font: 600 9px/1 Arial, sans-serif; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.54); }

.flagship-logo { display: block; width: min(330px, 72%); max-height: 118px; object-fit: contain; object-position: left center; margin: 0 0 28px; opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-30px); transition: opacity .45s .22s ease, clip-path 1s .24s cubic-bezier(.77,0,.18,1), transform 1s .24s cubic-bezier(.2,.8,.2,1); }
.is-active .flagship-logo { opacity: 1; transform: none; }
.is-active .flagship-logo { clip-path: inset(0 0 0 0); }
.scene-flagship h2 { font-size: clamp(44px, 5vw, 88px); }

.scene-final { justify-content: center; text-align: center; background: radial-gradient(circle at 50% 46%, #1a1610 0%, #090a09 38%, #030404 72%); }
.final-glow { position: absolute; width: 58vw; height: 58vw; border: 1px solid rgba(220,174,81,.18); border-radius: 50%; box-shadow: 0 0 120px rgba(220,174,81,.08), inset 0 0 120px rgba(220,174,81,.04); animation: final-pulse 5s ease-in-out infinite; }
.final-grid { position: absolute; inset: 0; opacity: .09; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(circle, black, transparent 70%); }
@keyframes final-pulse { 50% { transform: scale(1.04); opacity: .72; } }
.final-content { position: relative; z-index: 2; width: min(780px, 90vw); }
.centered { justify-content: center; }
.final-logo { width: 285px; height: 150px; object-fit: contain; margin: -12px auto 20px; filter: blur(7px) drop-shadow(0 0 34px rgba(237,178,45,.15)); opacity: 0; transform: scale(.78); transition: 1s .28s cubic-bezier(.2,.8,.2,1); }
.is-active .final-logo { opacity: 1; transform: scale(1); filter: blur(0) drop-shadow(0 0 34px rgba(237,178,45,.15)); }
.scene-final h2 { font-size: clamp(64px, 9vw, 150px); }
.final-content > p:not(.eyebrow) { margin: 30px auto 0; max-width: 560px; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.5; opacity: 0; transform: translateY(20px); transition: .8s .72s ease; }
.scene-final.is-active .final-content > p:not(.eyebrow) { opacity: 1; transform: none; }
.primary-cta { margin: 34px auto 0; width: fit-content; min-width: 250px; padding: 17px 24px; display: flex; justify-content: center; align-items: center; gap: 24px; border: 1px solid var(--gold); border-radius: 999px; color: #111; background: var(--gold-bright); font: 700 11px/1 Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transform: translateY(18px) scale(.95); transition: opacity .7s .88s ease, transform .7s .88s ease, box-shadow .35s ease; }
.scene-final.is-active .primary-cta { opacity: 1; transform: none; }
.primary-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(224,170,44,.25); }
.final-content > small { display: block; margin-top: 25px; color: rgba(255,255,255,.38); font: 600 8px/1 Arial, sans-serif; letter-spacing: .22em; text-transform: uppercase; }

.logo-marquee { position: fixed; z-index: 28; bottom: 0; left: 0; width: 100%; height: 66px; display: flex; align-items: center; border-top: 1px solid rgba(255,255,255,.2); background: rgba(3,4,4,.78); backdrop-filter: blur(18px); overflow: hidden; }
.marquee-label { flex: 0 0 auto; height: 100%; padding: 0 34px; display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,.18); color: var(--gold-bright); font: 600 8px/1 Arial, sans-serif; letter-spacing: .22em; text-transform: uppercase; }
.marquee-window { overflow: hidden; flex: 1; }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee 34s linear infinite; }
.marquee-item { width: 180px; height: 65px; padding: 20px 26px; display: grid; place-items: center; }
.marquee-item img { width: 100%; height: 30px; object-fit: contain; filter: grayscale(1) brightness(0) invert(1); opacity: .74; }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (min-width: 901px) and (max-width: 1180px) {
  .scene-copy { width: min(610px, 53vw); }
  .scene h1 { font-size: clamp(56px, 6vw, 76px); }
  .scene h2 { font-size: clamp(46px, 5.2vw, 68px); }
  .product-innovation { width: min(660px, 40vw); }
}

@media (max-width: 900px) {
  .event-modal__panel { width: min(425px, calc(100vw - 36px)); }
  .site-header { height: 78px; padding: 12px 18px; }
  .brand { width: 122px; height: 46px; }
  .brand img { width: 96px; height: 38px; }
  .header-mark { display: none; }
  .instagram-text { display: none; }
  .scene-nav { display: none; }
  .scene { min-height: 100vh; min-height: 100svh; padding: 92px max(20px, env(safe-area-inset-right)) calc(76px + env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left)); align-items: flex-end; }
  .scene-copy, .compact-copy { width: 100%; }
  .scene h1, .scene h2 { font-size: clamp(42px, 13vw, 70px); line-height: .88; }
  .lead { font-size: clamp(16px, 4.8vw, 20px); line-height: 1.25; max-width: 92%; }
  .support { font-size: 13px; max-width: 92%; }
  .eyebrow { margin-bottom: 18px; font-size: 8px; }
  .scene-index { left: max(20px, env(safe-area-inset-left)); bottom: calc(58px + env(safe-area-inset-bottom)); }
  .product-layer { z-index: 1; }
  .product-hero { left: 45%; top: 34%; bottom: auto; width: 55vw; }
  .product-innovation { right: -8%; top: 32%; bottom: auto; width: 78vw; }
  .product-milan { left: 22%; top: 34%; bottom: auto; width: 76vw; }
  .product-color { left: 34%; top: 38%; bottom: auto; width: 60vw; }
  .product-flagship { left: -4%; top: 24%; bottom: auto; width: 92vw; }
  .scene-hero .cinematic-bg { background-position: 30% center; }
  .scene-hero .scene-shade { background: linear-gradient(0deg, rgba(0,0,0,.96) 3%, rgba(0,0,0,.66) 46%, transparent 77%); }
  .scene-light { align-items: flex-end; }
  .scene-light .cinematic-bg { background-position: 61% center; }
  .scene-light .scene-shade { background: linear-gradient(0deg, rgba(255,255,255,.98) 4%, rgba(255,255,255,.82) 48%, transparent 78%); }
  .scene-milan .cinematic-bg { background-position: 46% center; }
  .scene-milan .scene-shade { background: linear-gradient(0deg, rgba(0,0,0,.94) 4%, rgba(0,0,0,.65) 48%, transparent 78%); }
  .top-copy { align-self: auto; margin-top: 0; }
  .vertical-word { top: 14%; right: 12px; font-size: 68px; }
  .scene-color { align-items: flex-start; padding-top: 120px; }
  .scene-color .cinematic-bg { background-position: 26% center; }
  .color-cards { position: absolute; left: 22px; right: 22px; bottom: 92px; grid-template-columns: 1fr 1fr; gap: 8px; }
  .color-cards article { min-height: 150px; padding: 14px; }
  .color-cards img { max-height: 38px; }
  .color-cards small { font-size: 7px; }
  .scene-color .lead { display: none; }
  .scene-flagship .cinematic-bg { background-position: 30% center; }
  .scene-flagship .scene-shade { background: linear-gradient(0deg, rgba(255,255,255,.98) 4%, rgba(255,255,255,.82) 48%, transparent 78%); }
  .flagship-logo { width: 210px; margin-bottom: 18px; }
  .scene-final { align-items: center; }
  .final-logo { width: 220px; height: 120px; }
  .final-content > p:not(.eyebrow) { font-size: 15px; }
  .logo-marquee { height: 50px; }
  .marquee-label { display: none; }
  .marquee-item { width: 138px; height: 49px; padding: 15px 20px; }
  .marquee-item img { height: 22px; }
}

@media (max-width: 480px) {
  .site-header { padding-inline: 14px; }
  .brand { width: 112px; height: 42px; }
  .brand img { width: 88px; height: 34px; }
  .instagram-icon { width: 36px; height: 36px; }
  .scene { padding-inline: 18px; }
  .scene h1, .scene h2 { font-size: clamp(39px, 12.5vw, 58px); }
  .eyebrow { letter-spacing: .18em; }
  .is-active .eyebrow { letter-spacing: .2em; }
  .scroll-cue { gap: 18px; margin-top: 24px; letter-spacing: .12em; }
  .product-hero { left: 42%; width: 62vw; }
  .product-innovation { right: -12%; width: 86vw; }
  .product-milan { left: 18%; width: 84vw; }
  .product-color { left: 31%; width: 66vw; }
  .product-flagship { left: -8%; width: 100vw; }
  .color-cards { left: 18px; right: 18px; }
  .color-cards article { min-width: 0; padding: 12px; }
  .color-cards small { line-height: 1.25; letter-spacing: .1em; }
  .scene-final h2 { font-size: clamp(52px, 18vw, 76px); }
  .final-logo { width: 190px; height: 100px; margin-bottom: 12px; }
  .final-content > p:not(.eyebrow) { margin-top: 20px; }
  .primary-cta { margin-top: 24px; min-width: 230px; }
}

@media (max-width: 900px) and (max-height: 700px) {
  .scene { padding-top: 76px; padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .scene h1, .scene h2 { font-size: clamp(36px, 10.5vw, 52px); }
  .eyebrow { margin-bottom: 12px; }
  .lead { margin-top: 14px; font-size: 15px; }
  .support { margin-top: 8px; line-height: 1.35; }
  .scroll-cue { margin-top: 18px; }
  .product-hero, .product-innovation, .product-milan, .product-color, .product-flagship { top: 23%; transform: scale(.82); transform-origin: center top; }
  .color-cards { bottom: 66px; }
  .color-cards article { min-height: 124px; }
  .flagship-logo { width: 170px; max-height: 72px; margin-bottom: 10px; }
  .final-logo { width: 170px; height: 82px; margin-bottom: 8px; }
  .final-content > p:not(.eyebrow) { margin-top: 15px; font-size: 13px; }
  .primary-cta { margin-top: 18px; padding: 14px 20px; }
  .final-content > small { margin-top: 16px; }
}

@media (max-width: 900px) and (orientation: landscape) {
  .scene { min-height: 100dvh; padding: 72px 70px 64px 28px; align-items: center; }
  .scene-copy, .compact-copy { width: 54%; }
  .scene h1, .scene h2 { font-size: clamp(34px, 7vw, 58px); }
  .lead { font-size: 15px; }
  .support { font-size: 12px; }
  .product-hero, .product-innovation, .product-milan, .product-color, .product-flagship { left: auto; right: 2%; top: 24%; width: 43vw; transform: none; }
  .color-cards { left: auto; right: 18px; bottom: 70px; width: 42%; }
  .color-cards article { min-height: 120px; }
  .scene-final .final-content { width: min(620px, 88vw); }
  .final-logo { display: none; }
}

@media (max-width: 380px) {
  .event-modal { padding-inline: 10px; }
  .event-modal__panel { width: calc(100vw - 20px); }
  .event-modal__close { top: 8px; right: 8px; width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .cinematic-bg { transform: scale(1.03); }
  .marquee-track { animation: none; }
  .product-stack { transform: none; }
}
