/* ============================================================
   Vinyl ID — Design 2
   Sonos-mirror: monochrome, tech-forward, full-bleed media,
   immersive "music in the background" moments.
   Pairs with styles.css (tokens, .s-* type, buttons).
   ============================================================ */

:root {
  --maxw: 1480px;
  --gutter: 40px;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }
/* overflow-x: clip (not hidden) — hidden makes body a scroll container, which breaks position: sticky */
body { background: #fff; overflow-x: clip; }
.topbar { padding-top: env(safe-area-inset-top); }
::selection { background: #000; color: #fff; }

/* ── Promo strip ───────────────────────────────────────── */
.promo {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 9px 20px;
  position: relative;
  z-index: 60;
}

/* ── Nav ──────────────────────────────────────────────────
   Transparent + white text over the hero; flips to solid
   white + black text once scrolled (.is-solid). */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 55;
  color: #fff;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  color: #000;
  border-bottom-color: var(--grey-15);
}
.nav-left { display: flex; align-items: center; gap: 44px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 19px; letter-spacing: -0.03em;
  color: currentColor;
}
.brand-mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle, currentColor 0 20%, transparent 20.5% 40%, currentColor 40.5% 47%, transparent 47.5% 100%);
  border: 1.5px solid currentColor;
  position: relative;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 3px; height: 3px; border-radius: 50%; background: currentColor;
}
.nav-links { display: flex; gap: 26px; }
/* Hide the duplicated waitlist link on desktop; show only in mobile dropdown */
.nav-links .nav-waitlist { display: none; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: currentColor;
  padding-bottom: 3px; border-bottom: 1.5px solid transparent;
  transition: border-color .2s, opacity .2s;
}
.nav-links a:hover { opacity: .6; }
.nav-links a.active { border-bottom-color: currentColor; }
.nav-utils { display: flex; gap: 20px; align-items: center; color: currentColor; }
.nav-utils a { display: grid; place-items: center; color: currentColor; opacity: .9; transition: opacity .2s; }
.nav-utils a:hover { opacity: .55; }

