/* ==========================================================================
   Bubble Boy Laundry — all-blue bubble system
   Client palette: navy #2a3556 text · #3f74b5 strong blue (AA with white,
   buttons/links/labels) · #4d82c2 gradient lift · #6fa8dc pastel blue ·
   #bcd7f5 / #dcebfb light blues · #eef4fc ground. Strictly no pink.
   The two service lanes are distinguished by DEPTH of blue.
   ========================================================================== */

/* Sniglet — the site face. A rounded, bubbly Google font (OFL, self-hosted).
   Three voices:
   - Sniglet 800 (ExtraBold)      -> h1 and the landing title
   - "SnigletBook" 400 + synthetic bold -> h2/h3/h4 ("Sniglet 400 but bold"):
     the Regular cut registered under its own family so the browser has no
     real 800 to reach for and must embolden the 400 shapes instead
   - Sniglet 400                  -> all running text */
@font-face {
  font-family: "Sniglet";
  src: url("../fonts/Sniglet-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Sniglet";
  src: url("../fonts/Sniglet-ExtraBold.ttf") format("truetype");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "SnigletBook";
  src: url("../fonts/Sniglet-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  /* client palette — all blue, at the user's direction. No pink anywhere.
     The two lanes are told apart by DEPTH of blue: pastel for self-service,
     strong for pick-up & delivery. */
  --navy:        #2a3556;
  --blue-strong: #3f74b5;   /* buttons, links, labels — AA-safe with white */
  --blue-lift:   #4d82c2;   /* top of button gradients */
  --blue:        #6fa8dc;   /* status dot, borders, lane accent, glows */
  --blue-200:    #bcd7f5;
  --blue-100:    #dcebfb;
  --ground:      #eef4fc;

  /* semantic — components only ever use these */
  --bg:        var(--ground);
  --surface:   rgba(255, 255, 255, 0.92);   /* glass, not flat white */
  --surface-solid: #FFFFFF;
  --surface-2: var(--blue-100);
  --text:      var(--navy);
  --text-soft: #5A6788;
  --hair:      #D3E2F4;
  --accent:      var(--blue-strong);
  --accent-lift: var(--blue-lift);
  --accent-soft: var(--blue);
  --accent-ink: #FFFFFF;
  --lane-self: var(--blue);
  --lane-pd:   var(--blue-strong);
  --focus:     var(--blue-strong);
  --shadow:    0 10px 30px rgba(42, 53, 86, 0.10);
  --shadow-lg: 0 18px 44px rgba(42, 53, 86, 0.14);
  --todo-bg:   #FFF3D6;
  --todo-ink:  #7A4B00;
  --todo-line: #C99A2E;
  --bubbles-o: 0.5;

  --font-display: "Sniglet", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Sniglet", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono:    ui-monospace, "Cascadia Mono", Consolas, "SF Mono", Menlo, monospace;

  --s-1: 0.8125rem;
  --s0:  1rem;
  --s1:  1.25rem;
  --s2:  1.75rem;
  --s3:  2.5rem;
  --s4:  3.75rem;

  --r:   1.15rem;
  --r-sm: 0.65rem;

  --gut: clamp(1.15rem, 4vw, 3rem);
  --maxw: 1140px;
  --bar-h: 4.25rem;
}

/* Dark mode is intentionally NOT triggered automatically from the device's
   prefers-color-scheme — the brand palette (mascot photography, the white
   text-shadow outline on headings, etc.) was designed and tested against
   the light theme only, and on phones with system dark mode on, it broke
   badly: white heading outlines vanishing into light photo backgrounds,
   glass cards losing contrast. The site now always renders light unless a
   future feature explicitly sets data-theme="dark" (nothing does today).
   The rule set below is kept, reachable only via :root[data-theme="dark"],
   in case a manual toggle is added later and revisited properly. */

:root[data-theme="dark"] {
  --bg:        #1B2340;
  --surface:   rgba(38, 48, 82, 0.92);
  --surface-solid: #263052;
  --surface-2: #202A4A;
  --text:      #EEF4FC;
  --text-soft: #A9B6D9;
  --hair:      #39466E;
  --accent:      #8FC0EC;
  --accent-lift: #A3CDF2;
  --accent-soft: #6fa8dc;
  --accent-ink: #12203C;
  --lane-self: #8FC0EC;
  --lane-pd:   #A3CDF2;
  --focus:     #A3CDF2;
  --shadow:    0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 18px 44px rgba(0, 0, 0, 0.45);
  --todo-bg:   #3A2C08;
  --todo-ink:  #FFD98A;
  --todo-line: #A9812B;
  --bubbles-o: 0.06;
}

/* --------------------------------------------------------------- base */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-bottom: calc(var(--bar-h) + 1rem);
  /* `clip`, not `hidden`: it stops the full-bleed bands (100vw, which exceeds
     the viewport by the scrollbar width) from creating a horizontal scroll,
     without killing position:sticky on the header the way `hidden` would. */
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--s0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* No overflow-x here: html{overflow-x:clip} already stops sideways scroll,
     and overflow on body would turn it into a clip container, which detaches
     position:sticky from the viewport and stops the header following. */
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
  /* Soft colour washes drifting behind everything — the field the imagery
     dissolves into, so photos never sit on flat colour. */
  background:
    radial-gradient(58rem 40rem at 88% -6%, color-mix(in srgb, var(--accent-soft) 16%, transparent), transparent 62%),
    radial-gradient(52rem 38rem at -12% 28%, color-mix(in srgb, var(--lane-self) 18%, transparent), transparent 60%),
    radial-gradient(46rem 34rem at 108% 78%, color-mix(in srgb, var(--lane-self) 12%, transparent), transparent 62%),
    var(--bg);
}

@media (min-width: 861px) { body { padding-bottom: 0; } }

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;   /* Sniglet's rounded forms want room, not squeeze */
  line-height: 1.12;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0;
  /* Small white outline on every h1, drawn outward with stacked shadows. */
  text-shadow:
    2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff,
    1.5px 1.5px 0 #fff, -1.5px 1.5px 0 #fff, 1.5px -1.5px 0 #fff, -1.5px -1.5px 0 #fff;
}
h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;           /* Sniglet ExtraBold, matching h1 */
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
}

/* Landing hero title — huge, centred, sitting over the shop photo with a
   soft white lift so it stays legible against the render. */
