/* ============================================================
   AQUA GLAZE · Telford, Crystal Clear
   Deep-water world · ice light · foam interactions
   Type: Bricolage Grotesque (single family, hard weight contrast)
   ============================================================ */

:root {
  /* Deep water ramp */
  --abyss:  oklch(0.16 0.035 242);   /* body */
  --depth:  oklch(0.20 0.042 238);   /* section alt */
  --glass:  oklch(0.25 0.048 234);   /* raised pane */
  --edge:   oklch(0.34 0.05 228);    /* pane borders */
  /* Light */
  --foam:   oklch(0.975 0.008 210);  /* primary text */
  --mist:   oklch(0.82 0.028 220);   /* secondary text ≥7:1 on abyss */
  --ice:    oklch(0.83 0.115 205);   /* brand aqua (logo) */
  --ice-deep: oklch(0.66 0.12 220);  /* aqua for larger fills */
  /* 80°C accent, CTAs only */
  --hot:    oklch(0.79 0.145 65);
  --hot-hi: oklch(0.86 0.13 75);
  /* Semantic z-scale */
  --z-bubbles: 1; --z-content: 2; --z-nav: 50; --z-drawer: 60; --z-toast: 70;

  --font: "Bricolage Grotesque", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--abyss);
  color: var(--foam);
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video, canvas { max-width: 100%; display: block; }

/* ---------- Type scale (1.333 ratio, fluid) ---------- */
h1, h2, h3, h4 { line-height: 1.06; text-wrap: balance; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.02em; }
.display  { font-size: clamp(2.6rem, 1.2rem + 6vw, 5.4rem); font-stretch: 92%; }
h1        { font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4.4rem); }
h2        { font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3.1rem); }
h3        { font-size: clamp(1.3rem, 1.05rem + 1.1vw, 1.8rem); }
h4        { font-size: 1.2rem; }
p  { max-width: 68ch; text-wrap: pretty; }
.lede { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.4rem); line-height: 1.55; color: var(--mist); font-weight: 350; }
.sub  { color: var(--mist); }
a { color: var(--ice); text-underline-offset: 3px; }
a:hover { color: var(--foam); }
strong { font-weight: 700; }
.num { font-variant-numeric: tabular-nums; }

::selection { background: var(--ice); color: var(--abyss); }

/* ---------- Layout ---------- */
.wrap   { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }
section { position: relative; }
.pad    { padding-block: clamp(64px, 10vw, 130px); }
.pad-t  { padding-top: clamp(64px, 10vw, 130px); }
.pad-b  { padding-bottom: clamp(64px, 10vw, 130px); }

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

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ice);
  --btn-ink: var(--abyss);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  background: var(--btn-bg); color: var(--btn-ink);
  font: 700 1.05rem/1 var(--font);
  padding: 1.05em 1.9em; border: 0; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.25s;
  isolation: isolate;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 14px 38px -12px color-mix(in oklch, var(--btn-bg) 55%, transparent); color: var(--btn-ink); }
.btn:active { transform: translateY(0) scale(0.985); }
.btn-hot    { --btn-bg: var(--hot); }
.btn-hot:hover { background: var(--hot-hi); }
.btn-ghost  { --btn-bg: transparent; --btn-ink: var(--foam); box-shadow: inset 0 0 0 2px var(--edge); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--ice); color: var(--ice); }
.btn-lg { font-size: 1.18rem; padding: 1.15em 2.2em; }
.btn .ico { width: 1.2em; height: 1.2em; flex: none; }

/* Foam burst particles (spawned by JS on .btn press) */
.foam-p {
  position: fixed; left: 0; top: 0; width: var(--s); height: var(--s);
  border-radius: 50%; pointer-events: none; z-index: var(--z-toast);
  background: radial-gradient(circle at 32% 30%, #fff 0 18%, oklch(0.93 0.03 205 / 0.9) 45%, oklch(0.85 0.08 205 / 0.45) 100%);
  box-shadow: inset -2px -3px 6px oklch(0.7 0.1 220 / 0.5), 0 0 6px oklch(0.95 0.02 205 / 0.55);
  animation: foamPop var(--d) var(--ease-out) forwards;
}
@keyframes foamPop {
  0%   { transform: translate(var(--x0), var(--y0)) scale(0.2); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: translate(var(--x1), var(--y1)) scale(1); opacity: 0; }
}

/* ---------- Glass pane ---------- */
.pane {
  background: linear-gradient(160deg, color-mix(in oklch, var(--glass) 88%, var(--ice) 12%) 0%, var(--glass) 34%, var(--depth) 100%);
  border: 1px solid var(--edge);
  border-radius: 22px;
  position: relative;
  overflow: clip;
}
.pane::before { /* glass glare */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, oklch(0.99 0.005 210 / 0.05) 45%, oklch(0.99 0.005 210 / 0.11) 50%, transparent 56%);
}

