/* =============================================================
   SAPO CAR WASH — styles.css
   Palette: obsidian · chrome · a single deep emerald accent
   Signature motion: "the squeegee pass" (wipe + gloss sweep)

   COLOUR RULE — read before editing:
   The page is ~97% near-black and cool neutral chrome. The emerald is an
   ACCENT ONLY: hairlines, rules, small marks, the logo bead, hover states.
   It never fills a large area. The primary CTA is chrome-on-black, not
   green-on-black. If something looks like it needs more green, it needs
   more contrast or more space instead.
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* --- surface: cool neutral near-blacks, no colour cast --- */
  --obsidian:  #08090B;   /* page base */
  --graphite:  #0D0F12;   /* alternate band, footer */
  --panel:     #12151A;   /* card */
  --panel-2:   #191D23;   /* raised card */

  /* --- ink: cool neutral chrome --- */
  --chrome:    #F3F5F7;   /* headings, primary text, primary CTA fill */
  --chrome-2:  #C2C8CF;   /* body copy */
  --chrome-3:  #868E99;   /* metadata, captions */
  --chrome-4:  #59616C;   /* dim decorative only — not for text */

  /* --- accent: ONE deep muted emerald, used sparingly --- */
  --emerald:      #2C6B58;   /* rules, rings, small fills */
  --emerald-deep: #163C33;   /* gradient ends, shadows */
  --sage:         #8FB3A6;   /* accent TEXT — readable on obsidian (8.7:1) */
  --sage-soft:    #BFD3CB;   /* faint highlight, bead cores */

  --line:      rgba(243, 245, 247, 0.09);
  --line-2:    rgba(243, 245, 247, 0.16);

  /* --- materials --- */
  --chrome-sweep: linear-gradient(100deg,
      #59616C 0%, #C2C8CF 30%, #FFFFFF 46%, #F3F5F7 54%, #9AA3AE 78%, #59616C 100%);
  --panel-sheen: linear-gradient(180deg,
      rgba(243,245,247,0.045) 0%, rgba(243,245,247,0.012) 34%, rgba(243,245,247,0) 68%);
  --edge-top:  inset 0 1px 0 rgba(243, 245, 247, 0.07);
  --lift-sm:   0 12px 30px -18px rgba(0, 0, 0, 0.95);
  --lift:      0 34px 70px -36px rgba(0, 0, 0, 0.98);

  /* --- type --- */
  --display: "Instrument Serif", "Times New Roman", Georgia, serif;
  --sans:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:    "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* --- motion --- */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* --- rhythm: generous, luxury spacing --- */
  --gutter: clamp(1.5rem, 6vw, 5rem);
  --maxw:   1320px;
  --nav-h:  76px;
  --radius: 6px;          /* tight radii read more precise than soft ones */
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--obsidian);
  color: var(--chrome-2);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ol, ul { list-style: none; padding: 0; }

/* Instrument Serif ships one weight — the elegance comes from scale,
   tight leading and near-zero tracking, not from bolding it. */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--chrome);
  line-height: 1.0;
  letter-spacing: -0.012em;
  text-wrap: balance;
  font-synthesis-weight: none;
}

::selection { background: var(--emerald); color: var(--chrome); }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; border-radius: 8px;
  background: var(--chrome); color: var(--obsidian);
  font-weight: 500;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grain {
  position: fixed; inset: 0; z-index: 3;
  pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-rail {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 120; pointer-events: none;
  background: rgba(243, 245, 247, 0.06);
}
.scroll-rail span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--emerald-deep), var(--emerald), var(--sage));
  transform: scaleX(0); transform-origin: 0 50%;
}

/* =============================================================
   4. Typography blocks
   ============================================================= */
/* Kicker sits above a rule — the hairline is the emerald's main job here */
.kicker {
  display: flex; align-items: center; gap: .9rem;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--chrome-3);
}
.kicker::before {
  content: ""; flex: none;
  width: 26px; height: 1px;
  background: var(--emerald);
}