.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  text-transform: uppercase;
  color: var(--text);   /* same navy as every other h1 */
  /* A true white outline, drawn outward with stacked shadows — text-stroke
     paints inward and would eat the letterforms. */
  text-shadow:
    4px 0 0 #fff, -4px 0 0 #fff, 0 4px 0 #fff, 0 -4px 0 #fff,
    3px 3px 0 #fff, -3px 3px 0 #fff, 3px -3px 0 #fff, -3px -3px 0 #fff,
    0 10px 34px rgba(255, 255, 255, 0.65);
}

p { margin: 0; }
ul { margin: 0; padding: 0; }

a { color: inherit; text-decoration-thickness: 1.5px; text-underline-offset: 0.18em; text-decoration-color: var(--accent-soft); }

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

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

.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* P&D pricing page only: every line item — the live estimate, the ironing
   grid, and all four static price tables — reads in Sniglet instead of the
   mono LED-readout treatment `.num` carries everywhere else on the site.
   Scoped to this one page so hours/phone/machine numbers elsewhere are
   untouched. */
body[data-url="/pickup-delivery/pricing/"] .num {
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
}
/* Row labels (garment / band / service names) sit in the same tables. The
   sitewide `tbody th { font-weight: 600 }` has no true 600 cut of Sniglet to
   draw on, so browsers synthesize (skew/embolden) weight 400 — heavier and
   slightly distorted next to true Sniglet Regular. Force the real 400 cut. */
body[data-url="/pickup-delivery/pricing/"] tbody th {
  font-family: var(--font-body);
  font-weight: 400;
}
/* Quote estimator on this page only: field legends, the wash/iron/both
   radio labels, and the weight chips read in caps, matching the rest of
   the site's Sniglet ExtraBold headings. Scoped here so the self-service
   estimator, which shares the same .est/.radio/.chip markup, is untouched. */
body[data-url="/pickup-delivery/pricing/"] .est legend,
body[data-url="/pickup-delivery/pricing/"] .radio,
body[data-url="/pickup-delivery/pricing/"] .chip {
  text-transform: uppercase;
}
/* Same page: the "Estimated total" row label and the estimate disclaimer
   pill. Scoped here since tr.total and .disclaimer are shared with the
   self-service estimator and the /book/ page. */
body[data-url="/pickup-delivery/pricing/"] tr.total th,
body[data-url="/pickup-delivery/pricing/"] .disclaimer {
  text-transform: uppercase;
}

/* Icon set: line icons inheriting currentColor, so they stay on-palette
   wherever they sit. Sized relative to the text they accompany. */
.icon {
  width: 1.15em; height: 1.15em; flex: none;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  display: inline-block; vertical-align: -0.18em;
}
.label .icon { width: 1.45em; height: 1.45em; vertical-align: -0.42em; margin-right: .25em; }
h2 .icon, h3 .icon { width: 1em; height: 1em; vertical-align: -0.12em; margin-right: .25em; }
.ticks li.has-icon { padding-left: 0; display: flex; align-items: baseline; gap: .55rem; }
.ticks li.has-icon::before { display: none; }
.ticks li.has-icon .icon { color: var(--accent); translate: 0 .15em; }

/* About-page media fades in AND back out as it crosses the viewport.
   The class pair is applied by motion.js only, so no-JS hides nothing. */
.fade-io { opacity: 0; transition: opacity .85s ease; }
.fade-io.in { opacity: 1; }

/* Google Maps embed — framed as a bubble card. An iframe, so it works with
   JavaScript disabled and never shifts layout (aspect ratio reserved). */
.map-frame {
  margin-top: 1.75rem;
  border-radius: 2.2rem; overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 7;
  border: 1px solid var(--hair);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 640px) { .map-frame { aspect-ratio: 4 / 3; } }

/* Cursor bubble trail — spawned by motion.js, rises and pops. */
.trail { position: fixed; inset: 0; pointer-events: none; z-index: 55; overflow: hidden; }
.trail span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%,
    rgba(255, 255, 255, 0.95),
    color-mix(in srgb, var(--blue) 30%, transparent) 55%,
    color-mix(in srgb, var(--blue) 12%, transparent) 78%);
  border: 1px solid color-mix(in srgb, var(--blue) 40%, transparent);
  animation: trail-rise linear forwards;
}
@keyframes trail-rise {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  18%  { opacity: 0.9; }
  80%  { opacity: 0.55; transform: translate(calc(var(--dx, 0px) * 0.8), -30px) scale(1); }
  100% { transform: translate(var(--dx, 0px), -44px) scale(1.15); opacity: 0; }
}

.label {
  font-family: var(--font-mono);
  font-size: var(--s-1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--accent-ink);
  padding: 0.7rem 1.1rem; z-index: 200; font-weight: 700; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* Unsupplied facts render visibly rather than being invented. */
.todo {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.86em;
  background: var(--todo-bg);
  color: var(--todo-ink);
  border: 1px dashed var(--todo-line);
  border-radius: 4px;
  padding: 0 0.35em;
  white-space: nowrap;
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 46px;
  padding: 0.72rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font: inherit; font-weight: 700; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer;
  text-transform: uppercase;
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--accent-lift), var(--accent));
  color: var(--accent-ink);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 34%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 44%, transparent); }
.btn-ghost {
  background: var(--surface); color: var(--text);
  border-color: var(--hair); box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent-soft); box-shadow: var(--shadow-lg); }

/* --------------------------------------------------------------- header */

.site-head {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--hair) 60%, transparent);
}
.head-inner { display: flex; align-items: center; gap: 1rem; min-height: 4rem; }

.brand { display: inline-flex; align-items: center; text-decoration: none; flex: none; }
.brand-logo { width: auto; height: 4rem; display: block; }
@media (max-width: 860px) { .brand-logo { height: 3.4rem; } }
.brand-dot {
  width: .85rem; height: .85rem; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffffff, var(--accent-soft) 68%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-soft) 25%, transparent);
}
.brand-name-2 { color: inherit; font-weight: inherit; }

.nav { flex: 1; overflow-x: auto; scrollbar-width: none; }
.nav::-webkit-scrollbar { display: none; }
.nav-list { display: flex; gap: .85rem; list-style: none; align-items: center; white-space: nowrap; }
/* Soft dividers between nav items so the all-caps run stays scannable. */
.nav-item + .nav-item { padding-left: .85rem; border-left: 1.5px solid color-mix(in srgb, var(--blue) 45%, transparent); }
/* No underlines, no active-page markers — every item reads the same until
   hovered, at the user's request. Header text runs in all caps. */
