:root {
  --yellow: #FFCB05;
  --black: #1D1D1B;
  --deep: #2B2B2B;
  --soft: #F2F2F2;
  --warm: #FFF3C7;
  --grey: #7A7A7A;
  --line-light: rgba(255,255,255,.14);
  --glass-dark: rgba(10,10,9,.42);
  --void: #080808;
  --page-gutter: clamp(22px, 4.8vw, 76px);
  --content-max: 1540px;
  --ease: cubic-bezier(.22,.72,.2,1);
  --px: 0;
  --py: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--void); overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--soft);
  background: var(--void);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.045);
}
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
a { color: inherit; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--black); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--yellow);
  color: var(--black);
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* CINEMATIC BACKGROUND */
.cinema {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #151514 url("assets/img/video-poster.jpg") center / cover no-repeat;
}
.cinema__film {
  position: absolute;
  inset: -1%;
  width: 102%;
  height: 102%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 1s ease;
  background: #151514 url("assets/img/video-poster.jpg") center / cover no-repeat;
}
.video-ready .cinema__film { opacity: 1; }
.cinema__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,4,4,.74) 0%, rgba(7,7,7,.58) 34%, rgba(7,7,7,.31) 61%, rgba(4,4,4,.19) 100%),
    linear-gradient(180deg, rgba(0,0,0,.26) 0%, rgba(0,0,0,.12) 45%, rgba(0,0,0,.51) 100%);
}
.cinema__left-shade {
  position: absolute;
  left: -12vw;
  top: -10vh;
  width: min(860px, 68vw);
  height: 125vh;
  background: radial-gradient(ellipse at 40% 45%, rgba(5,5,5,.42) 0%, rgba(5,5,5,.2) 48%, transparent 74%);
  filter: blur(16px);
}
.cinema__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 170px rgba(0,0,0,.58), inset 0 -160px 180px rgba(0,0,0,.35);
}
.cinema__grain {
  position: absolute;
  inset: -80%;
  opacity: .045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
  animation: grainShift 11s steps(8) infinite;
}
@keyframes grainShift {
  0% { transform: translate3d(-2%,1%,0); }
  25% { transform: translate3d(2%,-2%,0); }
  50% { transform: translate3d(-1%,2%,0); }
  75% { transform: translate3d(1%,-1%,0); }
  100% { transform: translate3d(-2%,1%,0); }
}

main, .footer { position: relative; z-index: 4; }

/* ACT I */
.hero {
  position: relative;
  min-height: 100svh;
  max-width: var(--content-max);
  margin: 0 auto;
  padding:
    max(24px, env(safe-area-inset-top))
    var(--page-gutter)
    max(34px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: minmax(0, 6.25fr) minmax(400px, 5.75fr);
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "header header"
    "copy installation"
    "cue installation";
  gap: 28px clamp(36px, 4vw, 74px);
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: var(--page-gutter);
  bottom: 0;
  width: calc(100% - var(--page-gutter) * 2);
  border-bottom: 1px solid var(--line-light);
}

.launch-header {
  grid-area: header;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.brand {
  position: relative;
  width: clamp(148px, 13.6vw, 205px);
  min-height: 52px;
  display: flex;
  align-items: center;
  text-decoration: none;
  isolation: isolate;
}
.brand__light {
  position: absolute;
  z-index: -1;
  left: -72px;
  top: 50%;
  width: calc(100% + 128px);
  height: 72px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(245,244,237,.78), rgba(244,244,238,.46) 63%, transparent 100%);
  filter: blur(12px);
  opacity: .86;
  pointer-events: none;
}
.brand img { width: 100%; height: auto; object-fit: contain; }
.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(242,242,242,.86);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .23em;
  text-transform: uppercase;
  white-space: nowrap;
}
.launch-status__pulse {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}
.launch-status__pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255,203,5,.45);
  border-radius: 50%;
  animation: pulse 2.8s ease-out infinite;
}
@keyframes pulse { 0%,45% { transform: scale(.72); opacity: .9; } 100% { transform: scale(1.65); opacity: 0; } }