.h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin-top: 1.5rem;
}

.lead {
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  line-height: 1.78;
  font-weight: 200;
  color: var(--chrome-2);
  max-width: 54ch;
  margin-top: 1.9rem;
}

/* rem, not ch — `ch` here resolves against the container's 16px body font,
   not the large display size inside, and silently crushes the heading. */
.head { max-width: 42rem; }
.head--wide { max-width: 54rem; }

.note {
  margin-top: 3.4rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--emerald);
  font-size: .84rem;
  line-height: 1.85;
  color: var(--chrome-3);
  max-width: 58ch;
}

.link {
  color: var(--sage);
  border-bottom: 1px solid rgba(143, 179, 166, 0.3);
  transition: color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.link:hover { color: var(--chrome); border-color: var(--chrome); }

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  padding: .26rem .58rem;
  border: 1px solid rgba(143, 179, 166, 0.28);
  border-radius: 3px;
  white-space: nowrap;
}
.tag--sm { font-size: .55rem; padding: .18rem .44rem; }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .88rem; font-weight: 500;
  letter-spacing: .015em;
  overflow: hidden;
  isolation: isolate;
  transition: color .4s var(--ease-out), background-color .4s var(--ease-out),
              border-color .4s var(--ease-out), transform .4s var(--ease-out),
              box-shadow .4s var(--ease-out);
}
.btn > span { position: relative; z-index: 2; }

/* Primary = polished chrome on black. The accent never fills a button. */
.btn--primary {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--chrome) 48%, #DDE2E7 100%);
  color: var(--obsidian);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--lift-sm), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.btn--primary::after {              /* gloss sweep */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, transparent 32%,
              rgba(255, 255, 255, 0.85) 48%, transparent 64%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-out);
}
.btn--primary:hover { box-shadow: var(--lift), inset 0 1px 0 rgba(255, 255, 255, 0.95); }
.btn--primary:hover::after { transform: translateX(120%); }

.btn--ghost {
  color: var(--chrome);
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(243,245,247,0.05), rgba(243,245,247,0));
  box-shadow: var(--edge-top);
}
.btn--ghost:hover {
  border-color: var(--emerald);
  background: linear-gradient(180deg, rgba(243,245,247,0.08), rgba(243,245,247,0.01));
}

.btn--sm { padding: .68rem 1.3rem; font-size: .82rem; }
.btn--block { display: flex; justify-content: center; width: 100%; margin-top: 2rem; }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); }
}

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 1.5rem;
  padding-inline: var(--gutter);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .45s var(--ease-out), border-color .45s var(--ease-out),
              backdrop-filter .45s var(--ease-out);
}
.nav.is-stuck {
  background: rgba(8, 9, 11, 0.86);
  border-bottom-color: var(--line);
}
@supports (backdrop-filter: blur(14px)) {
  .nav.is-stuck { background: rgba(8, 9, 11, 0.62); backdrop-filter: blur(14px) saturate(140%); }
}

.brand { display: inline-flex; align-items: center; gap: .85rem; margin-right: auto; }
.brand__mark { flex: none; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .6)); }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display); font-weight: 400; font-size: 1.42rem;
  letter-spacing: .17em; text-transform: uppercase; color: var(--chrome);
}
.brand__sub {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--chrome-3); margin-top: .42rem;
}

