/* ============================================================
   RockView Memories — Stylesheet
   Vanilla CSS, mobile-first with desktop enhancements
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Palette */
  --navy:        #0D1B2A;
  --midnight:    #060F18;
  --gold:        #C9A84C;
  --gold-muted:  #A88A3A;
  --gold-soft:   rgba(201, 168, 76, 0.3);
  --gold-faint:  rgba(201, 168, 76, 0.12);
  --cream:       #FAFAF5;
  --warm-white:  #F0EDE6;
  --white:       #FFFFFF;
  --muted:       #8A9BB0;
  --text-dark:   #1A2A3A;

  /* Fonts */
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing (8px scale) */
  --s-1:  8px;
  --s-2:  16px;
  --s-3:  24px;
  --s-4:  32px;
  --s-5:  48px;
  --s-6:  64px;
  --s-7:  80px;
  --s-8:  96px;
  --s-9:  128px;
  --s-10: 160px;

  /* Layout */
  --container:        1200px;
  --container-narrow: 720px;
  --section-py:       clamp(80px, 12vw, 128px);

  /* Transitions */
  --t-fast: 0.25s ease;
  --t-mid:  0.4s ease;
  --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: var(--gold); color: var(--navy); }

body.is-loading {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

/* ---------- PAGE LOADER ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  background: var(--midnight);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-loader__glow {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(520px, 90vw);
  height: min(360px, 55vh);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse 50% 45% at 50% 50%,
    rgba(201, 168, 76, 0.28) 0%,
    rgba(201, 168, 76, 0.08) 42%,
    transparent 72%
  );
  filter: blur(40px);
  animation: loader-glow-breathe 4.5s ease-in-out infinite;
}
.page-loader__glow--soft {
  top: 58%;
  width: min(640px, 110vw);
  height: min(280px, 40vh);
  background: radial-gradient(
    ellipse 55% 50% at 50% 50%,
    rgba(13, 27, 42, 0.9) 0%,
    transparent 70%
  );
  filter: blur(28px);
  animation: loader-glow-breathe 4.5s ease-in-out infinite reverse;
  opacity: 0.85;
}
.page-loader__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--s-4);
}
.page-loader__logo {
  width: min(220px, 58vw);
  height: auto;
  animation: loader-logo-pulse 2.4s ease-in-out infinite;
  will-change: transform, opacity;
}
.page-loader__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.55);
}
@keyframes loader-logo-pulse {
  0%, 100% {
    opacity: 0.78;
    transform: scale(1);
    filter: drop-shadow(0 0 28px rgba(201, 168, 76, 0.12));
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
    filter: drop-shadow(0 0 48px rgba(201, 168, 76, 0.32));
  }
}
@keyframes loader-glow-breathe {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-2);
  background: var(--gold);
  color: var(--navy);
  padding: 12px 18px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  z-index: 2000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: var(--s-2); }

/* Focus visible — keyboard navigation */
*:focus { outline: none; }
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- LAYOUT UTILS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section__head { margin-bottom: var(--s-7); }
.section__head--center { text-align: center; }

/* Common typography */
.headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 6.4vw, 64px);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.headline--on-dark { color: var(--white); }

.subhead {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.2;
  color: var(--muted);
  margin-top: var(--s-3);
}

.body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text-dark);
}
.body--on-dark { color: var(--muted); }