/* ---------- Squeegee wipe reveal ---------- */
.wipe { position: relative; overflow: clip; }
.wipe > .wipe-media { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s var(--ease-out); will-change: clip-path; }
.wipe.in > .wipe-media { clip-path: inset(0 0 0 0); }
.wipe > .wipe-blade {
  position: absolute; inset-block: -2%; left: 0; width: 3px; border-radius: 3px;
  background: linear-gradient(var(--ice), var(--foam), var(--ice));
  box-shadow: 0 0 18px 2px oklch(0.83 0.115 205 / 0.65);
  opacity: 0; transform: translateX(0);
}
.wipe.in > .wipe-blade { animation: bladeSweep 1.1s var(--ease-out) forwards; }
@keyframes bladeSweep {
  0%   { opacity: 0; transform: translateX(0); }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(min(100cqw, 100vw)); }
}
.wipe { container-type: inline-size; }

/* Wipe wrappers must fill fixed-aspect containers */
.wipe > .wipe-media { height: 100%; }
.wipe > .wipe-media > img { width: 100%; height: 100%; object-fit: cover; }

/* Rise-in for text blocks: desktop-only choreography.
   On mobile content is visible instantly: faster, and never gambles on an observer. */
.rise { }
@media (min-width: 761px) {
  .js .rise { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
  .js .rise.in { opacity: 1; transform: none; }
}

/* ---------- Ambient bubbles ---------- */
.bubbles { position: absolute; inset: 0; overflow: clip; pointer-events: none; z-index: var(--z-bubbles); }
.bubbles i {
  position: absolute; bottom: -60px; border-radius: 50%;
  width: var(--s); height: var(--s); left: var(--x);
  background: radial-gradient(circle at 32% 30%, oklch(0.95 0.02 205 / 0.16), oklch(0.85 0.08 210 / 0.05) 60%, transparent 75%);
  box-shadow: inset -2px -3px 8px oklch(0.8 0.1 215 / 0.14);
  animation: bubbleRise var(--t) linear infinite; animation-delay: var(--dl);
  filter: blur(0.4px);
}
@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  96%  { opacity: 0.9; }
  100% { transform: translateY(calc(-100vh - 120px)) translateX(var(--sway)); opacity: 0; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: color-mix(in oklch, var(--abyss) 82%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in oklch, var(--edge) 55%, transparent);
  transition: transform 0.45s var(--ease-out);
}
.nav.hide { transform: translateY(-100%); }
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 10px; }
.nav-logo img { height: 62px; width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--foam); text-decoration: none; font-weight: 600; font-size: 0.98rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ice); }
.nav-cta { white-space: nowrap; }
.nav-burger { display: none; background: none; border: 0; color: var(--foam); padding: 10px; cursor: pointer; }
.nav-burger svg { width: 30px; height: 30px; }

/* Services dropdown (desktop) */
.nav-drop { position: relative; }
.nav-drop > button {
  background: none; border: 0; color: var(--foam); font: 600 0.98rem var(--font);
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px; padding: 6px 0;
}
.nav-drop > button:hover { color: var(--ice); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 280px; padding: 10px; margin: 0; list-style: none;
  background: var(--glass); border: 1px solid var(--edge); border-radius: 16px;
  box-shadow: 0 30px 60px -20px oklch(0.05 0.02 240 / 0.8);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  z-index: var(--z-drawer);
}
.nav-drop.open .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a { display: block; padding: 9px 14px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; text-decoration: none; color: var(--foam); }
.nav-drop-menu a:hover { background: color-mix(in oklch, var(--ice) 16%, transparent); color: var(--ice); }

/* Mobile drawer */
@media (max-width: 920px) {
  .nav-links, .nav .nav-cta { display: none; }
  .nav-burger { display: block; }
  .drawer {
    position: fixed; inset: 0; z-index: var(--z-drawer);
    background: color-mix(in oklch, var(--abyss) 94%, transparent);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    padding: 90px 28px 40px; overflow-y: auto;
    opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  }
  .drawer.open { opacity: 1; visibility: visible; }
  .drawer a { display: block; font-size: 1.35rem; font-weight: 700; color: var(--foam); text-decoration: none; padding: 12px 0; border-bottom: 1px solid color-mix(in oklch, var(--edge) 45%, transparent); }
  .drawer a:hover { color: var(--ice); }
  .drawer .drawer-sub a { font-size: 1.02rem; font-weight: 500; padding: 9px 0 9px 16px; color: var(--mist); border-bottom: 0; }
  .drawer-close { position: absolute; top: 22px; right: 22px; background: none; border: 0; color: var(--foam); cursor: pointer; padding: 8px; }
  .drawer-close svg { width: 30px; height: 30px; }
}
@media (min-width: 921px) { .drawer, .drawer-close { display: none; } }