.nav__links { display: none; gap: 1.9rem; }
.nav__links a {
  position: relative;
  font-size: .88rem; color: var(--chrome-2);
  transition: color .3s var(--ease-out);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--sage);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s var(--ease-out);
}
.nav__links a:hover { color: var(--chrome); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.is-current { color: var(--chrome); }
.nav__links a.is-current::after { transform: scaleX(1); background: var(--chrome-3); }

.nav__cta { display: none; }

.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 999px;
}
.nav__bars { display: block; width: 16px; }
.nav__bars i {
  display: block; height: 1px; background: var(--chrome);
  transition: transform .4s var(--ease-out), opacity .3s var(--ease-out);
}
.nav__bars i + i { margin-top: 5px; }
.nav__toggle[aria-expanded="true"] .nav__bars i:first-child { transform: translateY(3px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars i:last-child  { transform: translateY(-3px) rotate(-45deg); }

.drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: rgba(8, 9, 11, 0.97);
  border-bottom: 1px solid var(--line);
}
.drawer[hidden] { display: none; }
.drawer__inner {
  display: flex; flex-direction: column;
  padding: 1.2rem var(--gutter) 2rem;
}
.drawer__inner a {
  padding: .95rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display); font-size: 1.15rem; color: var(--chrome);
}
.drawer__cta {
  margin-top: 1.4rem; border-bottom: 0 !important;
  color: var(--sage) !important;
}

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 3rem) var(--gutter) clamp(4rem, 12vh, 7rem);
  overflow: hidden;
}

.hero__stage { position: absolute; inset: 0; z-index: 0; }
.hero__layer { position: absolute; inset: -8% -4%; }
.hero__layer img { width: 100%; height: 100%; object-fit: cover; }

.hero__layer--paint img { object-position: 62% 50%; }
/* Overlays stay well under the paint layer — they are atmosphere, not subject.
   Push these up and the hero stops reading as a car and starts reading as bokeh. */
.hero__layer--beads {
  mix-blend-mode: screen; opacity: .2;
}
.hero__layer--beads img { object-position: 50% 40%; }
.hero__layer--steam {
  mix-blend-mode: screen; opacity: .18;
}

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,11,.82) 0%, rgba(8,9,11,.24) 26%, rgba(8,9,11,.52) 62%, var(--obsidian) 100%),
    linear-gradient(90deg, rgba(8,9,11,.94) 0%, rgba(8,9,11,.7) 38%, rgba(8,9,11,.12) 76%);
}

.hero__inner { position: relative; z-index: 2; max-width: 62rem; }

.hero__title {
  font-size: clamp(3.4rem, 11.5vw, 9rem);
  line-height: .93;
  margin-top: 2rem;
  letter-spacing: -0.018em;
}
.hero__title .ln { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .ln__i { display: block; }
/* Only hide-then-rise when JS is present; without JS the line is simply there. */
.js .hero__title .ln__i {
  transform: translateY(105%);
  animation: lnRise 1.15s var(--ease-out) .35s forwards;
}
.js .hero__title .ln:nth-child(2) .ln__i { animation-delay: .47s; }
@keyframes lnRise { to { transform: translateY(0); } }

/* Instrument Serif's italic is the whole point of the pairing — one word gets it */
.hero__title em { font-style: italic; color: var(--sage); }

/* gloss sweep across the accent word */
.gloss { color: var(--sage); }
.js .gloss {
  background-image: linear-gradient(100deg,
    var(--sage) 0%, var(--sage) 34%, var(--chrome) 50%, var(--sage) 66%, var(--sage) 100%);
  background-size: 260% 100%;
  background-position: 130% 0;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: glossPass 2.6s 1.4s var(--ease-soft) forwards;
}
@keyframes glossPass { to { background-position: -30% 0; } }

.hero__lead {
  margin-top: 2.6rem; max-width: 44ch;
  font-size: clamp(1.05rem, 1.75vw, 1.3rem);
  line-height: 1.78; font-weight: 200;
  color: var(--chrome-2);
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 3.2rem;
}

.hero__meta {
  display: flex; flex-wrap: wrap; gap: .6rem 2rem;
  margin-top: 3.6rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: .66rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--chrome-3);
}
.hero__meta li { display: flex; align-items: center; gap: .7rem; }
.hero__meta li::before {
  content: ""; width: 3px; height: 3px; border-radius: 50%;
  background: var(--sage); flex: none;
}