.hero__copy {
  grid-area: copy;
  align-self: center;
  max-width: 690px;
  padding: clamp(24px, 4vh, 56px) 0 clamp(22px, 3vh, 46px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(18px, 2.8vh, 32px);
  color: rgba(242,242,242,.72);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .29em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--yellow);
  box-shadow: 12px 0 0 rgba(255,203,5,.16);
}
.hero-title {
  margin: 0;
  font-size: clamp(62px, 6.9vw, 112px);
  line-height: .84;
  letter-spacing: -.062em;
  font-weight: 600;
  text-wrap: balance;
}
.title-line { display: block; overflow: hidden; padding: 0 0 .11em; }
.title-line__inner { display: block; transform: translateY(110%); }
.title-line__inner--signal { color: var(--yellow); font-weight: 500; }
.is-loaded .title-line__inner { animation: titleReveal .96s var(--ease) forwards; animation-delay: calc(.14s + var(--order) * .08s); }
@keyframes titleReveal { to { transform: translateY(0); } }
.hero__sub {
  max-width: 570px;
  margin: clamp(22px, 3vh, 34px) 0 0;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.45;
  letter-spacing: -.012em;
  color: rgba(242,242,242,.92);
}
.hero__note {
  max-width: 560px;
  margin: 12px 0 0;
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: .06em;
  color: rgba(242,242,242,.52);
}

.reveal { opacity: 0; transform: translateY(16px); }
.is-loaded .reveal {
  animation: revealIn .8s var(--ease) forwards;
  animation-delay: calc(.38s + var(--order) * .075s);
}
@keyframes revealIn { to { opacity: 1; transform: none; } }

.countdown {
  margin-top: clamp(28px, 4.4vh, 48px);
  max-width: 630px;
}
.countdown__heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 12px;
}
.countdown__heading p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.countdown__zone {
  color: rgba(242,242,242,.46);
  font-size: 9px;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.countdown__rail {
  --progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.32);
  border-bottom: 1px solid var(--line-light);
}
.countdown__rail::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: calc(var(--progress) * 100%);
  height: 2px;
  background: var(--yellow);
  transition: width .92s linear;
}
.countdown__unit {
  position: relative;
  min-height: 74px;
  padding: 14px 16px 10px 0;
}
.countdown__unit:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 17px;
  bottom: 17px;
  width: 1px;
  background: var(--line-light);
}
.countdown__unit strong {
  display: block;
  font-variant-numeric: tabular-nums;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}