.nav-item > a { text-decoration: none; font-weight: 800; padding: .55rem 0; display: inline-block; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.02em; }
.nav-item > a:hover { color: var(--accent); }
.nav-sub { display: none; }
.nav-cta-mobile { display: none; }

.head-cta { margin-left: auto; }
.head-cta.btn { min-height: 42px; padding: .55rem 1.05rem; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.02em; }

/* Screen-reader-only text — visually hidden, still announced. */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.nav-toggle {
  flex: none; display: none; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; margin-left: auto;
  border: 1.5px solid var(--hair); border-radius: 999px;
  background: var(--surface); color: var(--text); cursor: pointer;
}
.nav-toggle .icon { width: 1.4rem; height: 1.4rem; }
.nav-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { display: block; }

/* Stops the page scrolling behind the open mobile-nav panel. */
body.nav-locked { overflow: hidden; }

/* Below 860px the seven-item nav no longer fits one row (that's what was
   clipping "Pick-up & Delivery" off-screen with no visible way to reach
   the rest). It collapses behind the hamburger toggle instead: with JS,
   .nav starts hidden and opens as a full-width dropdown; with no JS,
   .js-only keeps the toggle hidden and .nav falls back to the original
   horizontally-scrollable strip so every link stays reachable. */
@media (max-width: 860px) {
  .head-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  html.js .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    max-height: calc(100vh - 100%); overflow-y: auto;
    background: var(--bg);
    border-bottom: 1px solid color-mix(in srgb, var(--hair) 60%, transparent);
    box-shadow: var(--shadow-lg);
  }
  html.js .nav.nav-open { display: block; }

  .nav-list {
    flex-direction: column; align-items: stretch; gap: 0;
    white-space: normal; padding: .5rem var(--gut) 1.2rem;
  }
  .nav-item, .nav-item + .nav-item {
    border-left: none; padding-left: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--hair) 60%, transparent);
  }
  .nav-item > a { display: block; padding: .9rem 0; font-size: 1rem; }
  .nav-sub { display: block; list-style: none; padding: 0 0 .6rem; }
  .nav-sub a {
    display: block; padding: .55rem 0 .55rem .9rem;
    text-decoration: none; font-weight: 600; font-size: .92rem; color: var(--text-soft);
  }
  .nav-cta-mobile { display: block; border-bottom: none; padding-top: .9rem; }
  .nav-cta-mobile .btn { width: 100%; }
}

/* --------------------------------------------------------------- footer */

.site-foot {
  background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--surface-2) 65%, transparent) 18%, var(--surface-2));
  margin-top: clamp(3rem, 8vw, 6rem);
}
.foot-grid {
  display: grid; gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding-block: clamp(2.5rem, 6vw, 4rem) 2rem;
}
.foot-brand { font-family: var(--font-display); font-weight: 800; font-size: var(--s1); letter-spacing: -0.03em; text-transform: uppercase; }
.foot-tag { color: var(--text-soft); margin-top: .15rem; }
.foot-h { font-family: var(--font-mono); font-size: var(--s-1); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: .6rem; }
.nap { font-style: normal; display: flex; flex-direction: column; gap: .3rem; margin-top: 1rem; }
.nap-line { text-decoration: none; }
.nap-line:hover { text-decoration: underline; }
.foot-hours-line { font-size: var(--s1); font-weight: 600; }
.foot-note { color: var(--text-soft); font-size: var(--s-1); }
.foot-note.happy { color: var(--lane-pd); font-weight: 700; }
.foot-nav ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.foot-nav a { text-decoration: none; }
.foot-nav a:hover { text-decoration: underline; }
.foot-legal { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-bottom: 2.5rem; color: var(--text-soft); font-size: var(--s-1); border-top: 1px solid var(--hair); padding-top: 1.25rem; }

/* --------------------------------------------------------------- sticky action bar (mobile) */

.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1.4fr;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hair);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -8px 24px rgba(42, 53, 86, 0.10);
}
.actionbar-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: var(--bar-h); gap: .1rem; text-decoration: none; font-weight: 700;
}
.actionbar-btn + .actionbar-btn { border-left: 1px solid var(--hair); }
.actionbar-primary { background: var(--accent); color: var(--accent-ink); }
.actionbar-label { font-size: var(--s0); letter-spacing: -0.01em; }
.actionbar-sub { font-size: 0.75rem; opacity: .82; font-weight: 500; }

@media (min-width: 861px) { .actionbar { display: none; } }

/* --------------------------------------------------------------- hero + lanes */

/* Landing hero: the shop render as full-bleed backdrop, copy centred on top
   inside a soft white wash so the text always wins against the image. */
.hero-stage {
  position: relative;
  width: 100vw; margin-left: calc(50% - 50vw);
  min-height: clamp(520px, 78vh, 820px);
  display: grid; place-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 62%;
  mask-image: linear-gradient(to bottom, black 82%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 82%, transparent);
}
.hero-stage::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(58% 62% at 50% 46%,
    rgba(255, 255, 255, 0.82),
    rgba(255, 255, 255, 0.45) 55%,
    rgba(238, 244, 252, 0.05) 100%);
}
.hero-stage-inner {
  position: relative; z-index: 1;
  display: grid; justify-items: center; text-align: center;
  padding-block: clamp(3rem, 9vh, 5rem);
}
.hero-stage-inner .hero-sub {
  text-align: center; margin-inline: auto;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-radius: 1.4rem;
  padding: .8rem 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}
.hero-stage-inner .hero-cta { justify-content: center; }

.hero { padding-block: clamp(2.75rem, 7vw, 5.5rem) clamp(1.5rem, 4vw, 2.5rem); }
.hero h1 { font-size: clamp(2.45rem, 8vw, var(--s4)); }
.hero-sub { margin-top: 1.1rem; font-size: var(--s1); color: var(--text-soft); max-width: 38ch; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }

.status {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono); font-size: var(--s-1); letter-spacing: .06em;
  background: var(--surface); border-radius: 999px; padding: .38rem .9rem;
  min-height: 2rem; margin-bottom: 1.2rem; box-shadow: var(--shadow);
}
.status-dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--accent-soft); flex: none; }
.status [data-open-status] { min-width: 21ch; }
/* Semantic state colours: green means come on down, red means come tomorrow. */
.status.is-open { color: #14804A; }
.status.is-open .status-dot { background: #22B573; box-shadow: 0 0 0 3px rgba(34, 181, 115, 0.28); }
.status.is-closed { color: #B02A2A; }
.status.is-closed .status-dot { background: #D64545; box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.22); }

.lanes {
  display: grid; gap: 1.1rem;
  margin-block: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 720px) { .lanes { grid-template-columns: 1fr 1fr; } }

.lane {
  border-radius: var(--r);
  padding: clamp(1.5rem, 3.5vw, 2.2rem);
  display: flex; flex-direction: column; gap: .9rem;
  border-top: 5px solid transparent;
}
.lane-self { border-top-color: var(--lane-self); }
.lane-pd   { border-top-color: var(--lane-pd); }
.lane h2, .lane h3 { font-size: var(--s2); }
.lane-for { color: var(--text-soft); }
.lane dl { display: grid; grid-template-columns: auto 1fr; gap: .38rem .9rem; margin: 0; font-size: var(--s-1); }
.lane dt { color: var(--text-soft); }
.lane dd { margin: 0; }
.lane .btn { margin-top: auto; align-self: flex-start; }

.facts {
  display: grid; gap: .8rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-block: 2rem;
}
.fact {
  border-radius: var(--r-sm);
  padding: .95rem 1.05rem; display: flex; flex-direction: column; gap: .25rem;
  align-items: center; text-align: center;
}
.fact-v { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: var(--s1); font-weight: 600; letter-spacing: -0.02em; }
.fact .label { color: var(--text-soft); }

.section { padding-block: clamp(2.5rem, 6vw, 4rem); }
.section + .section { border-top: 1px solid color-mix(in srgb, var(--hair) 55%, transparent); }
.section h2 { font-size: clamp(1.85rem, 5vw, 2.8rem); }
.section > p { margin-top: .95rem; color: var(--text-soft); max-width: 62ch; }

/* --------------------------------------------------------------- content */

.table-scroll {
  overflow-x: auto; margin-top: 1.4rem; -webkit-overflow-scrolling: touch;
  border-radius: var(--r-sm);
  padding: .5rem 1rem 1rem;
}
table { border-collapse: collapse; width: 100%; min-width: 340px; }
/* 340px was wider than the phones this runs on (390px viewport minus the
   card's own padding leaves less than that), so short 3-column tables like
   the washer/dryer price lists were forced into horizontal scroll for no
   reason — content that's realistically "Small / 5kg / $6" doesn't need
   340px to read cleanly. */
@media (max-width: 420px) { table { min-width: 0; } }
caption { text-align: left; margin: .7rem 0 .5rem; }
th, td { text-align: right; padding: .7rem .85rem; border-bottom: 1px solid color-mix(in srgb, var(--hair) 65%, transparent); }
th:first-child, td:first-child { text-align: left; }
thead th {
  font-family: var(--font-mono); font-size: var(--s-1); letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-soft); font-weight: 500;
}
tbody th { font-weight: 600; }
tbody td { font-variant-numeric: tabular-nums; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: none; }
tr.total th, tr.total td { border-top: 2px solid var(--text); border-bottom: none; font-weight: 800; }

.ticks { list-style: none; display: grid; gap: .55rem; margin-top: 1.2rem; }
.ticks li { padding-left: 1.7rem; position: relative; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .72rem; height: .4rem;
  border-left: 2.5px solid var(--accent-soft); border-bottom: 2.5px solid var(--accent-soft);
  transform: rotate(-45deg); border-radius: 1px;
}

.steps { list-style: none; counter-reset: step; display: grid; gap: 1.05rem; margin-top: 1.3rem; }
.steps li { counter-increment: step; padding-left: 2.9rem; position: relative; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 2.2rem; height: 2.2rem; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--accent); background: color-mix(in srgb, var(--accent-soft) 14%, var(--surface));
  border-radius: 50%;
}
.steps-big li { padding-left: 3.1rem; }
.steps strong { display: block; }

.cols { list-style: none; columns: 2; gap: 1.5rem; margin-top: 1rem; }
.cols li { break-inside: avoid; padding: .18rem 0; }

.fineprint { margin-top: 1rem; font-size: var(--s-1); color: var(--text-soft); }
.todo-note { margin-top: .8rem; }

.notice {
  margin-top: 1.4rem; padding: 1.15rem 1.3rem;
  border-radius: var(--r-sm);
  border-left: 4px solid var(--lane-self);
  display: grid; gap: .55rem;
}

.disclaimer {
  margin-top: 1.1rem; padding: .85rem 1.1rem;
  background: color-mix(in srgb, var(--accent-soft) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent-soft) 35%, transparent);
  border-radius: var(--r-sm); font-weight: 600; font-size: var(--s0);
}

.happy-badge {
  display: inline-block; margin-top: 1rem;
  font-weight: 700; color: var(--accent);
  background: color-mix(in srgb, var(--accent-soft) 12%, var(--surface-solid));
  border: 1.5px solid color-mix(in srgb, var(--accent-soft) 45%, transparent);
  border-radius: 999px;
  padding: .4rem 1rem;
}

.cta-card {
  background:
    radial-gradient(40rem 22rem at 85% 0%, color-mix(in srgb, var(--blue-strong) 12%, transparent), transparent 65%),
    linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 24%, var(--surface-solid)), color-mix(in srgb, var(--blue-100) 60%, var(--surface-solid)));
  border-radius: var(--r);
  padding: clamp(2rem, 6vw, 3.5rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: grid; justify-items: center; gap: .9rem;
}
.cta-card h2 { font-size: clamp(1.65rem, 4.5vw, var(--s3)); }
.cta-card p { color: var(--text-soft); max-width: 44ch; }
.cta-card .hero-cta { margin-top: .6rem; justify-content: center; }

.crosslink {
  margin-top: 2.2rem; padding-top: 1.1rem;
  border-top: 1px dashed var(--hair);
  color: var(--text-soft); font-size: var(--s-1);
}

.big { font-size: var(--s2); font-weight: 800; letter-spacing: -0.03em; }
.unit { font-size: var(--s-1); font-weight: 500; color: var(--text-soft); }

.lane-head { border-bottom: 4px solid var(--hair); padding-bottom: .5rem; }
.lane-head-self { border-color: var(--lane-self); }
.lane-head-pd { border-color: var(--lane-pd); }