.hero__cue {
  position: absolute; right: var(--gutter); bottom: clamp(2rem, 6vh, 3.4rem);
  z-index: 2; display: none; align-items: center; gap: .7rem;
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--chrome-3);
}
.hero__cue-line {
  display: block; width: 54px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--chrome-3));
  position: relative; overflow: hidden;
}
.hero__cue-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--sage);
  transform: translateX(-100%);
  animation: cueRun 2.6s var(--ease-soft) infinite;
}
@keyframes cueRun {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* =============================================================
   8. Sections
   ============================================================= */
.section {
  position: relative;
  padding-block: clamp(7rem, 18vh, 12rem);
}

/* --- reveal system (opacity + small rise) ---------------------
   Gated behind .js: with JavaScript off, every .reveal is simply
   visible. Nothing on this page depends on JS to be readable.    */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .95s var(--ease-out), transform .95s var(--ease-out);
}
.js .reveal.is-in { opacity: 1; transform: none; }
/* defensive: never let a split-text variant strand content invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* --- the squeegee wipe ---------------------------------------- */
.wipe { position: relative; overflow: hidden; }
.wipe__cover {
  display: none;
  position: absolute; inset: 0; z-index: 2;
  background: var(--obsidian);
  transform: translateX(0);
  will-change: transform;
}
.js .wipe__cover { display: block; }
.wipe__cover::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 2px;
  background: linear-gradient(180deg, transparent, var(--chrome), transparent);
  opacity: 0;
}
.wipe.is-in .wipe__cover {
  transform: translateX(101%);
  transition: transform 1.25s var(--ease-out);
}
.wipe.is-in .wipe__cover::after {
  opacity: .9;
  transition: opacity .3s linear 1.05s;
  opacity: 0;
}

/* heading gloss on view
   clip-path keeps the travelling sweep inside the heading box (it would
   otherwise park as a stray light panel to the right of the h2), while the
   negative vertical inset leaves descenders room. No layout impact. */
.gloss-on-view {
  position: relative;
  clip-path: inset(-0.35em 0 -0.35em 0);
}
.gloss-on-view::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 34%, rgba(255,255,255,.16) 50%, transparent 66%);
  transform: translateX(-110%);
  pointer-events: none;
}
.gloss-on-view.is-in::after {
  transform: translateX(110%);
  transition: transform 1.5s var(--ease-out) .25s;
}

/* =============================================================
   9. Passes (what we do)
   ============================================================= */
.passes__stage { margin-top: clamp(3.5rem, 8vw, 6rem); }

.passes__media { margin-bottom: 2.6rem; }
.passes__frame {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--graphite);
  box-shadow: var(--lift), var(--edge-top);
}
.pass-fig {
  position: absolute; inset: 0; margin: 0;
  opacity: 0;
  transition: opacity .8s var(--ease-out);
}
.pass-fig.is-active { opacity: 1; }
.pass-fig img { width: 100%; height: 100%; object-fit: cover; }

.passes__edge {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 90px 12px rgba(8, 9, 11, .72);
}

.passes__cap {
  margin-top: 1.1rem;
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--chrome-4);
}

.passes__list { display: grid; gap: 3.4rem; }

.pass {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  transition: opacity .6s var(--ease-out);
}
.pass__num {
  display: block;
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .26em; color: var(--sage);
}
.pass__title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: .9rem 0 1.1rem;
}
.pass p { max-width: 48ch; }

/* =============================================================
   10. Why here
   ============================================================= */
.why { padding-top: 0; }

.why__media {
  position: relative;
  height: clamp(300px, 52vh, 560px);
  margin-bottom: clamp(3rem, 8vh, 5.5rem);
}
.why__media img {
  width: 100%; height: 118%;
  object-fit: cover; object-position: 50% 45%;
}
.why__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, var(--obsidian) 0%, rgba(8,9,11,.25) 30%,
              rgba(8,9,11,.35) 70%, var(--obsidian) 100%);
}

.why__grid { display: grid; gap: 3.5rem; margin-top: 4rem; }
.why__body { font-size: clamp(1.02rem, 1.7vw, 1.2rem); max-width: 54ch; }