.countdown__unit strong.tick { animation: numberTick .3s ease; }
@keyframes numberTick { 50% { opacity: .45; transform: translateY(-2px); } }
.countdown__unit span {
  display: block;
  margin-top: 7px;
  color: rgba(242,242,242,.47);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.notify { max-width: 630px; margin-top: 20px; }
.notify__form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.notify__input {
  width: 100%;
  min-height: 52px;
  border: 0;
  outline: 0;
  color: var(--soft);
  background: transparent;
  padding: 13px 18px 12px 0;
  font-size: 14px;
  letter-spacing: .02em;
}
.notify__input::placeholder { color: rgba(242,242,242,.44); }
.notify__input:focus { box-shadow: inset 0 -1px 0 var(--yellow); }
.notify__input[aria-invalid="true"] { box-shadow: inset 0 -1px 0 #ff7b69; }

.action {
  min-height: 52px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 2px 0 20px;
  background: transparent;
  color: var(--soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.action svg { width: 28px; height: 10px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.action:hover { color: var(--yellow); }
.action:active { transform: translateY(1px); }
.action:focus-visible { outline: 1px solid var(--yellow); outline-offset: 4px; }
.action--solid {
  background: var(--yellow);
  color: var(--black);
  padding: 0 22px;
  min-width: 220px;
}
.action--solid:hover { background: var(--warm); color: var(--black); }
.form-message { margin: 12px 0 0; font-size: 12px; line-height: 1.5; }
.form-message--error { color: #ff9f90; }
.form-message--success { color: var(--warm); }

/* RIGHT-SIDE FASHION INSTALLATION */
.installation {
  grid-area: installation;
  position: relative;
  align-self: stretch;
  min-height: 640px;
  opacity: 0;
  transform: translateX(22px);
}
.is-loaded .installation { animation: installationIn 1.2s var(--ease) .36s forwards; }
@keyframes installationIn { to { opacity: 1; transform: none; } }
.installation::before {
  content: "";
  position: absolute;
  inset: 7% -18% 4% -8%;
  background: linear-gradient(145deg, rgba(255,255,255,.07), transparent 42%), rgba(5,5,5,.08);
  border-left: 1px solid rgba(255,255,255,.10);
  clip-path: polygon(16% 0, 100% 0, 100% 88%, 0 100%, 0 14%);
  backdrop-filter: blur(2px);
}
.installation__symbol {
  position: absolute;
  z-index: 0;
  right: -10%;
  top: 3%;
  height: 96%;
  width: auto;
  object-fit: contain;
  opacity: .10;
  filter: saturate(.85) contrast(1.06);
}
.fashion-panel {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(11,11,10,.26);
  box-shadow: 0 30px 64px rgba(0,0,0,.22);
  transform: translate3d(calc(var(--px) * var(--depth, 0) * 1px), calc(var(--py) * var(--depth, 0) * 1px), 0);
  transition: transform .9s var(--ease), border-color .35s ease;
}
.fashion-panel:hover { border-color: rgba(255,203,5,.34); }
.fashion-panel img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) contrast(1.17) saturate(.78); transition: transform 1.1s var(--ease), filter .8s ease; }
.fashion-panel:hover img { transform: scale(1.025); filter: brightness(.76) contrast(1.14) saturate(.84); }
.fashion-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(255,255,255,.10), transparent 24%, transparent 72%, rgba(0,0,0,.35));
  pointer-events: none;
}
.fashion-panel figcaption, .material figcaption {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 11px;
  color: rgba(242,242,242,.72);
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.fashion-panel figcaption span, .material figcaption span { color: var(--yellow); margin-right: 7px; }
.fashion-panel--silhouette { --depth: 8; z-index: 3; right: 5%; top: 12%; width: 45%; height: 67%; clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); }
.fashion-panel--silhouette img { object-position: center 34%; }
.fashion-panel--drape { --depth: 14; z-index: 4; left: 5%; top: 21%; width: 32%; height: 53%; clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 94%); }
.fashion-panel--drape img { object-position: 56% center; }
.fashion-panel--hardware { --depth: 20; z-index: 5; right: 0; bottom: 5%; width: 31%; aspect-ratio: 1.12; }
.fashion-panel--velocity { --depth: 5; z-index: 2; left: 14%; top: 8%; width: 17%; height: 80%; mix-blend-mode: screen; opacity: .63; }
.fashion-panel--velocity img { object-position: 67% center; filter: brightness(.76) contrast(1.3); }
.installation__coordinate {
  position: absolute;
  z-index: 6;
  right: 2%;
  bottom: 1%;
  margin: 0;
  color: rgba(242,242,242,.42);
  font-size: 8px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.hero__cue {
  grid-area: cue;
  align-self: end;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(242,242,242,.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease;
}
.hero__cue svg { width: 10px; height: 30px; fill: none; stroke: var(--yellow); stroke-width: 1; }
.hero__cue:hover { color: var(--soft); }
.hero__cue:focus-visible { outline: 1px solid var(--yellow); outline-offset: 5px; }

/* EDITORIAL SIGNAL LEDGER */
.signal-ledger {
  position: relative;
  z-index: 4;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 88px) var(--page-gutter);
  display: grid;
  grid-template-columns: .9fr repeat(3, 1fr);
  gap: 0;
  background: linear-gradient(180deg, rgba(7,7,7,.32), rgba(7,7,7,.55));
  backdrop-filter: blur(8px);
}
.signal-ledger::after {
  content: "";
  position: absolute;
  left: var(--page-gutter);
  right: var(--page-gutter);
  bottom: 0;
  border-bottom: 1px solid var(--line-light);
}
.signal-ledger__label {
  padding-right: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 105px;
}
.signal-ledger__label span, .signal-ledger__label strong {
  font-size: 8px;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.signal-ledger__label span { color: var(--yellow); }
.signal-ledger__label strong { color: rgba(242,242,242,.38); font-weight: 400; }
.signal-note {
  position: relative;
  min-height: 105px;
  padding: 0 clamp(20px, 2.2vw, 36px);
  border-left: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.signal-note__index { color: var(--yellow); font-size: 8px; letter-spacing: .1em; padding-top: 4px; }
.signal-note h2 { margin: 0 0 10px; font-size: 13px; letter-spacing: .13em; text-transform: uppercase; }
.signal-note p { max-width: 24ch; margin: 0; color: rgba(242,242,242,.55); font-size: 12px; line-height: 1.55; }

/* ACT II */
.atelier {
  position: relative;
  max-width: var(--content-max);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(94px, 10vw, 156px) var(--page-gutter) clamp(80px, 9vw, 130px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,7,7,.84) 0%, rgba(7,7,7,.72) 50%, rgba(7,7,7,.49) 100%),
    url("assets/img/scene-field.jpg") center / cover no-repeat;
  background-blend-mode: normal, soft-light;
}
.atelier::before {
  content: "02";
  position: absolute;
  top: 7%;
  right: -1%;
  color: rgba(255,255,255,.028);
  font-size: min(34vw, 490px);
  line-height: .8;
  font-weight: 700;
  letter-spacing: -.09em;
  pointer-events: none;
}
.atelier__header { position: relative; z-index: 2; max-width: 900px; margin-bottom: clamp(42px, 6vw, 84px); }
.atelier__header h2 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(54px, 6.5vw, 104px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 500;
}
.atelier__header > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(242,242,242,.68);
  font-size: clamp(15px, 1.28vw, 19px);
  line-height: 1.55;
}
.atelier__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: start;
}
.feedback { max-width: 760px; }
.choice-fieldset { border: 0; padding: 0; margin: 0 0 36px; }
.choice-fieldset legend {
  width: 100%;
  margin-bottom: 16px;
  color: rgba(242,242,242,.84);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.choice-fieldset legend span { float: right; color: rgba(242,242,242,.36); font-size: 8px; letter-spacing: .18em; }
.choice-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(14,14,13,.28);
  color: rgba(242,242,242,.72);
  font-size: 11px;
  letter-spacing: .025em;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
  backdrop-filter: blur(8px);
}
.choice span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border: 1px solid rgba(255,255,255,.3);
}
.choice:hover span { border-color: rgba(255,255,255,.34); color: var(--soft); transform: translateY(-1px); }
.choice input:checked + span { color: var(--black); background: var(--yellow); border-color: var(--yellow); }
.choice input:checked + span::before { background: var(--black); border-color: var(--black); }
.choice input:focus-visible + span { outline: 1px solid var(--yellow); outline-offset: 4px; }