.faq { margin-top: 1.5rem; display: grid; gap: .8rem; }
.faq details {
  border-radius: var(--r-sm);
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  width: 1.7rem; height: 1.7rem; display: grid; place-items: center;
  color: var(--accent); font-weight: 800; font-size: 1.25rem;
  background: color-mix(in srgb, var(--accent-soft) 14%, var(--surface));
  border-radius: 50%;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq h3 { font-size: var(--s1); }
.faq p { color: var(--text-soft); padding: 0 1.2rem 1.1rem; max-width: 62ch; }

/* Height is reserved by book.js only when a live embed is loading — the
   placeholder state stays compact instead of a 600px void. */
.embed-frame {
  margin-top: 1.4rem;
  border-radius: var(--r);
  display: grid; place-items: center; padding: 2rem;
}
.embed-placeholder { text-align: center; display: grid; gap: .7rem; max-width: 42ch; justify-items: center; }
.embed-loading { display: grid; place-items: center; min-height: 200px; color: var(--text-soft); }

@media (max-width: 520px) { .cols { columns: 1; } }

/* --------------------------------------------------------------- JS gating */

html.no-js .js-only { display: none; }

/* --------------------------------------------------------------- estimators */

.est { margin-top: 1.5rem; display: grid; gap: 1.25rem; }
.est fieldset {
  border: none; border-radius: var(--r);
  padding: 1.15rem 1.3rem; margin: 0; min-width: 0;
}
.est legend {
  font-weight: 700; float: left; width: 100%; margin-bottom: .7rem;
}
.est legend + * { clear: both; }
.est legend output { color: var(--accent); margin-left: .3rem; }

.radios { display: flex; gap: .6rem; flex-wrap: wrap; }
.radio {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid var(--hair); border-radius: 999px;
  padding: .6rem 1.05rem; min-height: 44px; cursor: pointer; font-weight: 600;
  background: var(--surface);
  transition: border-color .15s ease, background .15s ease;
}
.radio:has(input:checked) {
  border-color: var(--accent-soft);
  background: color-mix(in srgb, var(--accent-soft) 12%, var(--surface));
}
.radio input { accent-color: var(--accent); width: 1.1rem; height: 1.1rem; }

.est input[type="range"] { width: 100%; margin-top: .4rem; accent-color: var(--accent); height: 44px; }

.chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .6rem; }
.chip {
  font: inherit; font-size: var(--s-1); font-weight: 600;
  background: color-mix(in srgb, var(--lane-self) 14%, var(--surface));
  color: var(--text);
  border: 1.5px solid transparent; border-radius: 999px;
  padding: .45rem 1rem; min-height: 44px; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.chip:hover { border-color: var(--accent-soft); background: color-mix(in srgb, var(--accent-soft) 12%, var(--surface)); }

.est-grid { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }

/* Eight ironing tiers, each a row: garment · price · quantity. */
.iron-grid { display: grid; gap: .45rem; }
.iron-row {
  display: grid; grid-template-columns: 1fr auto 5rem;
  gap: .8rem; align-items: center;
  padding: .45rem .2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--hair) 60%, transparent);
}
.iron-row:last-child { border-bottom: none; }
.iron-label { font-size: var(--s-1); }
.iron-price { color: var(--text-soft); font-size: var(--s-1); }
.iron-row input {
  font: inherit; font-variant-numeric: tabular-nums;
  min-height: 40px; padding: .3rem .5rem; text-align: center;
  border: 1.5px solid var(--hair); border-radius: var(--r-sm);
  background: var(--surface-solid); color: var(--text); width: 100%;
}
.stepper-row { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); margin-top: .5rem; }

.field-inline { display: grid; gap: .35rem; font-weight: 600; }
.field-inline span { font-size: var(--s-1); color: var(--text-soft); }
.field-inline input, .field-inline select {
  font: inherit; font-variant-numeric: tabular-nums;
  min-height: 44px; padding: .5rem .8rem;
  border: 1.5px solid var(--hair); border-radius: var(--r-sm);
  background: var(--surface); color: var(--text); width: 100%;
}
.field-inline input:focus, .field-inline select:focus { border-color: var(--accent-soft); }

.est-out {
  display: grid; gap: .9rem; justify-items: start;
  border-radius: var(--r);
  padding: 1.15rem 1.3rem;
}
.est-out table { min-width: 0; width: 100%; }
.est-out [data-total] { font-size: var(--s1); }

.summary-actions { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.copy-done { font-weight: 600; color: var(--accent); }

/* --------------------------------------------------------------- media
   Integration over placement: imagery breaks out to the full viewport and
   dissolves at top and bottom into the page's colour washes — no rectangle
   edges — with a faint ground-tint overlay pulling the renders' warm
   temperature toward the page. Circular masks (porthole, bubble) carry the
   brand motif. Reduced motion swaps every video for a still, in pure CSS. */

.band-media {
  margin-top: 2rem;
  width: 100vw; margin-left: calc(50% - 50vw);
  position: relative;
  /* Clips the parallax over-scale — without this the 1.12x image is wider
     than the viewport and drags the page sideways. */
  overflow: hidden;
}
.band-media video,
.band-media img {
  width: 100%; height: auto; display: block;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 84%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 14%, black 84%, transparent);
}
.band-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: color-mix(in srgb, var(--bg) 14%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 84%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 14%, black 84%, transparent);
}
.band-media .motion-fallback { display: none; }

/* A render on a plain studio ground reads as a rectangle pasted on the page.
   `.band-blend` fades it out on every edge with a radial mask and washes the
   page's own ground colour across it, so the seam disappears entirely. */
.band-blend video, .band-blend img {
  mask-image:
    radial-gradient(120% 108% at 50% 50%, black 32%, transparent 76%),
    linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: radial-gradient(120% 108% at 50% 50%, black 32%, transparent 76%);
  mask-composite: intersect;
}
.band-blend::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 105% at 50% 50%, transparent 30%, var(--bg) 78%),
    color-mix(in srgb, var(--bg) 20%, transparent);
  mask-image: none; -webkit-mask-image: none;
}

.porthole {
  width: min(320px, 72vw); aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; margin-top: 1.75rem;
  border: 8px solid var(--surface);
  box-shadow: var(--shadow-lg), 0 0 0 1.5px color-mix(in srgb, var(--lane-self) 40%, transparent);
}
.porthole video, .porthole img { width: 100%; height: 100%; object-fit: cover; display: block; }
.porthole .motion-fallback { display: none; }

.bubble-fig {
  width: min(300px, 68vw); aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; justify-self: center; position: relative;
  border: 8px solid var(--surface);
  box-shadow: var(--shadow-lg), 0 0 0 1.5px color-mix(in srgb, var(--accent-soft) 45%, transparent),
              0 0 60px color-mix(in srgb, var(--accent-soft) 25%, transparent);
}
.bubble-fig video, .bubble-fig img { width: 100%; height: 100%; object-fit: contain; object-position: 50% 60%; display: block; }
.bubble-fig .motion-fallback { display: none; }