.steps { display: grid; gap: 0; }
.step {
  display: flex; align-items: baseline; gap: 1.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.step:first-child { border-top: 1px solid var(--line); }
.step__n {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .22em; color: var(--sage); flex: none;
}
.step__t {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--chrome);
  letter-spacing: -0.01em;
}

/* =============================================================
   11. Approach
   ============================================================= */
.approach { overflow: hidden; }

.approach__grid { display: grid; gap: 4rem; position: relative; z-index: 2; }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.6rem; }
.chip {
  padding: .6rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono); font-size: .64rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--chrome-2);
  background: linear-gradient(180deg, rgba(243,245,247,0.05), rgba(243,245,247,0));
  box-shadow: var(--edge-top);
}

.approach__media {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 11;
  box-shadow: var(--lift), var(--edge-top);
}
.approach__media img { width: 100%; height: 100%; object-fit: cover; }

.approach__beads { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bead {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(191,211,203,.55), rgba(44,107,88,.30) 46%, rgba(22,60,51,.14) 72%, transparent 78%);
  box-shadow: 0 0 26px rgba(44, 107, 88, .16);
  opacity: .5;
  animation: beadDrift 18s var(--ease-soft) infinite;
}
.b1 { width: 12px; height: 12px; left: 4%;  top: 16%; animation-delay: 0s;    }
.b2 { width: 22px; height: 22px; left: 12%; top: 68%; animation-delay: -3.5s; }
.b3 { width: 8px;  height: 8px;  left: 47%; top: 8%;  animation-delay: -7s;   }
.b4 { width: 16px; height: 16px; left: 88%; top: 30%; animation-delay: -10s;  }
.b5 { width: 10px; height: 10px; left: 72%; top: 82%; animation-delay: -13s;  }
.b6 { width: 26px; height: 26px; left: 94%; top: 62%; animation-delay: -16s;  }
@keyframes beadDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .34; }
  50%      { transform: translate3d(0, -26px, 0) scale(1.12); opacity: .62; }
}

/* =============================================================
   12. Chrome band
   ============================================================= */
.band {
  position: relative;
  height: clamp(120px, 22vh, 230px);
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.band img { width: 100%; height: 128%; object-fit: cover; opacity: .5; }
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--obsidian), rgba(8,9,11,.18) 40%,
              rgba(8,9,11,.2) 60%, var(--obsidian));
}

/* =============================================================
   13. Find us
   ============================================================= */
.find__grid { display: grid; gap: 3.2rem; margin-top: clamp(3.5rem, 8vw, 5.5rem); }

.addr {
  font-style: normal;
  font-size: 1.06rem; line-height: 1.95; font-weight: 200; color: var(--chrome-2);
}
.addr strong {
  display: block;
  font-family: var(--display); font-weight: 400; font-size: 1.75rem;
  color: var(--chrome); letter-spacing: -0.01em; margin-bottom: .7rem;
}
.addr__hint {
  display: inline-block; margin-top: 1rem;
  font-family: var(--mono); font-size: .64rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--sage);
}

.confirm {
  margin-top: 3.2rem;
  padding: 1.8rem 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-sheen), var(--panel);
  box-shadow: var(--lift-sm), var(--edge-top);
}
.confirm__head {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--chrome-3); margin-bottom: 1.1rem;
}
.confirm__row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem 0;
  border-top: 1px solid var(--line);
}
.confirm__row dt { color: var(--chrome-2); font-size: .95rem; }
.confirm__row dd { margin: 0; }
.confirm__note {
  margin-top: 1.4rem; font-size: .8rem; line-height: 1.8; color: var(--chrome-3);
}

.find__map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  background: var(--graphite);
  box-shadow: var(--lift), var(--edge-top);
  min-height: 340px;
}
.find__map iframe {
  width: 100%; height: 100%; min-height: 340px; border: 0;
  /* desaturate + invert so the embed reads as a dark map instead of a
     bright rectangle punched through a near-black page */
  filter: grayscale(1) invert(0.92) contrast(1.05) brightness(1.02);
}