.field { border-bottom: 1px solid rgba(255,255,255,.18); }
.field label {
  display: block;
  color: rgba(242,242,242,.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.field label span { color: rgba(242,242,242,.34); font-weight: 400; margin-left: 5px; }
.field textarea, .field input {
  display: block;
  width: 100%;
  border: 0;
  outline: 0;
  resize: vertical;
  background: transparent;
  color: var(--soft);
  padding: 13px 0 16px;
  font-size: 14px;
  line-height: 1.55;
}
.field textarea { min-height: 136px; }
.field input { min-height: 50px; }
.field textarea::placeholder, .field input::placeholder { color: rgba(242,242,242,.31); }
.field:focus-within { border-color: var(--yellow); }
.field-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 26px; }
.feedback__actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; }
.feedback__actions p { margin: 0; color: rgba(242,242,242,.37); font-size: 8px; line-height: 1.6; letter-spacing: .14em; text-transform: uppercase; }
.atelier-success {
  grid-column: 1;
  max-width: 680px;
  margin: 0;
  padding: 34px 0 34px 24px;
  border-left: 2px solid var(--yellow);
  color: var(--warm);
  font-size: clamp(20px, 2.3vw, 34px);
  line-height: 1.25;
}

.material-wall { position: relative; min-height: 620px; }
.material-wall::before {
  content: "";
  position: absolute;
  inset: -5% -35% 0 -25%;
  background: rgba(7,7,7,.18);
  border-left: 1px solid rgba(255,255,255,.12);
  transform: skewY(-4deg);
  backdrop-filter: blur(3px);
}
.material-wall__symbol {
  position: absolute;
  z-index: 0;
  right: -17%;
  top: -8%;
  height: 95%;
  width: auto;
  opacity: .08;
}
.material { position: absolute; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.15); box-shadow: 0 30px 70px rgba(0,0,0,.27); }
.material img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.68) contrast(1.15) saturate(.74); }
.material::after { content:""; position:absolute; inset:0; background:linear-gradient(145deg,rgba(255,255,255,.08),transparent 28%,rgba(0,0,0,.25)); }
.material--carbon { z-index: 2; left: 0; top: 8%; width: 62%; height: 72%; clip-path: polygon(0 0,100% 4%,100% 100%,0 94%); }
.material--stitch { z-index: 3; right: 0; bottom: 7%; width: 52%; height: 34%; }
.material-wall__annotation {
  position: absolute;
  z-index: 4;
  left: 6%;
  bottom: 1%;
  max-width: 170px;
  padding-left: 13px;
  border-left: 1px solid var(--yellow);
}
.material-wall__annotation span { display:block; color:rgba(242,242,242,.42); font-size:8px; letter-spacing:.16em; text-transform:uppercase; }
.material-wall__annotation strong { display:block; margin-top:7px; color:rgba(242,242,242,.82); font-size:12px; line-height:1.4; font-weight:400; }

