/* =========================================================
   Lavado Fácil · estilos
   Paleta OKLCH · azul profundo + aqua + blanco puro
   ========================================================= */

:root {
  /* color */
  --bg: oklch(1 0 0);
  --surface: oklch(0.985 0.006 240);
  --surface-2: oklch(0.965 0.009 235);
  --ink: oklch(0.23 0.03 250);
  --ink-soft: oklch(0.44 0.03 248);
  --brand: oklch(0.45 0.13 250);
  --brand-strong: oklch(0.38 0.13 252);
  --brand-deep: oklch(0.26 0.07 255);
  --brand-deeper: oklch(0.20 0.055 258);
  --aqua: oklch(0.84 0.11 200);
  --aqua-ink: oklch(0.55 0.11 210);
  --line: oklch(0.92 0.012 245);
  --line-strong: oklch(0.86 0.016 245);
  --wa: oklch(0.72 0.17 152);
  --wa-deep: oklch(0.60 0.15 152);
  --wa-deeper: oklch(0.53 0.14 152);

  /* type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* shape */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px oklch(0.23 0.03 250 / 0.06), 0 4px 14px oklch(0.23 0.03 250 / 0.05);
  --shadow-md: 0 8px 30px oklch(0.23 0.03 250 / 0.10);
  --shadow-wa: 0 10px 26px oklch(0.60 0.15 152 / 0.34);

  /* layout */
  --container: 1120px;
  --pad: clamp(1.15rem, 4vw, 2.5rem);

  /* z */
  --z-header: 100;
  --z-float: 200;
  --z-nav: 300;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

/* al saltar por el menú, dejar aire para el header fijo */
section[id], main[id] { scroll-margin-top: 80px; }

/* ---------- section scaffolding ---------- */
.section__title {
  font-size: clamp(1.85rem, 1.2rem + 2.8vw, 3.1rem);
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.section__lead {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 0.98rem + 0.4vw, 1.2rem);
  max-width: 56ch;
  text-wrap: pretty;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  --b-pad-y: 0.82rem;
  --b-pad-x: 1.35rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 600;
  font-size: 1rem; line-height: 1;
  padding: var(--b-pad-y) var(--b-pad-x);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background-color .2s, border-color .2s, color .2s;
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--lg { --b-pad-y: 1.05rem; --b-pad-x: 1.7rem; font-size: 1.06rem; min-height: 56px; }
.btn--sm { --b-pad-y: 0.6rem; --b-pad-x: 1rem; font-size: 0.94rem; min-height: 42px; }
.btn--block { width: 100%; }

.btn--wa { background: var(--wa-deep); color: #fff; box-shadow: var(--shadow-wa); }
.btn--wa:hover { background: var(--wa-deeper); transform: translateY(-2px); box-shadow: 0 14px 32px oklch(0.60 0.15 152 / 0.4); }

.btn--brand { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--brand:hover { background: var(--brand-strong); transform: translateY(-2px); }

.btn--ghost { background: oklch(1 0 0 / 0.06); color: #fff; border-color: oklch(1 0 0 / 0.28); backdrop-filter: blur(2px); }
.btn--ghost:hover { background: oklch(1 0 0 / 0.14); border-color: oklch(1 0 0 / 0.5); }

.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost-dark:hover { border-color: var(--ink); transform: translateY(-2px); }

.ico-wa { flex: none; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: oklch(1 0 0 / 0.78);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px oklch(0.23 0.03 250 / 0.05);
}
.header__inner { display: flex; align-items: center; gap: 1rem; min-height: 72px; transition: min-height .3s var(--ease-out); }
.site-header.is-scrolled .header__inner { min-height: 62px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em; color: var(--ink); }
.brand__mark { display: inline-flex; filter: drop-shadow(0 4px 12px oklch(0.45 0.13 250 / 0.3)); }
.brand__mark img { border-radius: 10px; }
.brand__name { white-space: nowrap; }

.nav { display: none; margin-inline-start: auto; gap: 1.6rem; }
.nav a { font-weight: 500; color: var(--ink-soft); position: relative; padding: 0.3rem 0; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--brand); border-radius: 2px; transition: width .3s var(--ease-out); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header__cta { display: none; }

.nav-toggle {
  margin-inline-start: auto;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
}
.nav-toggle span { height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: grid; gap: 0.35rem;
  padding: 0 var(--pad);
  max-height: 0; overflow: hidden;
  background: oklch(1 0 0 / 0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: max-height .4s var(--ease-out), padding .3s, border-color .3s;
}
.mobile-nav.is-open { max-height: 420px; padding: 0.5rem var(--pad) 1.2rem; border-bottom-color: var(--line); }
.mobile-nav a { padding: 0.85rem 0.4rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border: 0; }
.mobile-nav .btn--wa { margin-top: 0.7rem; color: #fff; }

@media (min-width: 860px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; isolation: isolate;
  color: #fff;
  background: linear-gradient(160deg, var(--brand-deep) 0%, var(--brand-deeper) 60%, oklch(0.16 0.045 260) 100%);
  padding: clamp(3.2rem, 8vh, 6rem) 0 clamp(3.5rem, 9vh, 6.5rem);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; z-index: -2; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
.hero__glow--1 { width: 46vw; height: 46vw; max-width: 560px; max-height: 560px; top: -12%; right: -8%; background: radial-gradient(circle, oklch(0.7 0.13 210 / 0.8), transparent 70%); }
.hero__glow--2 { width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; bottom: -18%; left: -10%; background: radial-gradient(circle, oklch(0.5 0.16 265 / 0.7), transparent 70%); }
.hero__shine {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 70% at 80% -10%, oklch(0.8 0.1 205 / 0.18), transparent 55%),
    linear-gradient(to bottom, transparent 60%, oklch(0.12 0.04 260 / 0.4) 100%);
}

.hero__inner { position: relative; max-width: 760px; }
.hero__kicker {
  display: inline-block;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  color: var(--aqua);
  background: oklch(0.84 0.11 200 / 0.12);
  border: 1px solid oklch(0.84 0.11 200 / 0.28);
  padding: 0.4rem 0.85rem; border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(2.5rem, 1.4rem + 5.2vw, 5rem);
  letter-spacing: -0.035em; text-wrap: balance;
  margin-bottom: 1.15rem;
}
.grad-line { color: var(--aqua); }
.hero__lead {
  font-size: clamp(1.05rem, 1rem + 0.55vw, 1.3rem);
  color: oklch(0.92 0.02 240);
  max-width: 56ch; text-wrap: pretty;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.6rem; }

.hero__trust {
  display: grid; gap: 1rem 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding-top: 1.8rem;
  border-top: 1px solid oklch(1 0 0 / 0.14);
}
.hero__trust li { display: flex; flex-direction: column; gap: 0.15rem; }
.hero__trust strong { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; }
.hero__trust span { color: oklch(0.86 0.02 230); font-size: 0.92rem; }

/* =========================================================
   BENEFITS
   ========================================================= */
.benefits { padding: clamp(3.5rem, 8vh, 6rem) 0; }
.benefits .section__title { margin-bottom: 2.2rem; max-width: 18ch; }
.benefits__grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.benefit {
  padding: 1.6rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.benefit__ico { display: inline-grid; place-items: center; width: 52px; height: 52px; font-size: 1.6rem; background: oklch(0.84 0.11 200 / 0.16); border-radius: 14px; margin-bottom: 1rem; }
.benefit h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.benefit p { color: var(--ink-soft); font-size: 0.98rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { padding: clamp(3.5rem, 8vh, 6rem) 0; background: linear-gradient(180deg, var(--bg), var(--surface)); }
.services__head { max-width: 56ch; margin-bottom: 2.4rem; }
.services__head .section__title { margin-bottom: 0.8rem; }
.services__layout { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: start; }

.services__list { display: grid; gap: 0.2rem; }
.services__list li {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 1rem 0.4rem; font-size: 1.06rem; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.services__list li:last-child { border-bottom: 0; }
.chk { flex: none; width: 26px; height: 26px; margin-top: 1px; border-radius: 50%; background: oklch(0.84 0.11 200 / 0.2); position: relative; }
.chk::after { content: ""; position: absolute; left: 8px; top: 5px; width: 6px; height: 11px; border: solid var(--aqua-ink); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }

.services__card {
  position: sticky; top: 90px;
  padding: 1.8rem 1.6rem;
  background: var(--brand-deep); color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden; isolation: isolate;
}
.services__card::before { content: ""; position: absolute; z-index: -1; width: 240px; height: 240px; border-radius: 50%; top: -90px; right: -70px; background: radial-gradient(circle, oklch(0.7 0.13 205 / 0.5), transparent 70%); filter: blur(20px); }
.services__price-label { color: var(--aqua); font-weight: 600; font-size: 0.9rem; }
.services__price { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; letter-spacing: -0.03em; margin: 0.1rem 0 0.7rem; }
.services__note { color: oklch(0.88 0.02 235); font-size: 0.96rem; margin-bottom: 1.5rem; }

@media (min-width: 820px) {
  .services__layout { grid-template-columns: 1.4fr 0.9fr; gap: 3rem; }
}

/* =========================================================
   STEPS
   ========================================================= */
.steps { padding: clamp(3.5rem, 8vh, 6rem) 0; }
.steps .section__title { margin-bottom: 2.4rem; }
.steps__list { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step { position: relative; padding: 1.7rem 1.4rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); transition: transform .3s var(--ease-out), border-color .3s; }
.step:hover { transform: translateY(-4px); border-color: var(--aqua); }
.step__num {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff;
  background: var(--brand); border-radius: 13px; margin-bottom: 1rem;
  box-shadow: 0 6px 16px oklch(0.45 0.13 250 / 0.3);
}
.step h3 { font-size: 1.16rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }

/* =========================================================
   WORK / ANTES Y DESPUÉS
   ========================================================= */
.work { padding: clamp(3.5rem, 8vh, 6rem) 0; background: var(--surface); }
.work__head { max-width: 56ch; margin-bottom: 2.4rem; }
.work__head .section__title { margin-bottom: 0.8rem; }

/* galería ilustrativa (fotos de banco con licencia libre) */
.gallery {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 148px;
  grid-auto-flow: dense;
}
.gallery figure {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  background: var(--surface-2);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 0.95rem 0.7rem; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.94rem; letter-spacing: -0.01em;
  background: linear-gradient(to top, oklch(0.15 0.04 260 / 0.88), transparent);
}
.gallery .g-feature { grid-column: span 2; grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }

@media (min-width: 680px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; }
}

.work__subtitle {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.65rem); letter-spacing: -0.02em;
  margin: 2.8rem 0 0.3rem;
}

/* embeds */
.embeds { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 1.4rem; }
.embed-slot {
  display: grid; place-content: center; justify-items: center; text-align: center; gap: 0.4rem;
  min-height: 260px; padding: 2rem 1.5rem;
  border: 2px dashed var(--line-strong); border-radius: var(--radius);
  background: oklch(1 0 0 / 0.5); color: var(--ink-soft);
}
.embed-slot__ico { font-size: 2rem; }
.embed-slot__title { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.1rem; }
.embed-slot__hint { font-size: 0.92rem; max-width: 32ch; }
/* cuando se pegan embeds reales, ocupan ancho completo y se ven bien */
.embeds .instagram-media, .embeds .tiktok-embed { margin: 0 auto !important; }

.work__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { padding: clamp(3.5rem, 8vh, 6rem) 0; }
.reviews .section__title { margin-bottom: 2.2rem; }
.reviews__grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.review { padding: 1.7rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); display: flex; flex-direction: column; gap: 0.7rem; }
.review__stars { color: oklch(0.78 0.15 80); letter-spacing: 0.1em; font-size: 1.05rem; }
.review blockquote { font-size: 1.08rem; line-height: 1.55; color: var(--ink); text-wrap: pretty; }
.review figcaption { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; margin-top: auto; }
.reviews__edit-note { margin-top: 1.2rem; font-size: 0.86rem; color: var(--ink-soft); opacity: 0.7; }

/* =========================================================
   ZONES
   ========================================================= */
.zones { padding: clamp(3.5rem, 8vh, 6rem) 0; background: var(--surface); }
.zones__head { max-width: 56ch; margin-bottom: 2rem; }
.zones__head .section__title { margin-bottom: 0.8rem; }
.zones__list { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.zones__list li {
  font-weight: 600; font-size: 1rem;
  padding: 0.7rem 1.2rem;
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 999px;
  transition: transform .25s var(--ease-out), border-color .25s, color .25s, background-color .25s;
}
.zones__list li::before { content: "📍 "; }
.zones__list li:hover { transform: translateY(-3px); border-color: var(--brand); color: var(--brand); }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final {
  position: relative; isolation: isolate; overflow: hidden;
  color: #fff; text-align: center;
  background: linear-gradient(160deg, var(--brand-deep), oklch(0.17 0.05 260));
  padding: clamp(3.5rem, 9vh, 6.5rem) 0;
}
.cta-final__bg { position: absolute; inset: 0; z-index: -1; opacity: 0.8; }
.cta-final__inner { max-width: 620px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.cta-final h2 { font-size: clamp(1.9rem, 1.3rem + 3vw, 3rem); letter-spacing: -0.03em; text-wrap: balance; }
.cta-final p { color: oklch(0.9 0.02 235); font-size: 1.1rem; max-width: 44ch; text-wrap: pretty; }
.cta-final .btn { margin-top: 0.5rem; }
.cta-final__phone { font-size: 0.98rem; color: oklch(0.86 0.02 230); }
.cta-final__phone a { color: var(--aqua); font-weight: 600; border-bottom: 1px solid oklch(0.84 0.11 200 / 0.4); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--brand-deeper); color: oklch(0.85 0.02 235); padding-top: clamp(2.6rem, 6vh, 4rem); }
.footer__inner { display: grid; gap: 2.2rem; grid-template-columns: 1fr; padding-bottom: 2.4rem; }
.footer__brand .brand { color: #fff; margin-bottom: 0.9rem; }
.footer__brand p { max-width: 38ch; font-size: 0.96rem; color: oklch(0.78 0.02 235); }
.site-footer h3 { font-family: var(--font-display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--aqua); margin-bottom: 1rem; }
.footer__links, .footer__contact { display: grid; gap: 0.6rem; align-content: start; }
.footer__links a, .footer__contact a { color: oklch(0.85 0.02 235); font-size: 0.97rem; width: fit-content; transition: color .2s; }
.footer__links a:hover, .footer__contact a:hover { color: #fff; }
.footer__wa { font-weight: 600; }
.footer__bottom { border-top: 1px solid oklch(1 0 0 / 0.1); padding: 1.3rem 0; }
.footer__bottom p { font-size: 0.86rem; color: oklch(0.7 0.02 235); }

@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1.3fr; gap: 2.5rem; }
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem); z-index: var(--z-float);
  width: 60px; height: 60px;
  display: grid; place-items: center;
  color: #fff; background: var(--wa-deep);
  border-radius: 50%; box-shadow: var(--shadow-wa);
  transition: transform .3s var(--ease-out), background-color .2s;
}
.wa-float:hover { transform: scale(1.08); background: var(--wa-deeper); }
.wa-float svg { position: relative; z-index: 1; }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--wa); z-index: 0; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.55; } 70%, 100% { transform: scale(1.7); opacity: 0; } }

/* =========================================================
   REVEAL (motion) — contenido VISIBLE por defecto.
   El ocultamiento solo se aplica cuando el JS activa .reveal-ready,
   así que sin JS (o si algo falla) todo se ve igual.
   ========================================================= */
html.reveal-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); will-change: opacity, transform; }
html.reveal-ready .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float__pulse { animation: none; }
  .btn:hover, .benefit:hover, .step:hover, .zones__list li:hover, .wa-float:hover { transform: none; }
}

/* focus visible accesible */
:where(a, button, [tabindex]):focus-visible { outline: 3px solid var(--aqua-ink); outline-offset: 3px; border-radius: 6px; }