.hero-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 760px) { .hero-grid { grid-template-columns: 1.2fr 0.8fr; } }

/* Ambient layer — the generated bubble art covers the ENTIRE page as a
   fixed backdrop (edge to edge, every page), with the rising CSS bubbles
   drifting over it. Both sit under every surface, so cards and text keep
   full contrast; the art fades right down in dark mode. */
.deco { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.deco::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/bg-bubbles.jpg") center / cover no-repeat;
  opacity: var(--bubbles-o);
}

/* Liquid-level scroll: a soapy tide, full height at the top of the page,
   that drains away as the visitor scrolls down — clear by the time the
   footer is on screen. --wash-pct is written by motion.js from scroll
   progress (100 at the top, 0 at the bottom); everything here is driven
   off that one number so JS never touches this element's own layout. */
.deco-wash {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: calc(var(--wash-pct, 0) * 1%);
  background: linear-gradient(to bottom,
    color-mix(in srgb, var(--lane-self) 22%, transparent),
    color-mix(in srgb, var(--accent-soft) 30%, transparent) 60%,
    color-mix(in srgb, var(--accent-soft) 38%, transparent));
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 30 Q 100 5 200 30 T 400 30 T 600 30 T 800 30 T 1000 30 T 1200 30 V60 H0 Z' fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 30 Q 100 5 200 30 T 400 30 T 600 30 T 800 30 T 1000 30 T 1200 30 V60 H0 Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: 1200px 100%; mask-size: 1200px 100%;
  -webkit-mask-repeat: repeat-x; mask-repeat: repeat-x;
  -webkit-mask-position: 0 0; mask-position: 0 0;
  animation: wash-agitate 7s linear infinite;
  animation-play-state: running;
  opacity: calc(1 - var(--wash-pct, 0) / 100 * 0.82);
  transition: height 0.4s ease-out;
}
/* Near the footer the tide line is almost gone and dead calm — the wave
   texture would just read as noise on a sliver of colour. */
@keyframes wash-agitate {
  from { -webkit-mask-position: 0 0;    mask-position: 0 0; }
  to   { -webkit-mask-position: -1200px 0; mask-position: -1200px 0; }
}
.deco span {
  position: absolute; bottom: -10vh; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%,
    rgba(255, 255, 255, 0.9),
    color-mix(in srgb, var(--accent-soft) 20%, transparent) 55%,
    color-mix(in srgb, var(--lane-self) 14%, transparent) 78%);
  border: 1px solid color-mix(in srgb, var(--lane-self) 28%, transparent);
  opacity: 0;
  animation: bub-rise linear infinite;
}
.deco span:nth-child(1) { left: 6%;  width: 34px; height: 34px; animation-duration: 26s; animation-delay: -4s; }
.deco span:nth-child(2) { left: 16%; width: 14px; height: 14px; animation-duration: 34s; animation-delay: -20s; }
.deco span:nth-child(3) { left: 34%; width: 22px; height: 22px; animation-duration: 30s; animation-delay: -11s; }
.deco span:nth-child(4) { left: 55%; width: 44px; height: 44px; animation-duration: 38s; animation-delay: -28s; }
.deco span:nth-child(5) { left: 71%; width: 16px; height: 16px; animation-duration: 24s; animation-delay: -7s; }
.deco span:nth-child(6) { left: 84%; width: 28px; height: 28px; animation-duration: 32s; animation-delay: -16s; }
.deco span:nth-child(7) { left: 93%; width: 12px; height: 12px; animation-duration: 28s; animation-delay: -23s; }

@keyframes bub-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: .55; }
  86%  { opacity: .4; }
  100% { transform: translateY(-118vh) translateX(28px); opacity: 0; }
}

/* --------------------------------------------------------------- bubble surfaces
   Every floating card is a soap bubble: glass fill, an iridescent rim that
   picks up blue on one edge and pink on the other, and a soft specular
   highlight in the top-left where light would catch. The highlight is a
   pseudo-element so it never interferes with content. */

/* The catch-light is the FIRST background layer, not a pseudo-element, so it
   is physically incapable of sitting over text — an earlier version used an
   overlay and washed out every label in the top-left of the card. */
.lane, .fact, .table-scroll, .notice, .est fieldset, .est-out,
.faq details, .cta-card, .embed-frame, .jstep figure {
  position: relative;
  border-radius: 2.25rem;
  border: 1px solid transparent;
  background-image:
    radial-gradient(60% 45% at 14% 6%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 72%),
    linear-gradient(var(--surface), var(--surface)),
    linear-gradient(140deg,
      color-mix(in srgb, var(--blue) 55%, transparent) 0%,
      rgba(255, 255, 255, 0.85) 38%,
      color-mix(in srgb, var(--blue-200) 55%, transparent) 78%,
      color-mix(in srgb, var(--blue) 45%, transparent) 100%);
  background-origin: border-box;
  background-clip: padding-box, padding-box, border-box;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  /* Liquid-glass refraction: blur what's behind the card and lift its
     saturation, so colour bleeds through the glass instead of the card
     reading as a flat tint. */
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  overflow: hidden;
}
/* .table-scroll needs its own horizontal scrollbar to reach wide tables on
   narrow phones (that's the whole point of the class) — the blanket
   overflow: hidden above was silently winning over its overflow-x: auto
   and clipping the Price column with no way to scroll to it. Corners still
   clip via border-radius alone; only the scroll axis is restored. */
.table-scroll { overflow: auto; }

.fact { border-radius: 1.8rem; }

/* Bigger, bubblier fact tiles (self-service). Organic, slightly uneven radii
   so each card reads as its own bubble rather than a stamped rectangle. */
.facts-big { grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 1.1rem; }
.facts-big .fact { padding: 1.45rem 1.6rem; gap: .5rem; }
.facts-big .fact-v { font-size: var(--s2); }
.facts-big .label { font-size: .85rem; }
.facts-big .label .icon { width: 1.7em; height: 1.7em; vertical-align: -0.5em; }
.facts-big .fact:nth-child(5n+1) { border-radius: 2.6rem 2.1rem 2.5rem 2.2rem; }
.facts-big .fact:nth-child(5n+2) { border-radius: 2.1rem 2.6rem 2.2rem 2.5rem; }
.facts-big .fact:nth-child(5n+3) { border-radius: 2.5rem 2.2rem 2.6rem 2.1rem; }
.facts-big .fact:nth-child(5n+4) { border-radius: 2.2rem 2.5rem 2.1rem 2.6rem; }
.facts-big .fact:nth-child(5n)   { border-radius: 2.4rem 2.3rem 2.5rem 2.2rem; }
.faq details { border-radius: 1.8rem; }
.notice, .disclaimer { border-radius: 1.8rem; }