/* ---------- Top strip ---------- */
.strip {
  background: linear-gradient(90deg, var(--ice-deep), var(--ice));
  color: var(--abyss); text-align: center; font-weight: 700; font-size: 0.92rem;
  padding: 7px 14px;
}
.strip a { color: inherit; text-decoration: none; }
.strip a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .strip { font-size: 0.82rem; padding: 6px 12px; }
  .strip-tail { display: none; } /* keep the strip to one crisp line on phones */
}
@media (max-width: 560px) {
  .nav-logo img { height: 52px; }
}

/* ---------- Squeegee underline: the blade REMOVES the wet film, leaving bare glass ----------
   Timeline (7s): wet film at rest → blade pulls across, water trails off behind it,
   nothing left behind → water keeps dripping at the far right until the film mists back → loop. */
.sqline { width: 150px; height: 40px; margin: 8px 0 12px; overflow: visible; display: block; }
.sqline .sq-wet   { opacity: 1; } /* base/reduced-motion state = the wet band as a static underline */
.sqline .sq-drop  { fill: var(--ice); opacity: 0; }
.sqline .sq-tool  { opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
  .sqline .sq-wet   { animation: sqWet 7s infinite; }
  .sqline .sq-tool  { animation: sqToolA 7s infinite; }
  .sqline .sq-d1    { animation: sqDropA 7s infinite; }
  .sqline .sq-d2    { animation: sqDropB 7s infinite; }
  .sqline .sq-d3    { animation: sqDropC 7s infinite; }
  .sqline .sq-de    { animation: sqDropEnd 7s infinite; }
}
/* the wet film: visible at rest, erased left-to-right in step with the blade, nothing behind */
@keyframes sqWet {
  0%     { clip-path: inset(-8px 0 -8px 0); opacity: 1; animation-timing-function: linear; }
  6%     { clip-path: inset(-8px 0 -8px 0); opacity: 1; animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1); }
  40%    { clip-path: inset(-8px 0 -8px 100%); opacity: 1; animation-timing-function: linear; }
  80%    { clip-path: inset(-8px 0 -8px 100%); opacity: 0; }
  80.01% { clip-path: inset(-8px 0 -8px 0); opacity: 0; }
  96%    { clip-path: inset(-8px 0 -8px 0); opacity: 1; }
  100%   { clip-path: inset(-8px 0 -8px 0); opacity: 1; }
}
@keyframes sqToolA {
  0%     { transform: translateX(0); opacity: 0; animation-timing-function: linear; }
  6%     { transform: translateX(0); opacity: 1; animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1); }
  40%    { transform: translateX(161px); opacity: 1; animation-timing-function: linear; }
  45%    { transform: translateX(161px); opacity: 0; }
  100%   { transform: translateX(161px); opacity: 0; }
}
/* water trailing off the blade as it passes each point along the pull */
@keyframes sqDropA {
  0%, 13% { transform: translateY(0); opacity: 0; }
  16%     { opacity: 0.85; }
  42%     { transform: translateY(11px); opacity: 0.5; }
  52%     { transform: translateY(16px); opacity: 0; }
  100%    { transform: translateY(16px); opacity: 0; }
}
@keyframes sqDropB {
  0%, 23% { transform: translateY(0); opacity: 0; }
  26%     { opacity: 0.85; }
  52%     { transform: translateY(11px); opacity: 0.5; }
  62%     { transform: translateY(16px); opacity: 0; }
  100%    { transform: translateY(16px); opacity: 0; }
}
@keyframes sqDropC {
  0%, 32% { transform: translateY(0); opacity: 0; }
  35%     { opacity: 0.85; }
  60%     { transform: translateY(11px); opacity: 0.5; }
  70%     { transform: translateY(16px); opacity: 0; }
  100%    { transform: translateY(16px); opacity: 0; }
}
/* the water gathered at the end of the pull: keeps dripping until the film returns */
@keyframes sqDropEnd {
  0%, 39%  { transform: translateY(0); opacity: 0; }
  42%      { transform: translateY(0); opacity: 0.85; }
  55%      { transform: translateY(14px); opacity: 0; }
  56%      { transform: translateY(0); opacity: 0; }
  60%      { transform: translateY(0); opacity: 0.85; }
  73%      { transform: translateY(14px); opacity: 0; }
  74%      { transform: translateY(0); opacity: 0; }
  78%      { transform: translateY(0); opacity: 0.85; }
  92%      { transform: translateY(14px); opacity: 0; }
  100%     { transform: translateY(14px); opacity: 0; }
}