@media (max-width: 880px) {
  .nav {
    padding: 0 16px;
    gap: 12px;
    align-items: center;
    height: 56px;
  }
  .nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
  }
  .brand {
    font-size: 15px;
    letter-spacing: -0.02em;
  }
  .brand-mark {
    width: 20px;
    height: 20px;
  }
  .nav-links { display: none; }
  /* Hide header CTA on mobile — duplicate appears in dropdown */
  .nav-cta { display: none !important; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    background: rgba(255,255,255,0.1);
    color: currentColor;
    cursor: pointer;
    transition: background .2s ease;
    flex-shrink: 0;
  }
  .nav-toggle:hover { background: rgba(255,255,255,0.2); }
  .nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
    position: relative;
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background: currentColor;
  }
  .nav-toggle span::before { top: -5px; }
  .nav-toggle span::after { top: 5px; }
  .nav-cta {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    min-width: 0;
    white-space: nowrap;
    border-radius: 999px;
    flex-shrink: 0;
  }
  .nav.open {
    background: rgba(255,255,255,.96);
    color: #000;
    border-bottom: 1px solid rgba(0,0,0,.08);
    height: auto;
  }
  .nav.open .nav-toggle { color: #000; border-color: rgba(0,0,0,.12); background: rgba(255,255,255,.96); }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 8px 16px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(0,0,0,.08);
    z-index: 50;
  }
  /* Show the waitlist entry inside the open dropdown */
  .nav.open .nav-links .nav-waitlist { display: block; color: #000; }
  .nav.open .nav-links a {
    color: #000;
    font-size: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .nav.open .nav-links a:last-child { border-bottom: none; }
  .nav.open .nav-cta {
    border-color: #000;
    color: #fff;
    background: #000;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    padding: 12px 14px;
  }
}

/* ── Layout helpers ───────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 128px var(--gutter); }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--grey-60);
}
.lead { font-size: 19px; line-height: 1.55; color: #444; }
.muted { color: var(--grey-60); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── HERO — full screen media ─────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #050505;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media image-slot, .hero-media img, .hero-media .media-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
/* Cinematic slow zoom on the hero media */
.hero-media .zoom { animation: slowzoom 24s ease-in-out infinite alternate; height: 100%; }
@keyframes slowzoom { from { transform: scale(1.04); } to { transform: scale(1.16); } }
/* Ambient hero video: darkened so the headline stays readable.
   Blur removed for testing (was: blur(13px)). */
.hero-media .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55);
  transform: scale(1.18);
  animation: videodrift 32s ease-in-out infinite alternate;
}
@keyframes videodrift { from { transform: scale(1.18); } to { transform: scale(1.3); } }
@media (prefers-reduced-motion: reduce) { .hero-media .hero-video { display: none; } }
/* Monochrome wash + vignette so any dropped image reads B&W */
.hero-grade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 52%, rgba(0,0,0,.82) 100%),
    radial-gradient(120% 80% at 50% 40%, transparent 40%, rgba(0,0,0,.5) 100%);
  mix-blend-mode: normal;
  pointer-events: none;
}
.hero-grade.bw { backdrop-filter: grayscale(1) contrast(1.05); -webkit-backdrop-filter: grayscale(1) contrast(1.05); }
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter) 7vh;
}
.hero h1 {
  font-weight: 500;
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.92; letter-spacing: -0.045em;
  margin-bottom: 22px; max-width: 14ch;
  text-wrap: balance;
}
.hero p { font-size: clamp(16px, 1.4vw, 20px); max-width: 46ch; color: rgba(255,255,255,.82); margin-bottom: 30px; line-height: 1.5; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Grain overlay (subtle film texture) */
.grain {
  position: absolute; inset: -50%; z-index: 1; pointer-events: none;
  opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainshift 1.2s steps(3) infinite;
}
@keyframes grainshift { 0%{transform:translate(0,0)} 33%{transform:translate(-4%,2%)} 66%{transform:translate(3%,-3%)} 100%{transform:translate(0,0)} }

/* Scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(#fff, transparent); animation: cuepulse 2s ease-in-out infinite; transform-origin: top; }
@keyframes cuepulse { 0%,100%{ transform: scaleY(.4); opacity:.5 } 50%{ transform: scaleY(1); opacity:1 } }

/* ── Statement (big centered type) ────────────────────── */
.statement { padding: 168px var(--gutter); text-align: center; }
.statement h2 {
  font-weight: 500; font-size: clamp(34px, 5vw, 76px);
  line-height: 1.04; letter-spacing: -0.035em; max-width: 18ch; margin: 0 auto;
  text-wrap: balance;
}
.statement .hl { position: relative; }

/* ── Full-bleed moment (text over media) ──────────────── */
.moment {
  position: relative; height: 96svh; min-height: 620px;
  display: flex; overflow: hidden; color: #fff; background: #0a0a0a;
}
.moment .media { position: absolute; inset: 0; z-index: 0; }
.moment image-slot, .moment .media img, .moment .media-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.moment .grade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.3) 45%, rgba(0,0,0,0) 78%);
}
.moment.right .grade { background: linear-gradient(270deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.3) 45%, rgba(0,0,0,0) 78%); }
.moment-inner {
  position: relative; z-index: 2; max-width: var(--maxw); width: 100%;
  margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center;
}
.moment.right .moment-inner { justify-content: flex-end; }
.moment-card { max-width: 480px; }
.moment.right .moment-card { text-align: left; }
.moment h2 { font-weight: 500; font-size: clamp(34px, 4.4vw, 68px); line-height: 0.98; letter-spacing: -0.035em; margin-bottom: 20px; text-wrap: balance; }
.moment p { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.feature-list li { display: flex; gap: 12px; font-size: 15px; color: rgba(255,255,255,.92); }
.feature-list svg { flex-shrink: 0; margin-top: 2px; opacity: .9; }

/* ── Immersive audio area (blurred record + visualizer) ── */
.immersive {
  position: relative; min-height: 100svh; overflow: hidden;
  background: #060606; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
/* big blurred spinning record glowing behind frosted glass */
.immersive .disc-glow {
  position: absolute; top: 50%; left: 50%;
  width: min(110vh, 1100px); aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    repeating-radial-gradient(circle at center, #161616 0 2px, #0c0c0c 2px 7px),
    #0a0a0a;
  filter: blur(2px);
  box-shadow: 0 0 200px 40px rgba(255,255,255,.06);
  animation: spin 14s linear infinite;
  z-index: 0;
}
.immersive .disc-glow::before {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 28%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #fff 0 14%, #c9c9c9 16%, #6e6e6e 60%, #2a2a2a 100%);
}
.immersive .haze {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 50%, transparent 0%, rgba(6,6,6,.7) 78%, #060606 100%);
  backdrop-filter: blur(2px);
}
.immersive-inner { position: relative; z-index: 2; padding: 0 var(--gutter); max-width: 820px; }
.immersive .eyebrow { color: rgba(255,255,255,.55); }
.immersive h2 { font-weight: 500; font-size: clamp(36px, 5.5vw, 88px); line-height: 0.96; letter-spacing: -0.04em; margin: 14px 0 22px; text-wrap: balance; }
.immersive p { font-size: 18px; color: rgba(255,255,255,.72); max-width: 50ch; margin: 0 auto 36px; line-height: 1.55; }

/* Equalizer / visualizer */
.viz { display: flex; align-items: flex-end; justify-content: center; gap: 5px; height: 76px; margin: 0 auto 4px; }
.viz span {
  width: 5px; border-radius: 3px; background: #fff;
  height: 16%; transform-origin: bottom;
  animation: eq 1.1s ease-in-out infinite;
}
.viz.paused span { animation-play-state: paused; }
@keyframes eq { 0%,100%{ height: 14%; opacity:.5 } 50%{ height: 92%; opacity:1 } }

/* Now-playing chip */
.np {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 16px 12px 12px; margin-top: 14px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  background: rgba(255,255,255,.04); backdrop-filter: blur(8px);
}
.np .art { width: 44px; height: 44px; border-radius: 50%; background: #1a3a52; position: relative; overflow: hidden; }
.np .art::after { content:''; position:absolute; inset:0; margin:auto; width:8px; height:8px; border-radius:50%; background:#060606; }
.np .art.spin { animation: spin 4s linear infinite; }
.np .meta { text-align: left; }
.np .meta .t { font-size: 14px; font-weight: 600; }
.np .meta .a { font-size: 12px; color: rgba(255,255,255,.6); }

/* Floating sound toggle */
.sound-toggle {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 52px; height: 52px; border-radius: 50%;
  background: #000; color: #fff; border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; box-shadow: 0 8px 30px rgba(0,0,0,.3);
  transition: transform .2s ease;
}
.sound-toggle:hover { transform: scale(1.06); }
.sound-toggle .bars { display: flex; gap: 2px; align-items: flex-end; height: 16px; }
.sound-toggle .bars i { width: 2.5px; background: #fff; height: 40%; border-radius: 2px; animation: eq 1s ease-in-out infinite; }
.sound-toggle.muted .bars i { animation-play-state: paused; height: 30%; opacity: .5; }
.sound-toggle .bars i:nth-child(2){ animation-delay:.2s } .sound-toggle .bars i:nth-child(3){ animation-delay:.4s } .sound-toggle .bars i:nth-child(4){ animation-delay:.1s }

/* ── Shop grid ────────────────────────────────────────── */
.row-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; gap: 24px; }
.row-head h2 { font-weight: 500; font-size: clamp(30px, 3.4vw, 52px); letter-spacing: -0.03em; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product { color: #000; display: block; }
.product .frame {
  aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; position: relative;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(180deg,#f4f4f4,#e7e7e7);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.product:hover .frame { transform: translateY(-6px); }
.product .frame.dark { background: linear-gradient(180deg,#262626,#070707); }
.product .tag { position: absolute; top: 16px; left: 16px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.product .frame.dark .tag { color: #fff; }
.product .pr-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.product h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.product .price { font-size: 16px; font-weight: 500; }
.product .sub { font-size: 14px; color: var(--grey-60); }

/* Device mock (CSS) */
.device {
  width: 62%; aspect-ratio: 4/3; background: #141414; border-radius: 16px; padding: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
}
.device .screen {
  width: 100%; height: 100%; border-radius: 9px; padding: 16px;
  display: flex; flex-direction: column; justify-content: space-between; overflow: hidden;
  background: #1a3a52; color: #f4ede1;
}
.device .screen .row { display: flex; justify-content: space-between; font-size: 9px; font-weight: 600; letter-spacing: .04em; opacity: .8; }
.device .screen .title { font-size: 20px; font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; }
.device .screen .artist { font-size: 11px; opacity: .75; margin-top: 3px; }

/* ── Listen everywhere tiles ──────────────────────────── */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tile .pic { aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; background: linear-gradient(180deg,#fafafa,#efefef); display: grid; place-items: center; margin-bottom: 18px; position: relative; }
.tile h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.015em; margin-bottom: 6px; }
.tile p { font-size: 14px; color: var(--grey-60); line-height: 1.5; }

.phone { width: 58%; aspect-ratio: 9/19; background: #0a0a0a; border-radius: 30px; padding: 8px; box-shadow: 0 30px 60px rgba(0,0,0,.18); }
.phone .scr { width: 100%; height: 100%; background: #fff; border-radius: 23px; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.phone .np-label { font-size: 9px; font-weight: 600; color: var(--grey-60); letter-spacing: .08em; }
.phone .cover { width: 100%; aspect-ratio: 1; border-radius: 5px; background: #3d1f5c; }
.dashboard { width: 86%; aspect-ratio: 16/10; background:#fff; border-radius:8px; padding:14px; box-shadow: 0 22px 50px rgba(0,0,0,.12); border: 1px solid var(--grey-15); }
.dashboard .dh { display:flex; justify-content:space-between; margin-bottom:10px; font-size:10px; font-weight:600; }
.dashboard .grid { display:grid; grid-template-columns: repeat(7,1fr); gap:4px; }
.dashboard .grid i { aspect-ratio:1; border-radius:2px; }

/* ── Community live (black band) ──────────────────────── */
.band-dark { background: #000; color: #fff; }
.live-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.live-cell { aspect-ratio: 1; border-radius: 3px; padding: 14px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.live-cell .live-dot { font-size: 9px; font-weight: 700; letter-spacing: .1em; display: flex; align-items: center; gap: 6px; }
.live-cell .live-dot::before { content:''; width:6px; height:6px; border-radius:50%; background: var(--rust); box-shadow: 0 0 0 0 rgba(196,74,42,.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(196,74,42,.6) } 100%{ box-shadow:0 0 0 9px rgba(196,74,42,0) } }
.live-cell .lt { font-size: 14px; font-weight: 700; line-height: 1.05; }
.live-cell .la { font-size: 10px; opacity: .75; margin-top: 3px; }

/* ── Marquee ──────────────────────────────────────────── */
.works .marquee-track { border-top: 1px solid var(--grey-15); border-bottom: 1px solid var(--grey-15); padding: 36px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.works .marquee span { font-size: 34px; font-weight: 500; letter-spacing: -0.02em; color: #b3b3b3; white-space: nowrap; }

/* ── Quote ────────────────────────────────────────────── */
.quote { text-align: center; }
.quote blockquote { font-weight: 400; font-size: clamp(28px, 3.6vw, 56px); line-height: 1.1; letter-spacing: -0.025em; max-width: 16ch; margin: 0 auto 28px; text-wrap: balance; }
.quote cite { font-style: normal; font-size: 14px; color: var(--grey-60); }

/* ── Final CTA (full screen) ──────────────────────────── */
.final {
  position: relative; min-height: 90svh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; background: #000; overflow: hidden;
}
.final .disc-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(90vh, 900px); aspect-ratio: 1; border-radius: 50%; background: repeating-radial-gradient(circle at center,#141414 0 2px,#0a0a0a 2px 7px); filter: blur(3px); opacity: .6; animation: spin 18s linear infinite; }
.final-inner { position: relative; z-index: 2; padding: 0 var(--gutter); max-width: 820px; }
.final h2 { font-weight: 500; font-size: clamp(40px, 6vw, 104px); line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 22px; text-wrap: balance; }
.final p { font-size: 18px; color: rgba(255,255,255,.75); max-width: 52ch; margin: 0 auto 32px; line-height: 1.55; }
.final .hero-cta { justify-content: center; }

/* ── Footer ───────────────────────────────────────────── */
.footer { background: #000; color: #fff; }
.footer .news { padding: 88px var(--gutter); border-bottom: 1px solid #181818; }
.footer .news-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; }
.footer .news h2 { font-weight: 500; font-size: clamp(32px,3.6vw,56px); letter-spacing: -0.03em; max-width: 12ch; }
.footer .news p { color: #a0a0a0; font-size: 15px; margin-bottom: 18px; max-width: 46ch; }
.footer .news form { display: flex; max-width: 480px; border-bottom: 1px solid #fff; }
.footer .news input { flex: 1; background: transparent; border: none; outline: none; color: #fff; font-size: 16px; padding: 14px 0; font-family: inherit; }
.footer .news button { background: transparent; color: #fff; border: none; font-size: 14px; font-weight: 500; }
.footer .cols { padding: 64px var(--gutter) 30px; }
.footer .cols-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 48px; margin-bottom: 56px; }
.footer .fbrand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 22px; letter-spacing: -0.03em; margin-bottom: 16px; }
.footer .fbrand .brand-mark { width: 24px; height: 24px; }
.footer .fdesc { max-width: 34ch; color: #a0a0a0; margin-bottom: 22px; font-size: 14px; line-height: 1.55; }
.footer .social { display: flex; gap: 10px; }
.footer .social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #333; display: grid; place-items: center; font-size: 11px; font-weight: 600; text-transform: uppercase; color: #fff; transition: background .2s, color .2s; }
.footer .social a:hover { background: #fff; color: #000; }
.footer .col h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer .col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer .col a { font-size: 14px; color: #a0a0a0; transition: color .2s; }
.footer .col a:hover { color: #fff; }
.footer .legal { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; border-top: 1px solid #181818; font-size: 12px; color: #a0a0a0; flex-wrap: wrap; }
.footer .legal .links { display: flex; gap: 22px; }

/* ── Canvas mode ──────────────────────────────────────────
   When the page is embedded in the design-canvas overview
   (?canvas=1), swap viewport-height sections for fixed pixel
   heights so the whole page renders as one deterministic,
   fixed-width artboard that can be zoomed out. */
.canvas-mode .hero { height: 860px; min-height: 0; }
.canvas-mode .moment { height: 760px; min-height: 0; }
.canvas-mode .immersive { height: 880px; min-height: 0; }
.canvas-mode .final { height: 820px; min-height: 0; }
.canvas-mode .nav { position: absolute; }
.canvas-mode .scroll-cue { display: none; }
.canvas-mode .sound-toggle { display: none; }
.canvas-mode .hero-media .zoom { animation: none; transform: scale(1.08); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 980px) {
  .nav { padding: 0 24px; }
  .shop-grid, .tiles, .live-grid { grid-template-columns: 1fr 1fr; }
  .footer .news-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer .cols-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .moment .grade, .moment.right .grade { background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%); }
}
@media (max-width: 760px) {
  .hero { min-height: 76svh; min-height: 76vh; }
  .hero-inner { padding-bottom: 4.5rem; }
  .hero h1 { font-size: clamp(36px, 11vw, 52px); }
  .hero p { max-width: 100%; font-size: 16px; }
  .hero-media .hero-video { display: none; }
  .promo { font-size: 11px; padding: 8px 16px; }
  .scroll-cue { bottom: 14px; }
}
@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .section { padding: 84px var(--gutter); }
  .shop-grid, .tiles, .live-grid { grid-template-columns: 1fr; }
  .footer .cols-grid { grid-template-columns: 1fr; }
  .nav {
    padding: 0 16px;
    height: 52px;
  }
  .nav-left { gap: 8px; }
  .brand {
    font-size: 14px;
    letter-spacing: -0.02em;
  }
  .brand-mark {
    width: 18px;
    height: 18px;
  }
  .nav-cta {
    padding: 9px 12px;
    font-size: 12px;
  }
  .nav.open .nav-links {
    padding: 6px 16px;
  }
  .nav.open .nav-links a {
    font-size: 13px;
    padding: 12px 0;
  }
  .nav.open .nav-cta {
    margin-top: 6px;
    padding: 11px 12px;
    font-size: 12px;
  }
  .moment, .final { min-height: auto; padding: 100px 0; }
  .hero { min-height: auto; padding-bottom: 28px; }
}