/* --------------------------------------------------------------- scroll video
   The pick-up journey clip is DRIVEN by the visitor's scroll: motion.js adds
   .sv-on, pauses the loop, and maps scroll progress to video time. Without
   JS the very same video simply autoplays as a normal band; reduced motion
   swaps in a still. */

.scrollvideo { position: relative; width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; }
.sv-sticky {
  position: relative;
  display: grid; place-items: center;
  padding-block: 1rem;
}
/* The clip keeps its own 21:9 shape — never cover-stretched to viewport
   height, which blew it into an unreadable crop. */
.sv-sticky video, .sv-sticky > img {
  width: 100%; height: auto; max-height: 86vh; object-fit: cover;
  display: block; grid-area: 1 / 1;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}
.sv-sticky .motion-fallback { display: none; }
.sv-copy {
  position: relative; z-index: 1; grid-area: 1 / 1; align-self: end;
  margin: 0 auto clamp(1.5rem, 5vh, 3rem);
  max-width: 40ch; text-align: center;
  background: color-mix(in srgb, var(--surface-solid) 80%, transparent);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  padding: 1.3rem 1.8rem;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .7);
}
.sv-copy h2 { font-size: clamp(1.5rem, 3.8vw, var(--s2)); margin-top: .3rem; }
.sv-hint { color: var(--text-soft); font-size: var(--s-1); margin-top: .5rem; }

/* (The scroll-scrub variant was retired — the clip now simply autoplays as a
   letterboxed band with the copy overlaid, and no stage height is reserved.) */

/* --------------------------------------------------------------- reviews
   Horizontal scroll-snap carousel of bubble cards — numbered like the
   dontboardme testimonial pattern. Pure CSS: swipe on touch, scroll-wheel or
   keyboard on desktop, no JS to break. */

.reviews {
  list-style: none;
  display: grid; grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);   /* two rows deep, scrolls sideways */
  grid-auto-columns: min(340px, 82vw);
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1.5rem .4rem 1.5rem;
  margin-top: 1rem;
  scrollbar-width: thin;
}
@media (max-width: 640px) { .reviews { grid-template-rows: 1fr; } }
.review {
  scroll-snap-align: start;
  position: relative;
  border-radius: 2rem;
  padding: 1.5rem 1.5rem 1.3rem;
  display: flex; flex-direction: column; gap: .55rem;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  /* Bubble treatment: glass fill + iridescent rim, matching the other cards */
  border: 1px solid transparent;
  background-image:
    radial-gradient(60% 45% at 14% 6%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 72%),
    linear-gradient(var(--surface), var(--surface)),
    linear-gradient(140deg,
      color-mix(in srgb, var(--blue) 55%, transparent) 0%,
      rgba(255, 255, 255, 0.85) 38%,
      color-mix(in srgb, var(--blue-200) 55%, transparent) 78%,
      color-mix(in srgb, var(--blue) 45%, transparent) 100%);
  background-origin: border-box;
  background-clip: padding-box, padding-box, border-box;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform .22s ease, box-shadow .22s ease;
}
@media (hover: hover) {
  .review:hover {
    transform: translateY(-6px) scale(1.015) rotate(-0.3deg);
    box-shadow: var(--shadow-lg),
                0 0 0 2px color-mix(in srgb, var(--blue) 45%, transparent),
                0 0 36px color-mix(in srgb, var(--blue) 30%, transparent);
  }
}
.stars {
  color: #F5A800;
  letter-spacing: .18em;
  font-size: 1.35rem;
  line-height: 1;
  text-shadow: 0 1px 0 #fff, 0 3px 10px rgba(245, 168, 0, 0.5);
}
.review-n {
  position: absolute; top: -1rem; left: 1.2rem;
  background: var(--accent); color: var(--accent-ink);
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  box-shadow: var(--shadow);
}
.review blockquote { margin: .4rem 0 0; }
.review blockquote p { color: var(--text-soft); font-size: var(--s-1); line-height: 1.6; }
.review footer { margin-top: auto; display: flex; align-items: baseline; gap: .6rem; }
.review footer span { color: var(--text-soft); font-size: var(--s-1); }
.reviews:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: var(--r-sm); }

/* --------------------------------------------------------------- journey strip
   The four beats of the customer's actual visit, each with its own picture.
   Alternating sides on desktop so the eye zig-zags down rather than scanning
   a uniform column; stacked on mobile. */

.journey { list-style: none; counter-reset: j; display: grid; gap: 2.5rem; margin-top: 2rem; }
.jstep {
  counter-increment: j;
  display: grid; gap: 1.25rem; align-items: center;
}
.jstep figure {
  margin: 0; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9; background: var(--surface-2);
}
.jstep img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jstep h3 { font-size: clamp(1.6rem, 3.2vw, 2rem); display: flex; align-items: center; gap: .7rem; }
.jstep h3::before {
  content: counter(j, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  color: var(--accent-ink); background: var(--accent);
  width: 2.9rem; height: 2.9rem; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 35%, transparent);
}
.jstep p { color: var(--text-soft); margin-top: .55rem; max-width: 46ch; }

@media (min-width: 780px) {
  .jstep { grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; }
  .jstep:nth-child(even) figure { order: 2; }
}

/* --------------------------------------------------------------- spin band
   One full-bleed video, already framed tight on a single drum. No scroll
   scrubbing: the video simply plays. Copy sits in a glass panel to one side
   so the tumbling drum stays the subject. */