.gold-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* Label */
.label-gold {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.label-gold--center { justify-content: center; }
.label-rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.head-rule {
  width: 100%;
  height: 1px;
  background: var(--gold-faint);
  margin-top: var(--s-5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  text-align: center;
  min-height: 44px;
  white-space: nowrap;
}
.btn--light {
  background: var(--white);
  color: var(--navy);
}
.btn--light:hover { background: var(--gold); color: var(--white); }

.btn--dark {
  background: var(--navy);
  color: var(--white);
  padding: 18px 28px;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.btn--dark:hover { background: var(--gold); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 28px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn--gold:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: color var(--t-fast), transform var(--t-fast);
  margin-top: var(--s-5);
}
.link-gold:hover { color: var(--gold-muted); }

.link-gold-inline {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--t-fast);
}
.link-gold-inline:hover { color: var(--gold-muted); }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION — minimal, out of the way during the film
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(6, 15, 24, 0.65) 0%, transparent 100%);
  border-bottom: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease,
    transform 0.5s ease,
    background 0.4s ease,
    padding 0.4s ease;
  pointer-events: none;
}
.nav.is-visible,
body.hero-playing .nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
/* Intro film: logo top-left, Skip top-right (nav CTA removed from layout) */
body.hero-playing .nav__link {
  display: none;
}
body.hero-playing .nav {
  padding: max(20px, env(safe-area-inset-top, 0px)) 0 20px;
}
body.hero-playing .nav__inner {
  justify-content: space-between;
  align-items: center;
}
body.hero-playing .hero__skip {
  display: inline-flex !important;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0;
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--t-fast);
}
.nav__logo img {
  width: auto;
  height: 44px;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transition: height 0.75s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
body.hero-playing .nav__logo img {
  height: clamp(64px, 11vw, 80px);
  max-width: 280px;
}
.nav__logo:hover { opacity: 0.8; }

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--t-fast), opacity var(--t-fast), visibility var(--t-fast);
}
.nav.is-visible .nav__link {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav__link:hover {
  color: var(--white);
}

.nav.is-scrolled {
  background: rgba(6, 15, 24, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-faint);
}
.nav.is-scrolled .nav__logo img { height: 38px; max-width: 180px; }

/* Lock scroll while intro film plays */
body.hero-playing {
  overflow: hidden;
  height: 100vh;
}

/* ============================================================
   HERO — cinematic autoplay (100vh, no scroll-scrub)
   ============================================================ */
.hero {
  position: relative;
  background: var(--midnight);
}
.hero__cinema {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--midnight);
}
.hero__video-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video-stack {
  position: absolute;
  inset: 0;
}
.hero__video-stack .hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  background: var(--midnight);
}
.hero__video--hq {
  opacity: 0;
  z-index: 1;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__video-stack.is-hq-active .hero__video--hq {
  opacity: 1;
}
.hero__video-stack.is-hq-active .hero__video:not(.hero__video--hq) {
  opacity: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(6, 15, 24, 0.1) 0%, rgba(6, 15, 24, 0.35) 100%),
    linear-gradient(to bottom, rgba(6, 15, 24, 0.35) 0%, transparent 25%, transparent 70%, rgba(6, 15, 24, 0.55) 100%);
  pointer-events: none;
  transition: background 0.6s ease;
}
/* Light scrim behind the £20 offer — keeps video visible */
.hero__cinema:has(.hero__stage--offer.is-active) .hero__overlay {
  background:
    radial-gradient(ellipse 90% 75% at 50% 48%, rgba(6, 15, 24, 0.18) 0%, rgba(6, 15, 24, 0.36) 100%),
    linear-gradient(to bottom, rgba(6, 15, 24, 0.2) 0%, rgba(6, 15, 24, 0.28) 100%);
}

.hero__stages {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.hero__stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  padding: 0 clamp(20px, 5vw, 80px);
  opacity: 0;
  text-align: center;
  pointer-events: none;
}
.hero__stage.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Always-visible product label during the film */
.hero__product {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 8px 16px;
  border: 1px solid var(--gold-soft);
  border-radius: 2px;
  background: rgba(6, 15, 24, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
body:not(.hero-playing) .hero__product {
  opacity: 0;
  visibility: hidden;
}

.hero__kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-3);
}
.hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 28ch;
  margin-top: var(--s-3);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.hero__sub--offer {
  margin-top: var(--s-2);
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.92);
}

.hero__line {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 6.2vw, 80px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.005em;
  max-width: 14ch;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 6px 40px rgba(0, 0, 0, 0.35);
}
.hero__line--lead {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 300;
}
.hero__line--gold {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.6vw, 48px);
  color: var(--gold);
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 6px 40px rgba(0, 0, 0, 0.35);
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

.hero__rule {
  width: 60px;
  height: 1px;
  background: var(--gold-soft);
  opacity: 0;
}

.hero__cta {
  opacity: 0;
  transform: translateY(8px);
  margin-top: var(--s-3);
}