/* =============================================================
   14. Footer
   ============================================================= */
.foot {
  border-top: 1px solid var(--line);
  background: var(--graphite);
  padding-block: clamp(4.5rem, 10vh, 7rem) 2.8rem;
}
.foot__grid { display: grid; gap: 3rem; }
.foot__brand { display: inline-flex; align-items: center; gap: .8rem; }
.foot__label {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--chrome-4); margin-bottom: 1rem;
}
.foot__col p { font-size: .95rem; line-height: 1.8; }
.foot__col .link { display: inline-block; margin-top: .8rem; }
.foot__ph { display: flex; align-items: center; gap: .6rem; color: var(--chrome-3); }

.foot__base {
  margin-top: 3rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  display: grid; gap: 1.2rem;
}
.foot__disclaimer {
  font-size: .8rem; line-height: 1.75; color: var(--chrome-3); max-width: 82ch;
}
.foot__meta {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .14em; color: var(--chrome-3);
}

/* =============================================================
   15. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .foot__base { grid-template-columns: 1fr auto; align-items: end; }
}

@media (min-width: 720px) {
  .why__grid { grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: start; }
  .find__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .foot__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .approach__grid { grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
  .hero__cue { display: flex; }
}

@media (min-width: 960px) {
  :root { --nav-h: 84px; }

  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .drawer { display: none !important; }

  .passes__stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
  }
  .passes__media {
    position: sticky;
    top: calc(var(--nav-h) + 3rem);
    margin-bottom: 0;
  }
  .passes__frame {
    aspect-ratio: 4 / 5;
    max-height: calc(100vh - var(--nav-h) - 9rem);
  }
  .passes__list { gap: 0; }
  .pass {
    min-height: 56vh;
    display: flex; flex-direction: column; justify-content: center;
    padding-block: 3rem;
  }
  .js .pass { opacity: .34; }
  .js .pass.is-current { opacity: 1; }
  .pass:first-child { border-top: 0; }

  .why__media { height: clamp(420px, 64vh, 680px); }
  .find__map { min-height: 460px; }
  .find__map iframe { min-height: 460px; }
}

@media (min-width: 1280px) {
  .hero__lead { max-width: 42ch; }
}

/* Smallest phones: the hero kicker runs to within a few px of the gutter
   at .3em tracking — pull it back so it keeps a comfortable margin. */
@media (max-width: 539px) {
  .kicker { font-size: .62rem; letter-spacing: .22em; gap: .7rem; }
  .kicker::before { width: 18px; }
}

/* Mobile: sticky media reads better pinned under the nav */
@media (max-width: 959px) {
  .passes__media {
    position: sticky;
    top: calc(var(--nav-h) + 10px);
    z-index: 2;
    padding-bottom: .6rem;
    background: linear-gradient(180deg, var(--obsidian) 86%, transparent);
  }
  .passes__frame { aspect-ratio: 4 / 3; }
  .pass { opacity: 1; }
}

/* =============================================================
   16. Reduced motion — all MOVEMENT off, colour/opacity kept
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .js .reveal { transform: none; transition: opacity .35s linear; }
  .js .reveal.is-in { transform: none; }

  .hero__title .ln { overflow: visible; }
  .js .hero__title .ln__i { transform: none; animation: none; }

  .js .gloss {
    background: none; animation: none;
    -webkit-text-fill-color: var(--sage); color: var(--sage);
  }

  .wipe__cover, .js .wipe__cover, .wipe.is-in .wipe__cover { display: none; }
  .gloss-on-view::after { display: none; }

  .hero__cue-line::after { animation: none; opacity: 0; }
  .bead { animation: none; opacity: .38; }

  .btn--primary::after { display: none; }
  .btn:hover { transform: none; }

  .scroll-rail { display: none; }
}