/* ---------- Map action buttons ---------- */
.map-acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.map-acts .btn { white-space: nowrap; }        /* keep "Get directions & travel time" on one line */
.map-acts .btn-hot { flex: 1 1 auto; }          /* grows to fill the row on desktop */
@media (max-width: 560px) {
  .map-acts { flex-direction: column; align-items: stretch; }
  .map-acts .btn { width: 100%; flex: none; }   /* full-width, centred content on mobile */
}

/* ---------- Wave divider ---------- */
.wave { display: block; width: 100%; height: clamp(46px, 8vw, 110px); }

/* ---------- Footer ---------- */
.footer { background: oklch(0.13 0.03 244); border-top: 1px solid var(--edge); }
.footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 36px; }
.footer h4 { color: var(--ice); font-size: 1.02rem; margin-bottom: 0.8em; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { color: var(--mist); text-decoration: none; font-size: 0.97rem; }
.footer a:hover { color: var(--ice); }
.footer .legal { border-top: 1px solid color-mix(in oklch, var(--edge) 50%, transparent); margin-top: 44px; padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 0.88rem; color: var(--mist); }

/* ---------- AGC club band: drenched ice over real foam ---------- */
.club {
  background:
    linear-gradient(135deg, oklch(0.62 0.12 225 / 0.82) 0%, oklch(0.78 0.12 205 / 0.78) 100%),
    url("../img/foam-band.jpg") center / cover no-repeat,
    linear-gradient(135deg, oklch(0.62 0.12 225), oklch(0.78 0.12 205));
  color: oklch(0.16 0.04 240);
}
.club h1, .club h2, .club h3 { color: oklch(0.14 0.04 240); }
.club .lede { color: oklch(0.24 0.05 235); }
.club-deals { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); gap: 16px; margin: 40px 0; }
.club-deal { background: oklch(0.99 0.005 210 / 0.55); border: 1px solid oklch(0.99 0.005 210 / 0.65); border-radius: 18px; padding: 22px 20px; backdrop-filter: blur(4px); }
.club-deal .pc { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.club-deal .on { font-weight: 700; margin-top: 6px; }
.club .btn { --btn-bg: oklch(0.16 0.04 240); --btn-ink: var(--foam); }
.club .btn:hover { background: oklch(0.22 0.05 235); }

/* ---------- Chips / ratings ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.chips li {
  display: inline-flex; align-items: center; gap: 8px;
  background: color-mix(in oklch, var(--glass) 75%, transparent);
  border: 1px solid var(--edge); border-radius: 999px;
  padding: 8px 16px; font-weight: 600; font-size: 0.92rem; color: var(--foam);
}
.chips .ico { width: 1.05em; height: 1.05em; color: var(--ice); flex: none; }
@media (max-width: 560px) {
  /* tidy 2-up grid instead of ragged pill wrapping */
  .chips { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .chips li { border-radius: 14px; padding: 10px 12px; font-size: 0.85rem; align-items: flex-start; line-height: 1.35; }
  .chips .ico { margin-top: 2px; }
}
.stars { color: var(--hot-hi); letter-spacing: 2px; }

/* ---------- Service identity banner ----------
   Every service page opens with its own photo, big title on the image,
   and a service-coloured bar (--svc) so you always know where you are. */
.sbanner { position: relative; overflow: clip; }
.sbanner .bg { width: 100%; height: clamp(250px, 34vw, 430px); object-fit: cover; display: block; }
.sbanner .scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, oklch(0.16 0.035 242 / 0.3) 0%, oklch(0.16 0.035 242 / 0.5) 50%, oklch(0.16 0.035 242 / 0.94) 100%);
}
.sbanner .sb-in { position: absolute; inset-inline: 0; bottom: 0; padding-bottom: clamp(18px, 3vw, 30px); }
.sbanner h1 {
  margin: 0; font-size: clamp(2.3rem, 1.4rem + 4.2vw, 4rem); line-height: 1.02;
  text-shadow: 0 2px 26px oklch(0.1 0.03 240 / 0.75);
}
.sbanner .sbar {
  display: block; width: 96px; height: 6px; border-radius: 3px; margin-top: 13px;
  background: var(--svc, var(--ice));
  box-shadow: 0 0 20px color-mix(in oklch, var(--svc, var(--ice)) 65%, transparent);
}
.sbanner .sb-loc { display: inline-block; margin-top: 11px; color: var(--foam); font-weight: 600; font-size: 0.95rem; text-shadow: 0 1px 12px oklch(0.1 0.03 240 / 0.8); }