.hero__stage--offer {
  gap: var(--s-3);
}

/* Offer stage — frosted glass panel */
.hero__offer-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  padding: clamp(24px, 4vw, 36px) clamp(24px, 4.5vw, 40px);
  max-width: min(94vw, 440px);
  text-align: center;
  background: rgba(6, 15, 24, 0.48);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.15) inset,
    0 4px 24px rgba(0, 0, 0, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.22);
}
.hero__offer-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 42%,
    rgba(201, 168, 76, 0.06) 100%
  );
  pointer-events: none;
}
.hero__offer-panel > * {
  position: relative;
  z-index: 1;
}
.hero__offer-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0;
  max-width: none;
  text-align: center;
}
.hero__offer-line {
  display: block;
  font-family: var(--font-display);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__offer-line--product {
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--s-3);
}
.hero__offer-divider {
  display: block;
  width: 52px;
  height: 1px;
  margin: 0 auto var(--s-3);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.55) 50%,
    transparent 100%
  );
}
.hero__offer-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  line-height: 1;
  font-size: clamp(52px, 9vw, 72px);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__offer-pound {
  font-family: var(--font-display);
  font-size: 0.68em;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  margin-right: 0.05em;
  transform: translateY(-0.08em);
}
.hero__offer-amount {
  font-family: var(--font-body);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--white);
}
.hero__offer-panel .hero__line--gold,
.hero__offer-panel .hero__line--gold em {
  color: #F0E2C0;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero__offer-panel .hero__sub--offer {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  font-size: clamp(15px, 1.9vw, 18px);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero__offer-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  margin-top: 0;
  padding-top: var(--s-1);
}
.hero__offer-panel .hero__cta,
.hero__offer-panel .hero__replay {
  width: 100%;
  flex: none;
  min-width: 0;
  margin-top: 0;
}
.hero__offer-panel .hero__cta {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.hero__offer-panel .hero__replay {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 14px;
}
.hero__replay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.hero__replay:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}
body.hero-playing .hero__replay {
  opacity: 0 !important;
  pointer-events: none !important;
}

.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

/* Skip — top-right of nav, opposite logo */
.hero__skip {
  display: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 16px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  background: rgba(6, 15, 24, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  transition:
    color var(--t-fast),
    border-color var(--t-fast),
    background var(--t-fast);
}
.hero__skip:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(6, 15, 24, 0.72);
}
body:not(.hero-playing) .hero__skip {
  display: none !important;
}

.hero__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 15, 24, 0.25);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.hero__scroll.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero__scroll:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(6, 15, 24, 0.4);
}
.hero__scroll-icon {
  width: 18px;
  height: 18px;
}
.hero__scroll.is-visible .hero__scroll-icon {
  animation: hero-scroll-nudge 2.4s ease-in-out infinite;
}
@keyframes hero-scroll-nudge {
  0%, 100% { transform: translateY(-2px); opacity: 0.45; }
  50% { transform: translateY(3px); opacity: 1; }
}

/* ============================================================
   SECTION 2 — THE EXPERIENCE
   ============================================================ */
.experience { background: var(--cream); }
.experience__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--s-8);
  align-items: center;
}
.experience__text { max-width: 560px; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.feature {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
}
.feature__bar {
  flex: none;
  display: block;
  width: 2px;
  height: 24px;
  background: var(--gold);
  margin-top: 6px;
}
.feature h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: 0.005em;
}
.feature p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 4px;
}