.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal-on-scroll.in-view { opacity: 1; transform: none; }

.footer {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 28px var(--page-gutter) max(30px, env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  background: rgba(6,6,6,.77);
  backdrop-filter: blur(16px);
  color: rgba(242,242,242,.44);
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.footer p { margin: 0; }
.footer a { text-decoration: none; transition: color .25s ease; }
.footer a:hover { color: var(--yellow); }
.footer a:focus-visible { outline: 1px solid var(--yellow); outline-offset: 4px; }

/* LAPTOPS / SMALL DESKTOPS */
@media (max-width: 1120px) {
  .hero { grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr); gap: 26px 34px; }
  .hero-title { font-size: clamp(60px, 7vw, 82px); }
  .fashion-panel--silhouette { width: 52%; right: 2%; }
  .fashion-panel--drape { left: 0; width: 36%; }
  .signal-ledger { grid-template-columns: .65fr repeat(3, 1fr); }
  .signal-ledger__label { padding-right: 16px; }
  .atelier__layout { grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr); gap: 50px; }
}

/* TABLET / MOBILE — independently art-directed */
@media (max-width: 800px) {
  :root { --page-gutter: clamp(20px, 5.8vw, 34px); }
  .cinema__film { object-position: 60% center; }
  .cinema__scrim {
    background:
      linear-gradient(180deg, rgba(5,5,5,.52) 0%, rgba(5,5,5,.45) 47%, rgba(5,5,5,.68) 100%),
      linear-gradient(90deg, rgba(4,4,4,.56) 0%, rgba(4,4,4,.18) 100%);
  }
  .cinema__vignette { box-shadow: inset 0 0 100px rgba(0,0,0,.45), inset 0 -120px 140px rgba(0,0,0,.3); }
  .hero {
    min-height: max(100svh, 844px);
    padding-top: max(18px, env(safe-area-inset-top));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    display: block;
    overflow: hidden;
  }
  .launch-header { min-height: 54px; }
  .brand { width: 128px; min-height: 44px; }
  .brand__light { left: -35px; width: calc(100% + 62px); height: 58px; opacity: .84; filter: blur(9px); }
  .launch-status { font-size: 8px; letter-spacing: .17em; gap: 8px; }
  .hero__copy { position: relative; z-index: 7; max-width: 100%; padding: 45px 0 0; }
  .eyebrow { margin-bottom: 17px; font-size: 8px; letter-spacing: .23em; }
  .eyebrow::before { width: 24px; }
  .hero-title { max-width: 7.6ch; font-size: clamp(48px, 14.2vw, 66px); line-height: .88; letter-spacing: -.058em; }
  .hero__sub { max-width: 23em; margin-top: 18px; font-size: 15px; line-height: 1.42; }
  .hero__note { max-width: 31em; margin-top: 9px; font-size: 9px; line-height: 1.5; }
  .countdown { width: 100%; margin-top: 22px; }
  .countdown__heading { margin-bottom: 9px; }
  .countdown__heading p { font-size: 8px; letter-spacing: .14em; }
  .countdown__zone { font-size: 7px; }
  .countdown__unit { min-height: 58px; padding: 10px 7px 8px 0; }
  .countdown__unit:not(:last-child)::after { right: 6px; top: 12px; bottom: 12px; }
  .countdown__unit strong { font-size: clamp(24px, 8vw, 31px); }
  .countdown__unit span { margin-top: 5px; font-size: 6px; }
  .notify { margin-top: 12px; }
  .notify__form { grid-template-columns: 1fr auto; }
  .notify__input { min-height: 46px; font-size: 12px; padding-right: 10px; }
  .action { min-height: 46px; gap: 12px; padding-left: 10px; font-size: 8px; }
  .action svg { width: 22px; }

  .installation {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 10px;
    min-height: 250px;
    height: 29%;
    opacity: 1;
    transform: none;
  }
  .installation::before { inset: 2% -15% 0 20%; opacity: .75; }
  .installation__symbol { right: -11%; top: 0; height: 104%; opacity: .065; }
  .fashion-panel figcaption { font-size: 6px; left: 8px; bottom: 7px; }
  .fashion-panel--silhouette { right: 5%; top: 0; width: 33%; height: 89%; }
  .fashion-panel--drape { left: 34%; top: 18%; width: 22%; height: 65%; }
  .fashion-panel--hardware { right: 35%; bottom: 1%; width: 22%; aspect-ratio: 1.05; }
  .fashion-panel--velocity { left: 23%; top: 4%; width: 8%; height: 83%; opacity: .55; }
  .installation__coordinate { right: 1%; bottom: 0; font-size: 6px; }
  .hero__cue { position: absolute; z-index: 8; left: var(--page-gutter); bottom: 24px; font-size: 7px; gap: 8px; }
  .hero__cue svg { height: 22px; }

  .signal-ledger { grid-template-columns: 1fr; padding-top: 42px; padding-bottom: 42px; }
  .signal-ledger__label { min-height: auto; flex-direction: row; padding: 0 0 20px; }
  .signal-note { min-height: auto; padding: 18px 0; border-left: 0; border-top: 1px solid var(--line-light); }
  .signal-note p { max-width: none; }

  .atelier { padding-top: 88px; min-height: auto; background-position: 58% center; }
  .atelier::before { top: 5%; right: -8%; font-size: 58vw; }
  .atelier__header { margin-bottom: 44px; }
  .atelier__header h2 { font-size: clamp(52px, 15vw, 72px); }
  .atelier__header > p:last-child { margin-top: 20px; font-size: 14px; }
  .atelier__layout { display: flex; flex-direction: column; gap: 48px; }
  .feedback { width: 100%; }
  .choice-fieldset { margin-bottom: 30px; }
  .choice-fieldset legend { line-height: 1.5; }
  .choice-fieldset legend span { float: none; display: block; margin-top: 5px; }
  .choice-grid { gap: 7px; }
  .choice span { min-height: 42px; padding: 0 12px; font-size: 10px; }
  .field-pair { grid-template-columns: 1fr; gap: 22px; }
  .feedback__actions { align-items: stretch; flex-direction: column; gap: 13px; }
  .action--solid { width: 100%; min-width: 0; }
  .material-wall { width: 100%; min-height: 420px; order: -1; margin-top: -8px; }
  .material-wall::before { inset: -5% -20% 3% 18%; }
  .material-wall__symbol { right: -5%; top: 0; height: 95%; opacity: .07; }
  .material--carbon { left: 6%; top: 0; width: 56%; height: 78%; }
  .material--stitch { right: 4%; bottom: 4%; width: 53%; height: 38%; }
  .material-wall__annotation { left: 4%; bottom: 0; }
  .atelier-success { width: 100%; }
  .footer { flex-direction: column; gap: 10px; line-height: 1.6; }
}

@media (max-width: 430px) {
  .hero { min-height: max(100svh, 844px); }
  .hero__copy { padding-top: 38px; }
  .hero-title { font-size: clamp(47px, 14vw, 60px); }
  .hero__sub { font-size: 14px; }
  .hero__note { font-size: 8.5px; }
  .installation { height: 27%; bottom: 5px; }
  .fashion-panel--silhouette { width: 35%; right: 2%; }
  .fashion-panel--drape { left: 33%; width: 23%; }
  .fashion-panel--hardware { right: 34%; }
}

@media (max-height: 760px) and (min-width: 801px) {
  .hero { min-height: 760px; }
  .hero__copy { padding-top: 18px; padding-bottom: 12px; }
  .hero-title { font-size: clamp(56px, 6.2vw, 82px); }
  .countdown { margin-top: 24px; }
  .installation { min-height: 560px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal, .title-line__inner, .installation, .reveal-on-scroll { opacity: 1 !important; transform: none !important; }
  .fashion-panel { transform: none !important; }
  .cinema__grain { display: none; }
}