/* Risk assessment note on service pages */
.risk-note { display: flex; gap: 9px; align-items: flex-start; color: var(--mist); font-size: 0.92rem; margin: 18px 0 0; max-width: 60ch; }
.risk-note svg { flex: none; margin-top: 2px; color: var(--ice); }
.risk-note a { color: var(--ice); font-weight: 600; }

/* PDF download cards (Health & Safety) */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 14px; }
.doc-grid a {
  display: flex; gap: 14px; align-items: center; padding: 18px 20px;
  border: 1px solid var(--edge); border-radius: 16px; text-decoration: none; color: var(--foam); font-weight: 700;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.doc-grid a:hover { border-color: var(--ice); transform: translateY(-3px); }
.doc-grid a small { display: block; color: var(--mist); font-weight: 500; margin-top: 3px; }
.doc-grid .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in oklch, var(--ice) 16%, transparent); color: var(--ice); }

/* ---------- Before / after slider ----------
   Native range input drives --pos: buttery, keyboard-accessible, zero dependencies.
   Left of the handle = the state we found it in. Right = the Aqua Glaze finish. */
.basl {
  position: relative; overflow: clip; border-radius: 20px; border: 1px solid var(--edge);
  aspect-ratio: 4 / 3; touch-action: pan-y; --pos: 50%;
}
.basl img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.basl img.after { clip-path: inset(0 0 0 var(--pos)); }
.basl .divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; transform: translateX(-50%);
  background: var(--foam); box-shadow: 0 0 16px oklch(0.83 0.115 205 / 0.8); pointer-events: none;
}
.basl .knob {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--ice); color: var(--abyss);
  display: grid; place-items: center; pointer-events: none;
  box-shadow: 0 8px 24px oklch(0.08 0.02 240 / 0.65);
}
.basl input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; margin: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none;
}
.basl input[type="range"]:focus-visible ~ .knob { outline: 3px solid var(--foam); outline-offset: 3px; }
.basl .tag {
  position: absolute; left: 14px; bottom: 12px; z-index: 3; pointer-events: none;
  background: oklch(0.14 0.03 242 / 0.75); backdrop-filter: blur(6px);
  color: var(--foam); font-weight: 700; font-size: 0.85rem; padding: 6px 13px; border-radius: 999px;
}

/* ---------- WhatsApp review bubbles ---------- */
.wa-bubble {
  position: relative;
  background: linear-gradient(150deg, color-mix(in oklch, var(--glass) 80%, var(--ice) 20%), var(--glass) 60%);
  border: 1px solid var(--edge);
  border-radius: 20px 20px 20px 6px;
  padding: 22px 24px;
}
.wa-bubble .who { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; font-size: 0.92rem; color: var(--mist); }
.wa-bubble .who b { color: var(--foam); font-weight: 700; }
.wa-bubble p { margin: 0; font-size: 1.02rem; }

/* ---------- Price table ---------- */
.ptable { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.ptable th, .ptable td { text-align: left; padding: 13px 16px; border-bottom: 1px solid color-mix(in oklch, var(--edge) 55%, transparent); }
.ptable th { color: var(--ice); font-size: 0.9rem; font-weight: 700; }
.ptable td { color: var(--foam); }
.ptable td.price { font-weight: 800; color: var(--foam); white-space: nowrap; }
.ptable tr:last-child td { border-bottom: 0; }
.ptable .save { color: var(--ice); font-weight: 700; }

/* ---------- Utility ---------- */
.grid { display: grid; gap: clamp(18px, 3vw, 32px); }
.g2 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.center { text-align: center; }
.center p { margin-inline: auto; }
.ice { color: var(--ice); }
.hot-txt { color: var(--hot-hi); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* Skip link */
.skip { position: absolute; left: -9999px; top: 0; z-index: var(--z-toast); background: var(--ice); color: var(--abyss); padding: 12px 20px; border-radius: 0 0 12px 0; font-weight: 700; }
.skip:focus { left: 0; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .rise { opacity: 1; transform: none; }
  .wipe > .wipe-media { clip-path: none; }
  .bubbles { display: none; }
  .hero-video { display: none; }
}