/* Phone mockup */
.experience__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone {
  position: relative;
  width: min(100%, 320px);
  margin: 0 auto;
  filter: drop-shadow(0 32px 80px rgba(13, 27, 42, 0.22));
}
.phone__ring {
  position: absolute;
  width: min(140%, 520px);
  height: min(140%, 520px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.phone__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(150deg, #1a2638 0%, #060f18 100%);
  border-radius: 44px;
  padding: 14px;
  z-index: 1;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08),
    inset 0 0 0 6px #050b14;
}
.phone__notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.phone__screen {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}
.phone__video-stack {
  position: absolute;
  inset: 0;
}
.phone__video-stack .phone__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone__video--hq {
  opacity: 0;
  z-index: 1;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.phone__video-stack.is-hq-active .phone__video--hq {
  opacity: 1;
}
.phone__video-stack.is-hq-active .phone__video:not(.phone__video--hq) {
  opacity: 0;
}
.phone__caption {
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.phone__playback {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 14px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  pointer-events: none;
}
.phone__progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  overflow: hidden;
}
.phone__progress-fill {
  width: 0%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.15s linear;
}
.phone__progress-times {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   SECTION 4 — HOW IT WORKS (editorial timeline)
   ============================================================ */
.how {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(201, 168, 76, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(26, 58, 92, 0.45) 0%, transparent 50%),
    linear-gradient(168deg, var(--midnight) 0%, var(--navy) 48%, #0a1520 100%);
}
.how__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.how__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.how__glow--a {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -18%;
  right: -8%;
  background: rgba(201, 168, 76, 0.14);
}
.how__glow--b {
  width: min(400px, 55vw);
  height: min(400px, 55vw);
  bottom: -12%;
  left: -10%;
  background: rgba(40, 90, 130, 0.2);
}
.how__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.how__container {
  position: relative;
  z-index: 1;
}

.how__header {
  max-width: 640px;
  margin-bottom: clamp(48px, 8vw, 80px);
}
.how__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-4);
}
.how__eyebrow-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.how__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.how__title-line {
  display: block;
}
.how__title-line--gold {
  font-style: italic;
  font-weight: 300;
  color: #E8D4A8;
  margin-top: 0.12em;
}
.how__lede {
  margin-top: var(--s-4);
  max-width: 38ch;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.how__track {
  position: relative;
}
.how__track-rail {
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  z-index: 0;
  pointer-events: none;
}
.how__track-line {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-soft) 8%, var(--gold) 50%, var(--gold-soft) 92%, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.how__track.is-visible .how__track-line {
  transform: scaleX(1);
}

.how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  position: relative;
  z-index: 1;
}
.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition-delay: calc(0.12s * var(--step-i, 0));
}
.how__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-4);
}
.how__index {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.how__node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--midnight);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15), 0 0 20px rgba(201, 168, 76, 0.35);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.how__step.is-visible .how__node {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.2), 0 0 28px rgba(201, 168, 76, 0.5);
}

.how__card {
  width: 100%;
  padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.55s ease;
}
.how__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.how__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
  pointer-events: none;
}
.how__card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}
.how__card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold-faint);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  margin-bottom: var(--s-3);
  position: relative;
  z-index: 1;
}
.how__card-icon svg {
  width: 22px;
  height: 22px;
}
.how__card-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--white);
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
.how__card-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
  position: relative;
  z-index: 1;
}

.how__banner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
  margin-top: clamp(48px, 8vw, 72px);
  padding: clamp(20px, 3vw, 28px) clamp(24px, 4vw, 40px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 10px;
  background: linear-gradient(105deg, rgba(201, 168, 76, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.how__banner-price {
  flex: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.how__banner-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
.how__banner-copy strong {
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ============================================================
   SECTION 5 — LOCATIONS
   ============================================================ */
.locations { background: var(--cream); }
.map-wrap {
  position: relative;
  margin-top: var(--s-7);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.08);
}
.map {
  width: 100%;
  height: 500px;
  background: #1a2638;
}
.map-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.92)),
    radial-gradient(circle at 30% 60%, rgba(201, 168, 76, 0.15), transparent 50%);
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--t-mid);
}
.map.is-ready + .map-fallback { opacity: 0; }

.locations__note {
  text-align: center;
  margin-top: var(--s-4);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
}
.locations__note a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 4px;
}