.spinband {
  position: relative;
  width: 100vw; margin-left: calc(50% - 50vw);
  min-height: min(62vh, 520px);
  display: grid; align-items: center;
  overflow: hidden;
  margin-block: clamp(2.5rem, 6vw, 4rem);
}
.spinband-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}
.spinband img.motion-fallback { display: none; }
.spinband-copy {
  position: relative; z-index: 1;
  justify-self: start;
  margin-inline: max(var(--gut), calc((100vw - var(--maxw)) / 2 + var(--gut)));
  max-width: 34ch;
  background: color-mix(in srgb, var(--surface-solid) 82%, transparent);
  backdrop-filter: blur(14px);
  border-radius: 1.6rem;
  padding: clamp(1.4rem, 3.5vw, 2.1rem);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .7);
}
.spinband-copy h2 { font-size: clamp(1.65rem, 4.5vw, var(--s3)); margin-top: .3rem; }
.spinband-copy p { color: var(--text-soft); margin-top: .7rem; }
.spinband-copy .btn { margin-top: 1.1rem; }

/* --------------------------------------------------------------- before/after
   Real shop vs bubble-world render of the same wall. The range input covers
   the whole figure, so dragging anywhere moves the divide; keyboard works
   because it's a real input. No JS: the plain photograph shows. */

.ba {
  position: relative; margin-top: 1.75rem;
  border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 7;
  --pos: 50%;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-over { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 3px; background: #fff; pointer-events: none;
  box-shadow: 0 0 12px rgba(42, 53, 86, 0.45);
}
.ba-handle::after {
  content: "\2194";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: #fff; color: var(--accent);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.1rem;
  box-shadow: var(--shadow);
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba:has(.ba-range:focus-visible) { outline: 3px solid var(--focus); outline-offset: 3px; }
.ba-chip {
  position: absolute; bottom: .85rem; z-index: 1; pointer-events: none;
  padding: .28rem .8rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.88); color: var(--navy);
  font-size: var(--s-1); font-weight: 700;
}
.ba-chip-l { left: .85rem; }
.ba-chip-r { right: .85rem; }
html.no-js .ba-over, html.no-js .ba-handle, html.no-js .ba-range, html.no-js .ba-chip { display: none; }

/* --------------------------------------------------------------- mascot peek */

/* The corner mascot is now just his head — a true transparent cutout, no
   containing circle, so there is no visible boundary between image and frame.
   It bobs gently and offers "Book a pickup" on hover. */
.peek {
  position: fixed; right: clamp(1rem, 3vw, 2.5rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 80; margin: 0; text-decoration: none;
  display: grid; justify-items: center; gap: .5rem;
  opacity: 0; transform: translateY(24px) scale(.9);
  transition: opacity .5s ease, transform .5s cubic-bezier(.16, .84, .32, 1);
  pointer-events: none;
}
.peek.peek-in { opacity: 1; transform: none; pointer-events: auto; }
.peek-head {
  display: block; width: 108px;
  animation: peek-bob 5s ease-in-out infinite;
  transition: transform .25s ease;
}
.peek-head img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 10px 18px rgba(42, 53, 86, 0.3));
}
.peek-tip {
  font-size: var(--s-1); font-weight: 800; color: var(--accent-ink);
  background: var(--accent); border-radius: 999px; padding: .3rem .8rem;
  box-shadow: var(--shadow); opacity: 0; transition: opacity .2s ease;
}
.peek:hover .peek-tip, .peek:focus-visible .peek-tip { opacity: 1; }
.peek:hover .peek-head, .peek:focus-visible .peek-head { transform: scale(1.08) rotate(-4deg); }

@keyframes peek-bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }

@media (max-width: 860px) { .peek { display: none; } }

/* P&D hero mascot — no frame at all: the render's own pale ground dissolves
   into the page through a radial mask, so he reads as part of the background. */
.hero-mascot { margin: 0; justify-self: center; width: min(380px, 82vw); }
.hero-mascot img {
  width: 100%; height: auto; display: block;
  mask-image: radial-gradient(58% 62% at 50% 48%, black 58%, transparent 92%);
  -webkit-mask-image: radial-gradient(58% 62% at 50% 48%, black 58%, transparent 92%);
  animation: card-drift 10s ease-in-out infinite;
}

/* --------------------------------------------------------------- happy hour banner */

.hh-banner {
  margin: 0; text-align: center;
  font-weight: 700; font-size: var(--s-1);
  padding: .55rem var(--gut);
  background: linear-gradient(90deg, var(--blue-200), var(--blue-100));
  color: var(--navy);
}
.hh-banner.live { background: var(--accent); color: var(--accent-ink); }

/* --------------------------------------------------------------- scroll motion
   .reveal is added by motion.js only — never authored in HTML — so without
   JavaScript nothing is ever hidden. Transform + opacity: no layout shift. */

.reveal { opacity: 0; transform: translateY(24px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.16, .84, .32, 1);
}

@media (prefers-reduced-motion: no-preference) {
  /* Parallax drift, driven by --py from motion.js. Bands over-scale a touch
     so the drift never exposes an edge behind the mask. */
  html.js .band-media > img, html.js .band-media > video { scale: 1.12; translate: 0 var(--py, 0); }
  html.js .jstep figure img { scale: 1.1; translate: 0 calc(var(--py, 0) * .5); }
  html.js .porthole, html.js .bubble-fig { translate: 0 calc(var(--py, 0) * .55); }
  html.js .hero-backdrop { translate: 0 calc(var(--py, 0) * .8); }
}

@media (hover: hover) {
  .lane, .fact, .faq details { transition: transform .2s ease, box-shadow .2s ease; }
  .lane:hover { transform: translateY(-5px) rotate(0.4deg); box-shadow: var(--shadow-lg); }
  .fact:hover { transform: translateY(-4px) rotate(-0.5deg); box-shadow: var(--shadow-lg); }
  .faq details:hover { box-shadow: var(--shadow-lg); }
}

/* The cards float like the bubbles they are — a slow ambient drift on the
   `translate` property so it never fights the reveal/hover transforms.
   Interaction surfaces (forms, tables) stay still; drifting inputs are
   maddening. Killed wholesale under prefers-reduced-motion. */
@media (prefers-reduced-motion: no-preference) {
  .lane, .fact, .cta-card, .bubble-fig { animation: card-drift 9s ease-in-out infinite; }
  .fact:nth-child(2n) { animation-duration: 11s; animation-delay: -3s; }
  .fact:nth-child(3n) { animation-duration: 8s; animation-delay: -6s; }
  .lane:nth-child(2n) { animation-duration: 12s; animation-delay: -4s; }
}
@keyframes card-drift {
  0%, 100% { translate: 0 0; }
  33%      { translate: 0 -6px; }
  66%      { translate: 3px -2px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .band-media video, .porthole video, .bubble-fig video { display: none; }
  .band-media .motion-fallback, .porthole .motion-fallback, .bubble-fig .motion-fallback { display: block; }
}