/* Leaflet custom marker */
.rv-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(13, 27, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.rv-marker::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  animation: rv-pulse 2.5s ease-out infinite;
}
.rv-marker__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
@keyframes rv-pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* Leaflet popup override */
.leaflet-popup-content-wrapper {
  background: var(--navy) !important;
  color: var(--white) !important;
  border: 1px solid var(--gold-soft);
  border-radius: 4px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.leaflet-popup-content {
  margin: 14px 16px !important;
  font-family: var(--font-body) !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
.leaflet-popup-content strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.leaflet-popup-tip {
  background: var(--navy) !important;
  border: 1px solid var(--gold-soft);
}
.leaflet-popup-close-button {
  color: var(--gold) !important;
  font-size: 18px !important;
  padding: 6px 8px !important;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  background: transparent !important;
  color: var(--white) !important;
}
.leaflet-control-attribution {
  background: rgba(13, 27, 42, 0.7) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 10px !important;
  padding: 2px 6px !important;
}
.leaflet-control-attribution a {
  color: var(--gold) !important;
}

/* ============================================================
   SECTION 6 — DELIVERY
   ============================================================ */
.delivery { background: var(--navy); padding: 0; }
.delivery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.delivery__image {
  position: relative;
  overflow: hidden;
}
.delivery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.delivery__image-bleed {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--navy) 100%);
  pointer-events: none;
}
.delivery__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-py) clamp(24px, 5vw, 64px);
  max-width: 600px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-5);
}
.pill {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--gold-soft);
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ============================================================
   SECTION 7 — REVIEWS (light break after delivery)
   ============================================================ */
.reviews {
  position: relative;
  overflow: hidden;
  background: var(--white);
  text-align: center;
  padding-top: clamp(96px, 14vw, 140px);
  padding-bottom: clamp(96px, 14vw, 140px);
}
.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(720px, 88vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.35) 18%,
    rgba(201, 168, 76, 0.35) 82%,
    transparent 100%
  );
  pointer-events: none;
}
.reviews::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% -8%, rgba(201, 168, 76, 0.09) 0%, transparent 62%),
    radial-gradient(ellipse 50% 40% at 88% 100%, rgba(13, 27, 42, 0.03) 0%, transparent 70%);
}
.reviews__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  padding-top: var(--s-3);
  padding-bottom: var(--s-3);
}
.reviews__quote-mark {
  display: block;
  margin: 0 0 var(--s-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 7vw, 72px);
  line-height: 1;
  color: var(--gold);
  pointer-events: none;
  user-select: none;
}
.reviews__quote {
  margin: 0;
}
.reviews__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.8vw, 42px);
  line-height: 1.28;
  color: var(--navy);
  max-width: 24ch;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.reviews__attr {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--gold-muted);
  margin-top: var(--s-5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.reviews__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
  margin-top: var(--s-2);
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================================
   SECTION 9 — FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq .section__head { margin-bottom: var(--s-6); }
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid rgba(13, 27, 42, 0.1);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--navy);
  cursor: pointer;
  min-height: 44px;
  transition: color var(--t-fast);
}
.faq__q:hover { color: var(--gold); }
.faq__q:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.faq__toggle {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform var(--t-fast);
}
.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.faq__toggle::before {
  width: 18px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__toggle::after {
  width: 2px;
  height: 18px;
  transform: translate(-50%, -50%);
}
.faq__item.is-open .faq__toggle::before { transform: translate(-50%, -50%) rotate(45deg); }
.faq__item.is-open .faq__toggle::after  { transform: translate(-50%, -50%) rotate(45deg); }
.faq__item:hover .faq__toggle::before,
.faq__item:hover .faq__toggle::after { background: var(--gold-muted); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-mid);
}
.faq__a p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 0 24px 0;
  max-width: 60ch;
}
.faq__a a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--midnight);
  color: var(--white);
  padding: clamp(56px, 8vw, 80px) 0 24px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__logo img {
  width: 160px;
  height: auto;
  display: block;
}
.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(201, 168, 76, 0.7);
  margin-top: var(--s-3);
}
.footer__social {
  display: flex;
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.7);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.footer__social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.footer__rule {
  width: 100%;
  height: 1px;
  background: rgba(201, 168, 76, 0.1);
  margin-top: var(--s-7);
}
.footer__bottom {
  width: 100%;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  gap: 16px;
  flex-wrap: wrap;
}
.footer__credit { transition: color var(--t-fast); }
.footer__credit:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .experience__grid {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  /* Spec: text first, phone mockup below on mobile/tablet (helps QR scanner persona) */
  .experience__text { order: 0; }
  .experience__visual {
    order: 1;
    width: 100%;
    max-width: 320px;
    margin: var(--s-6) auto 0;
    padding: 0;
  }
  .phone {
    width: min(100%, 300px);
  }
  .phone__ring {
    width: 120%;
    height: 120%;
    max-width: 380px;
    max-height: 380px;
  }
  .delivery__grid { grid-template-columns: 1fr; }
  .delivery__image { height: 50vh; min-height: 360px; }
  .delivery__image-bleed { background: linear-gradient(to bottom, transparent 60%, var(--navy) 100%); }
  .how__track-rail { display: none; }
  .how__steps {
    grid-template-columns: 1fr;
    gap: var(--s-5);
    padding-left: 28px;
    border-left: 1px solid rgba(201, 168, 76, 0.25);
  }
  .how__step {
    align-items: flex-start;
    text-align: left;
  }
  .how__marker {
    flex-direction: row;
    gap: var(--s-3);
    margin-bottom: var(--s-3);
  }
  .how__node { flex: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }
  .nav__logo img { height: 40px; max-width: 180px; }
  body.hero-playing .nav__logo img { height: clamp(52px, 14vw, 68px); max-width: 220px; }
  .nav.is-scrolled .nav__logo img { height: 36px; }
  .nav__link { font-size: 12px; }

  /* Hero: offer frost is a full-width bottom sheet on phone */
  .hero__stages {
    place-items: end stretch;
    padding: 0;
  }
  .hero__stage {
    top: auto;
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    height: auto;
    justify-content: flex-end;
    padding: 0;
  }
  .hero__stage--offer {
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
  }
  body.hero-playing .hero__product {
    top: auto;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    transform: none;
    padding: 12px 20px;
    white-space: normal;
    text-align: center;
    line-height: 1.45;
    letter-spacing: 0.12em;
    box-sizing: border-box;
  }
  .hero__offer-panel {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 20px 20px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding-top: clamp(28px, 5vw, 36px);
    padding-left: clamp(20px, 5vw, 28px);
    padding-right: clamp(20px, 5vw, 28px);
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.28);
  }
  .hero__offer-panel::before {
    border-radius: 20px 20px 0 0;
  }
  .hero__scroll {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 12;
  }

  .hero__line { font-size: clamp(34px, 10vw, 56px); }
  .hero__offer-line--product { font-size: clamp(34px, 9vw, 48px); margin-bottom: var(--s-2); }
  .hero__offer-divider { width: 44px; margin-bottom: var(--s-2); }
  .hero__offer-price { font-size: clamp(56px, 14vw, 68px); }
  body.hero-playing .nav {
    padding: max(16px, env(safe-area-inset-top, 0px)) 0 16px;
  }
  body.hero-playing .hero__skip {
    font-size: 11px;
    padding: 10px 14px;
  }
  .map { height: 380px; }
  .how__banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .pills { flex-direction: column; align-items: flex-start; }
  .pill { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .section__head { margin-bottom: var(--s-5); }
  .hero__offer-panel {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
  .hero__offer-actions {
    width: 100%;
  }
  .footer__bottom { font-size: 11px; }
  .footer__bottom span { word-spacing: 0.05em; }
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  body.is-loading { overflow: hidden !important; height: 100vh !important; height: 100dvh !important; }
  .page-loader__logo { animation: none !important; opacity: 1 !important; transform: none !important; }
  .page-loader__glow { animation: none !important; }
  .page-loader.is-hidden { transition-duration: 0.01ms !important; }
  .hero__video--hq,
  .phone__video--hq { transition: none !important; }
  body.hero-playing { overflow: auto !important; height: auto !important; }
  .hero__cinema { height: 100vh !important; }
  .word { opacity: 1 !important; transform: none !important; }
  .hero__cta { opacity: 1 !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__stage:not(.hero__stage--offer) { display: none !important; }
  .hero__stage--offer { display: flex !important; opacity: 1 !important; }
  .hero__skip, .hero__scroll { display: none !important; }
  .nav,
  body.hero-playing .nav { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }
}
