/* ==========================================================================
   It Happens Professional Lice Services — "The Calm After the Itch"
   Vanilla CSS · mobile-first
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --tangerine: #FF914D;
  --tangerine-deep: #C2531A;
  --peach: #FDD9C2;
  --lagoon: #00C2CB;
  --aqua-glow: #00EEE2;
  --aqua-mist: #C3FFFD;
  --lagoon-deep: #0B5F66;
  --midnight: #0A2A30;
  --midnight-2: #0E3940;
  --ink: #12303A;
  --body: #3D4B4F;
  --muted: #5E6B6E;
  --porcelain: #FBFAF7;
  --white: #FFFFFF;
  --lens: #FFD84D;
  --whatsapp: #25D366;
  --line: rgb(18 48 58 / .1);

  --grad-hero: linear-gradient(135deg, #C3FFFD 0%, #FBFAF7 45%, #FDD9C2 100%);
  --grad-brand: linear-gradient(120deg, var(--tangerine), var(--aqua-glow));

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow-sm: 0 1px 2px rgb(10 42 48/.06), 0 2px 6px rgb(10 42 48/.06);
  --shadow-md: 0 2px 4px rgb(10 42 48/.05), 0 8px 16px rgb(10 42 48/.08), 0 16px 32px rgb(10 42 48/.06);
  --shadow-lg: 0 4px 8px rgb(10 42 48/.05), 0 16px 32px rgb(10 42 48/.08), 0 40px 80px rgb(10 42 48/.12);
  --glow-cta: 0 10px 30px rgb(255 145 77/.35);

  --glass: rgb(255 255 255/.62);
  --glass-strong: rgb(255 255 255/.86);
  --glass-border: rgb(255 255 255/.7);
  --glass-hi: inset 0 1px 0 rgb(255 255 255/.75);

  --r-card: 28px;
  --r-input: 14px;
  --r-arch: 999px 999px 32px 32px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  --z-sticky: 10;
  --z-header: 100;
  --z-dropdown: 300;
  --z-mobilebar: 400;
  --z-drawer: 900;
  --z-modal: 999;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(72px, 10vw, 128px);
  --header-h: 116px;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 110px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--porcelain);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--lagoon-deep); text-underline-offset: 3px; }
a:hover { color: var(--tangerine-deep); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 60;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 4.2vw + 1rem, 5rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 2.4vw + 1rem, 3.25rem); }
h3 { font-size: clamp(1.25rem, .6vw + 1rem, 1.6rem); letter-spacing: -.01em; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--tangerine-deep); font-weight: 500; }
p { margin: 0 0 1.1em; }
strong { color: var(--ink); }
:focus-visible { outline: 3px solid var(--lagoon); outline-offset: 3px; border-radius: 6px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: calc(var(--z-modal) + 1);
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; font-weight: 700;
}
.skip-link:focus { top: 12px; color: #fff; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; overflow-x: clip; }
.section--mist { background: linear-gradient(180deg, rgb(195 255 253/.45), rgb(195 255 253/.15)); }
.section--peach { background: linear-gradient(180deg, rgb(253 217 194/.45), rgb(253 217 194/.12)); }
.section--dark { background: var(--midnight); color: rgb(255 255 255/.82); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark h2 em { color: var(--tangerine); }
.lead { font-size: clamp(1.1rem, .4vw + 1rem, 1.25rem); color: var(--body); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.4em; font-size: clamp(1.7rem, 1.6vw + 1rem, 2.4rem); }
.prose h3 { margin-top: 1.3em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--tangerine); }

/* Eyebrow with comb glyph */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lagoon-deep); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 12px; flex: none;
  background: repeating-linear-gradient(90deg, currentColor 0 2px, transparent 2px 5px);
  border-top: 3px solid currentColor; border-radius: 2px;
}
.section--dark .eyebrow { color: var(--aqua-glow); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; }

/* ---------- 3. Buttons ---------- */
.btn {
  --bx: 0px; --by: 0px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; line-height: 1.1; text-decoration: none; white-space: nowrap;
  border: 1.5px solid transparent; cursor: pointer;
  transform: translate(var(--bx), var(--by));
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s, color .2s, border-color .2s;
}
.btn svg { width: 20px; height: 20px; flex: none; transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary { background: var(--tangerine); color: var(--ink); box-shadow: var(--glow-cta), inset 0 1px 0 rgb(255 255 255/.4); }
.btn--primary:hover { color: var(--ink); background: #ff9f63; box-shadow: 0 14px 38px rgb(255 145 77/.45), inset 0 1px 0 rgb(255 255 255/.4); }
.btn--glass { background: var(--glass-strong); color: var(--lagoon-deep); border-color: rgb(11 95 102/.35); box-shadow: var(--shadow-sm), var(--glass-hi); backdrop-filter: blur(12px); }
.btn--glass:hover { color: var(--lagoon-deep); border-color: var(--lagoon-deep); box-shadow: var(--shadow-md); }
.btn--ghost-light { color: #fff; border-color: rgb(255 255 255/.4); background: rgb(255 255 255/.06); }
.btn--ghost-light:hover { color: #fff; border-color: #fff; background: rgb(255 255 255/.12); }
.btn--sm { min-height: 44px; padding: 10px 20px; font-size: .95rem; }
.btn--block { width: 100%; }
.btn:hover .ico-phone { animation: wiggle .5s var(--ease-soft); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; color: var(--lagoon-deep); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
@keyframes wiggle { 0%,100% { transform: rotate(0) } 25% { transform: rotate(-14deg) } 50% { transform: rotate(10deg) } 75% { transform: rotate(-6deg) } }

/* ---------- 4. Header system ---------- */
.site-header { position: sticky; top: 0; z-index: var(--z-header); }
.topbar {
  background: var(--midnight); color: rgb(255 255 255/.85); font-size: .85rem;
  display: grid; grid-template-rows: 1fr; transition: grid-template-rows .35s var(--ease), opacity .3s;
}
.topbar > .container { overflow: hidden; min-height: 0; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--tangerine); }
.topbar svg { width: 15px; height: 15px; flex: none; }
.topbar__info { display: flex; gap: 22px; align-items: center; }
.topbar__right { display: flex; align-items: center; gap: 16px; }
.topbar__open { display: inline-flex; align-items: center; gap: 7px; }
.topbar__open::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--aqua-glow); box-shadow: 0 0 0 3px rgb(0 238 226/.2); }
.social { display: flex; gap: 6px; }
.social a { width: 30px; height: 30px; justify-content: center; border-radius: 50%; transition: background-color .2s, color .2s, transform .25s var(--ease); }
.social a:hover { background: rgb(255 255 255/.1); transform: translateY(-2px); }
.hide-sm { display: none !important; }
@media (min-width: 900px) { .hide-sm { display: inline-flex !important; } }

.header {
  background: rgb(251 250 247/.74);
  backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgb(255 255 255/.6);
  transition: background-color .3s, box-shadow .3s;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; transition: padding .35s var(--ease); }
.logo { display: block; flex: none; line-height: 0; }
.logo img { height: 72px; width: auto; transition: height .35s var(--ease); }
.is-scrolled .topbar { grid-template-rows: 0fr; opacity: 0; }
.is-scrolled .header { background: rgb(255 255 255/.9); box-shadow: var(--shadow-md); }
.is-scrolled .header__inner { padding-block: 8px; }
.is-scrolled .logo img { height: 50px; }
.progress { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; transform-origin: 0 50%; transform: scaleX(var(--p, 0)); background: var(--grad-brand); }

.nav { display: none; }
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .98rem;
  background: none; border: 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 6px;
  background: repeating-linear-gradient(90deg, var(--tangerine) 0 2px, transparent 2px 5px);
  border-top: 2px solid var(--tangerine);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after, .nav__item--open > .nav__link::after { transform: scaleX(1); }
.nav__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.nav__item { position: relative; }
.nav__item--open > .nav__link svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; width: 380px; padding: 10px;
  transform: translate(-50%, 8px); opacity: 0; visibility: hidden;
  background: rgb(255 255 255/.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: 22px; box-shadow: var(--shadow-lg), var(--glass-hi);
  transition: opacity .25s var(--ease), transform .3s var(--ease), visibility .25s; z-index: var(--z-dropdown);
}
.dropdown::before { content: ""; position: absolute; inset: -12px 0 auto; height: 12px; }
.nav__item--open .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a { display: flex; gap: 14px; align-items: flex-start; padding: 12px; border-radius: 14px; text-decoration: none; color: var(--body); transition: background-color .2s; }
.dropdown a:hover, .dropdown a:focus-visible { background: rgb(195 255 253/.55); color: var(--body); }
.dropdown__ico { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--aqua-mist); color: var(--lagoon-deep); }
.dropdown__ico svg { width: 20px; height: 20px; }
.dropdown strong { display: block; font-size: .96rem; line-height: 1.3; }
.dropdown span { font-size: .85rem; line-height: 1.4; color: var(--muted); }
.header__cta { display: none; }
.burger {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--white);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.burger span, .burger span::before, .burger span::after { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .3s var(--ease), background-color .2s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
@media (min-width: 1100px) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .burger { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: var(--z-drawer);
  background: rgb(10 42 48/.35); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__panel {
  position: absolute; inset: 10px; overflow-y: auto; padding: 22px 22px 32px;
  background: rgb(251 250 247/.94); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-radius: 28px; box-shadow: var(--shadow-lg);
  transform: translateY(-16px) scale(.98); transition: transform .45s var(--ease);
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.drawer__top img { height: 46px; width: auto; }
.drawer__close { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; }
.drawer__close svg { width: 22px; height: 22px; }
.drawer__list { list-style: none; padding: 0; margin: 0 0 24px; }
.drawer__list li { opacity: 0; transform: translateY(12px); transition: opacity .4s var(--ease), transform .45s var(--ease); transition-delay: calc(var(--i, 0) * 50ms + 80ms); }
.drawer.is-open .drawer__list li { opacity: 1; transform: none; }
.drawer__list a { display: flex; justify-content: space-between; align-items: center; padding: 14px 4px; font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.drawer__list a[aria-current="page"] { color: var(--tangerine-deep); }
.drawer__list .sub a { font-family: var(--font-body); font-size: 1rem; font-weight: 600; padding: 10px 4px 10px 18px; color: var(--body); }
.drawer__actions { display: grid; gap: 12px; margin-bottom: 20px; }
.drawer .social a { color: var(--lagoon-deep); background: var(--aqua-mist); width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; }
.drawer .social svg { width: 18px; height: 18px; }

/* ---------- 5. Hero (home) ---------- */
.hero { position: relative; background: var(--grad-hero); overflow: hidden; padding-block: clamp(48px, 7vw, 96px) clamp(72px, 9vw, 120px); isolation: isolate; }
.hero__grid { display: grid; gap: clamp(40px, 5vw, 72px); align-items: center; }
@media (min-width: 980px) { .hero__grid { grid-template-columns: 1.05fr .95fr; } }
.hero h1 { margin-bottom: 22px; }
.hero__sub { font-size: clamp(1.08rem, .5vw + 1rem, 1.3rem); max-width: 34ch; margin-bottom: 30px; color: var(--body); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; padding: 0; list-style: none; font-size: .92rem; font-weight: 600; color: var(--ink); }
.trust-row li { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { width: 20px; height: 20px; color: var(--lagoon-deep); }
.trust-row .stars { color: #E0A800; letter-spacing: 1px; }

.stage { position: relative; perspective: 1200px; max-width: 540px; margin-inline: auto; width: 100%; }
.stage__tilt { position: relative; transform-style: preserve-3d; transition: transform .6s var(--ease); transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }
.arch {
  position: relative; border-radius: var(--r-arch); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-lg); border: 8px solid rgb(255 255 255/.85);
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.hero .arch { aspect-ratio: 4 / 4.6; }
.hero .arch img { object-position: 60% 50%; }
.arch-back { position: absolute; inset: 28px -22px -22px 28px; border-radius: var(--r-arch); background: var(--peach); z-index: -1; transform: translateZ(-60px); }
.arch-back--teal { background: var(--aqua-mist); inset: -20px 30px 40px -24px; }

.lens {
  position: absolute; width: 150px; height: 150px; border-radius: 50%; pointer-events: none;
  border: 4px solid #fff; box-shadow: var(--shadow-lg), inset 0 0 0 2px rgb(0 194 203/.6);
  background-repeat: no-repeat; opacity: 0; transform: translate(-50%, -50%) scale(.6);
  transition: opacity .25s, transform .3s var(--ease); z-index: 3;
}
.lens::after { content: ""; position: absolute; right: -34px; bottom: -34px; width: 44px; height: 12px; border-radius: 8px; background: var(--ink); transform: rotate(45deg); }
.lens.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 18px; font-size: .9rem; font-weight: 700; color: var(--ink); line-height: 1.25;
  background: var(--glass-strong); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: var(--shadow-md), var(--glass-hi); z-index: 4;
}
.chip small { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; }
.chip__ico { flex: none; width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: var(--aqua-mist); color: var(--lagoon-deep); }
.chip__ico--orange { background: var(--peach); color: var(--tangerine-deep); }
.chip__ico svg { width: 19px; height: 19px; }
.chip--1 { top: 14%; left: -6%; transform: translateZ(70px); }
.chip--2 { bottom: 22%; right: -8%; transform: translateZ(110px); }
.chip--3 { bottom: -4%; left: 8%; transform: translateZ(90px); }
@media (max-width: 560px) {
  .chip { font-size: .8rem; padding: 9px 12px; }
  .chip--1 { left: -2%; } .chip--2 { right: -2%; } .chip--3 { left: 2%; }
  .chip small { display: none; }
}
.mascot-peek { position: absolute; width: 96px; top: -58px; right: 12%; z-index: 5; transform: translateZ(80px) rotate(12deg); filter: drop-shadow(0 12px 18px rgb(10 42 48/.18)); }
.mascot-peek img { width: 100%; }

/* Floating things */
.float { animation: bob 6s ease-in-out infinite; }
.float--slow { animation-duration: 8s; }
.float--delay { animation-delay: -3s; }
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
.orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: -1; filter: blur(.5px);
  background: radial-gradient(circle at 30% 28%, rgb(255 255 255/.95), rgb(255 255 255/.15) 38%, transparent 62%), radial-gradient(circle, var(--c, rgb(0 238 226/.35)), transparent 70%);
  border: 1px solid rgb(255 255 255/.55); box-shadow: inset 0 0 30px rgb(255 255 255/.4);
  animation: drift var(--d, 16s) ease-in-out infinite; }
.orb--peach { --c: rgb(255 145 77/.3); }
@keyframes drift { 0%,100% { translate: 0 0; } 33% { translate: 14px -20px; } 66% { translate: -12px 10px; } }
.glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; opacity: .55; }
.glow--aqua { background: var(--aqua-glow); }
.glow--orange { background: var(--tangerine); }

.strands { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; }
.strands path { fill: none; stroke-width: 1.6; stroke-linecap: round; opacity: .55; }
.strands .s-teal { stroke: var(--lagoon); }
.strands .s-orange { stroke: var(--tangerine); opacity: .45; }
.draw path { stroke-dasharray: var(--len, 2000); stroke-dashoffset: var(--len, 2000); transition: stroke-dashoffset 2.6s var(--ease); }
.draw.is-in path { stroke-dashoffset: 0; }

/* ---------- 6. Page hero (inner) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--grad-hero); padding-block: clamp(36px, 5vw, 64px) clamp(56px, 7vw, 96px); isolation: isolate; }
.page-hero__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 940px) { .page-hero__grid { grid-template-columns: 1.1fr .9fr; } }
.page-hero h1 { font-size: clamp(2.3rem, 3.4vw + 1rem, 4.2rem); }
.page-hero .arch { aspect-ratio: 4 / 4.2; max-width: 460px; margin-inline: auto; }
.page-hero .mascot-peek { width: 80px; top: -44px; }
.crumbs { margin-bottom: 26px; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: .88rem; font-weight: 600; }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.crumbs li + li::before { content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor; border-top: 2px solid currentColor; transform: rotate(45deg); opacity: .6; }
.crumbs a { color: var(--lagoon-deep); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ---------- 7. Marquee ---------- */
.marquee { background: var(--midnight); color: #fff; overflow: hidden; padding-block: 18px; position: relative; transform: rotate(-1.2deg); margin-top: -24px; z-index: 2; box-shadow: var(--shadow-md); }
.marquee__track { display: flex; width: max-content; gap: 0; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 18px; padding-inline: 18px; font-weight: 700; font-size: 1.02rem; white-space: nowrap; }
.marquee__item::after { content: ""; width: 22px; height: 10px; background: repeating-linear-gradient(90deg, var(--tangerine) 0 2px, transparent 2px 5px); border-top: 3px solid var(--tangerine); margin-left: 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 8. Steps ---------- */
.steps { display: grid; gap: 28px; position: relative; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.steps__line { display: none; }
@media (min-width: 860px) {
  .steps__line { display: block; position: absolute; top: 38px; left: 16%; right: 16%; height: 14px; z-index: 0;
    background: repeating-linear-gradient(90deg, var(--lagoon) 0 2px, transparent 2px 7px); border-top: 3px solid var(--lagoon);
    transform: scaleX(0); transform-origin: left; transition: transform 1.6s var(--ease); border-radius: 2px; }
  .steps.is-in .steps__line { transform: scaleX(1); }
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 10px; }
.step__num {
  width: 78px; height: 78px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--ink);
  background: #fff; box-shadow: var(--shadow-md), inset 0 0 0 6px var(--aqua-mist);
  transform: scale(.4); opacity: 0; transition: transform .7s var(--ease), opacity .5s;
}
.steps.is-in .step__num { transform: scale(1); opacity: 1; }
.steps.is-in .step:nth-child(3) .step__num { transition-delay: .25s; }
.steps.is-in .step:nth-child(4) .step__num { transition-delay: .5s; }
.step p { max-width: 32ch; margin-inline: auto; }

/* ---------- 9. Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative; border-radius: var(--r-card); padding: 30px 26px;
  background: var(--glass-strong); border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md), var(--glass-hi);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.tilt { transform-style: preserve-3d; transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0)); transition: transform .5s var(--ease), box-shadow .4s var(--ease); will-change: transform; }
.tilt:hover { --ty: -6px; box-shadow: var(--shadow-lg), var(--glass-hi); }
.tilt__glare { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgb(255 255 255/.55), transparent 55%); }
.tilt:hover .tilt__glare { opacity: 1; }

.svc-card { display: flex; flex-direction: column; text-decoration: none; color: var(--body); cursor: pointer; overflow: hidden; }
.svc-card:hover { color: var(--body); }
.svc-card__ico { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: var(--aqua-mist); color: var(--lagoon-deep); margin-bottom: 22px; transform: translateZ(30px); }
.svc-card__ico svg { width: 28px; height: 28px; }
.svc-card:nth-child(even) .svc-card__ico { background: var(--peach); color: var(--tangerine-deep); }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { font-size: .98rem; flex: 1; }
.price-tag { display: inline-flex; align-items: baseline; gap: 6px; align-self: flex-start; margin-bottom: 18px;
  padding: 6px 14px; border-radius: 999px; background: var(--tangerine); color: var(--ink); font-weight: 800; box-shadow: var(--glow-cta); transform: translateZ(40px); }
.price-tag small { font-weight: 600; font-size: .78rem; }
.svc-card .link-arrow { margin-top: 8px; }
.svc-card::before { content: ""; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgb(0 238 226/.22), transparent 70%); pointer-events: none; }

/* Bento */
.bento { display: grid; gap: 18px; }
@media (min-width: 720px) { .bento { grid-template-columns: repeat(6, 1fr); } }
.bento__item { border-radius: var(--r-card); padding: 28px; background: #fff; box-shadow: var(--shadow-md); position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.bento__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bento__item h3 { margin-bottom: 8px; }
.bento__item p { margin: 0; font-size: .98rem; }
.bento__ico { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: var(--aqua-mist); color: var(--lagoon-deep); margin-bottom: 18px; }
.bento__ico svg { width: 24px; height: 24px; }
@media (min-width: 720px) {
  .bento__item:nth-child(1) { grid-column: span 4; }
  .bento__item:nth-child(2) { grid-column: span 2; }
  .bento__item:nth-child(3) { grid-column: span 2; }
  .bento__item:nth-child(4) { grid-column: span 2; }
  .bento__item:nth-child(5) { grid-column: span 2; }
  .bento__item:nth-child(6) { grid-column: span 6; }
}
.bento__item--feature { background: var(--midnight); color: rgb(255 255 255/.85); }
.bento__item--feature h3 { color: #fff; font-size: clamp(1.5rem, 1.4vw + 1rem, 2.2rem); }
.bento__item--feature .bento__ico { background: rgb(0 238 226/.15); color: var(--aqua-glow); }
.bento__item--feature .glow { width: 260px; height: 260px; right: -80px; bottom: -120px; opacity: .35; }
.bento__item--peach { background: linear-gradient(135deg, #fff, var(--peach)); }
.bento__item--mist { background: linear-gradient(135deg, #fff, var(--aqua-mist)); }
.bento__item--wide { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; background: linear-gradient(120deg, rgb(195 255 253/.7), #fff 50%, rgb(253 217 194/.7)); }
.bento__item--wide .bento__ico { margin-bottom: 0; }

/* Meet / split */
.split { display: grid; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: .9fr 1.1fr; } .split--rev > :first-child { order: 2; } }
.portrait { position: relative; max-width: 420px; margin-inline: auto; width: 100%; }
.portrait .arch { aspect-ratio: 1 / 1.15; }
.portrait .arch img { object-position: 50% 20%; }
.portrait .arch-back { transform: none; }
.portrait__badge { position: absolute; bottom: 28px; right: -10px; }
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--tangerine-deep); margin-top: 6px; }

/* ---------- 10. Reviews ---------- */
.rating-sum { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; margin-bottom: 30px; }
.rating-sum__score { display: flex; align-items: center; gap: 14px; padding: 12px 20px 12px 14px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-md); }
.rating-sum__score b { font-family: var(--font-display); font-size: 2rem; color: var(--ink); line-height: 1; }
.g-logo { width: 34px; height: 34px; flex: none; }
.stars { display: inline-flex; gap: 2px; color: #E0A800; }
.stars svg { width: 18px; height: 18px; }
.stars.shimmer svg { animation: star-pop .5s var(--ease) backwards; }
.stars.shimmer svg:nth-child(2) { animation-delay: .08s; } .stars.shimmer svg:nth-child(3) { animation-delay: .16s; }
.stars.shimmer svg:nth-child(4) { animation-delay: .24s; } .stars.shimmer svg:nth-child(5) { animation-delay: .32s; }
@keyframes star-pop { from { transform: scale(0) rotate(-40deg); opacity: 0; } }
.tabs { display: inline-flex; flex-wrap: wrap; gap: 4px; padding: 6px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-sm); position: relative; margin-bottom: 32px; max-width: 100%; }
.tab { position: relative; z-index: 1; border: 0; background: none; padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: .93rem; color: var(--muted); min-height: 44px; transition: color .25s; }
.tab[aria-selected="true"] { color: var(--ink); }
.tabs__ind { position: absolute; z-index: 0; top: 6px; left: 0; height: calc(100% - 12px); border-radius: 999px; background: var(--aqua-mist); box-shadow: inset 0 0 0 1.5px rgb(0 194 203/.5); transition: transform .45s var(--ease), width .45s var(--ease); }
@media (max-width: 520px) { .tabs { border-radius: 22px; } .tabs__ind { display: none; } .tab[aria-selected="true"] { background: var(--aqua-mist); } }
.reviews { display: grid; gap: 22px; }
@media (min-width: 760px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 759px) {
  .reviews--carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding: 4px 4px 18px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none; }
  .reviews--carousel::-webkit-scrollbar { display: none; }
  .reviews--carousel .review { flex: 0 0 86%; scroll-snap-align: center; }
}
.review { display: flex; flex-direction: column; gap: 14px; border-radius: var(--r-card); padding: 26px; background: var(--glass-strong); border: 1px solid var(--glass-border); box-shadow: var(--shadow-md), var(--glass-hi); backdrop-filter: blur(14px); transition: opacity .35s var(--ease), transform .45s var(--ease); }
.review.is-hidden { display: none; }
.review.is-entering { opacity: 0; transform: translateY(16px); }
.review__head { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: var(--ink); background: var(--grad-brand); flex: none; }
.review__name { font-weight: 700; color: var(--ink); line-height: 1.2; }
.review__src { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--muted); }
.review__src svg { width: 14px; height: 14px; }
.review blockquote { margin: 0; font-size: 1rem; color: var(--body); }
.review blockquote.clamp { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.review__more { align-self: flex-start; border: 0; background: none; padding: 4px 0; font-weight: 700; color: var(--lagoon-deep); font-size: .9rem; text-decoration: underline; text-underline-offset: 3px; }
.review__tag { margin-top: auto; align-self: flex-start; font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: var(--peach); color: var(--tangerine-deep); }
.review__tag--teal { background: var(--aqua-mist); color: var(--lagoon-deep); }
.section--dark .review { background: rgb(255 255 255/.06); border-color: rgb(255 255 255/.12); box-shadow: none; }
.section--dark .review blockquote { color: rgb(255 255 255/.85); }
.section--dark .review__name { color: #fff; }
.section--dark .review__src { color: rgb(255 255 255/.65); }

/* ---------- 11. 4 Keys flip cards ---------- */
.keys { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .keys { grid-template-columns: repeat(4, 1fr); } }
.flip { perspective: 1000px; border: 0; padding: 0; background: none; text-align: left; min-height: 280px; cursor: pointer; width: 100%; }
@media (max-width: 480px) { .flip { min-height: 250px; } }
.flip__inner { position: relative; width: 100%; height: 100%; min-height: inherit; transform-style: preserve-3d; transition: transform .8s var(--ease); }
.flip:hover .flip__inner, .flip[aria-pressed="true"] .flip__inner { transform: rotateY(180deg); }
@media (hover: none) { .flip:hover .flip__inner { transform: none; } .flip[aria-pressed="true"] .flip__inner { transform: rotateY(180deg); } }
.flip__face { position: absolute; inset: 0; border-radius: var(--r-card); padding: 24px 20px; backface-visibility: hidden; -webkit-backface-visibility: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-md); }
.flip__front { background: #fff; align-items: center; justify-content: center; text-align: center; gap: 14px; }
.flip__back { background: var(--midnight); color: rgb(255 255 255/.88); transform: rotateY(180deg); justify-content: center; font-size: .95rem; line-height: 1.6; }
.flip__back strong { color: var(--tangerine); font-family: var(--font-display); font-size: 1.3rem; display: block; margin-bottom: 8px; }
.flip__disc { width: 104px; height: 104px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #5ff5ee, var(--aqua-glow) 45%, var(--lagoon)); display: grid; place-items: center; position: relative; box-shadow: 0 14px 30px rgb(0 194 203/.35); }
.flip__disc svg { width: 54px; height: 54px; color: var(--ink); }
.flip__key { position: absolute; top: -16px; left: -18px; width: 58px; color: #B8860B; transform: rotate(-24deg); filter: drop-shadow(0 4px 4px rgb(0 0 0/.15)); }
.flip__front h3 { margin: 0; font-size: 1.45rem; }
.flip__hint { font-size: .78rem; font-weight: 700; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

/* ---------- 12. Stats ---------- */
.stats { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { border-radius: 24px; padding: 26px 20px; background: rgb(255 255 255/.06); border: 1px solid rgb(255 255 255/.12); position: relative; overflow: hidden; transform-style: preserve-3d; }
.stat__num { font-family: var(--font-display); font-size: clamp(2rem, 2.4vw + 1rem, 3.1rem); color: #fff; line-height: 1; font-weight: 600; display: block; margin-bottom: 10px; transform: translateZ(20px); }
.stat__num span { color: var(--tangerine); }
.stat__label { font-size: .92rem; color: rgb(255 255 255/.75); }
.section:not(.section--dark) .stat { background: #fff; border-color: var(--line); box-shadow: var(--shadow-md); }
.section:not(.section--dark) .stat__num { color: var(--ink); }
.section:not(.section--dark) .stat__num span { color: var(--tangerine-deep); }
.section:not(.section--dark) .stat__label { color: var(--muted); }

/* ---------- 13. FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.faq__item { border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line); overflow: hidden; transition: box-shadow .3s; }
.faq__item.is-open { box-shadow: var(--shadow-md); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 20px 24px; border: 0; background: none; text-align: left; font-weight: 700; font-size: 1.05rem; color: var(--ink); min-height: 64px; }
.faq__icon { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--aqua-mist); position: relative; transition: transform .4s var(--ease), background-color .3s; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; background: var(--lagoon-deep); border-radius: 2px; translate: -50% -50%; }
.faq__icon::after { rotate: 90deg; }
.faq__item.is-open .faq__icon { transform: rotate(135deg); background: var(--peach); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 24px 22px; margin: 0; }

/* ---------- 14. Pricing ---------- */
.price-list { display: grid; gap: 18px; }
@media (min-width: 760px) { .price-list { grid-template-columns: repeat(2, 1fr); } }
.price-card { display: flex; flex-direction: column; gap: 10px; }
.price-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.price-card__amt { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--ink); line-height: 1; white-space: nowrap; }
.price-card__amt sup { font-size: .45em; vertical-align: top; position: relative; top: .35em; margin-right: 2px; }
.price-card ul { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 8px; font-size: .96rem; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; }
.price-card li svg { width: 20px; height: 20px; color: var(--lagoon); flex: none; margin-top: 3px; }
.price-card--hl { background: linear-gradient(160deg, #fff, rgb(253 217 194/.7)); border: 1.5px solid rgb(255 145 77/.45); }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-size: .78rem; font-weight: 800; background: var(--aqua-mist); color: var(--lagoon-deep); letter-spacing: .02em; }
.badge--orange { background: var(--tangerine); color: var(--ink); }
.fineprint { font-size: .9rem; color: var(--muted); border-left: 3px solid var(--tangerine); padding: 8px 0 8px 16px; margin-top: 28px; }

/* Timeline (process / story) */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; display: grid; gap: 26px; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 10px; bottom: 10px; width: 10px; background: repeating-linear-gradient(180deg, var(--lagoon) 0 2px, transparent 2px 7px); border-left: 3px solid var(--lagoon); transform: scaleY(0); transform-origin: top; transition: transform 1.6s var(--ease); }
.timeline.is-in::before { transform: scaleY(1); }
.timeline li { position: relative; padding-left: 72px; }
.timeline__dot { position: absolute; left: 0; top: 0; width: 50px; height: 50px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md), inset 0 0 0 5px var(--aqua-mist); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.2rem; }
.timeline h3 { margin-bottom: 6px; padding-top: 10px; }
.timeline p { margin: 0; }

/* Check list */
.checks { list-style: none; padding: 0; margin: 0 0 1.2em; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks svg { flex: none; width: 24px; height: 24px; padding: 4px; border-radius: 50%; background: var(--aqua-mist); color: var(--lagoon-deep); margin-top: 2px; }

/* Aside card for service pages */
.content-grid { display: grid; gap: clamp(36px, 5vw, 64px); }
@media (min-width: 980px) { .content-grid { grid-template-columns: minmax(0, 1fr) 360px; align-items: start; } }
.aside-card { position: sticky; top: 110px; }
.aside-card h3 { margin-bottom: 12px; }
.aside-card .price-card__amt { margin-bottom: 8px; }
.aside-card .btn { margin-top: 10px; }
.aside-card hr { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { padding: 7px 0; text-align: left; border-bottom: 1px dashed var(--line); }
.hours th { font-weight: 600; color: var(--ink); }
.hours td { text-align: right; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--tangerine-deep); font-weight: 800; }
.section--dark .hours th { color: #fff; }
.section--dark .hours th, .section--dark .hours td { border-color: rgb(255 255 255/.15); }

/* ---------- 15. Inquiry / form ---------- */
.inquiry { display: grid; gap: 28px; }
@media (min-width: 1000px) { .inquiry { grid-template-columns: 1.15fr .85fr; align-items: stretch; } }
.form-card { padding: clamp(26px, 3.5vw, 44px); }
.form { display: grid; gap: 16px; }
.form__row { display: grid; gap: 16px; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 58px; padding: 24px 16px 8px; border-radius: var(--r-input);
  border: 1.5px solid rgb(18 48 58/.16); background: rgb(255 255 255/.9); color: var(--ink);
  font-size: 1rem; transition: border-color .2s, box-shadow .2s; appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; padding-top: 28px; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%2312303A' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }
.field label { position: absolute; left: 17px; top: 18px; font-size: 1rem; color: var(--muted); pointer-events: none; transform-origin: left top; transition: transform .2s var(--ease), color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lagoon); box-shadow: 0 0 0 4px rgb(0 194 203/.18); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select + label { transform: translateY(-11px) scale(.78); color: var(--lagoon-deep); font-weight: 600; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #C0362C; }
.field__err { display: block; font-size: .84rem; color: #B42318; margin-top: 6px; min-height: 0; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--body); cursor: pointer; }
.consent input { width: 22px; height: 22px; flex: none; margin-top: 2px; accent-color: var(--lagoon-deep); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { justify-self: start; }
.form__submit[disabled] { opacity: .75; cursor: progress; }
.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgb(18 48 58/.3); border-top-color: var(--ink); animation: spin .8s linear infinite; display: none; }
.is-loading .spinner { display: block; }
.is-loading .btn__arrow { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.form__status { font-weight: 600; }
.form__status.is-error { color: #B42318; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.is-shown { display: block; }
.form-success svg { width: 84px; height: 84px; margin: 0 auto 16px; }
.form-success circle { stroke: var(--lagoon); stroke-width: 3; fill: var(--aqua-mist); stroke-dasharray: 240; stroke-dashoffset: 240; animation: dash .7s var(--ease) forwards; }
.form-success path { stroke: var(--lagoon-deep); stroke-width: 4; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: dash .5s .5s var(--ease) forwards; }
@keyframes dash { to { stroke-dashoffset: 0; } }
.visit { display: flex; flex-direction: column; gap: 18px; border-radius: var(--r-card); background: var(--midnight); color: rgb(255 255 255/.85); padding: clamp(24px, 3vw, 36px); position: relative; overflow: hidden; }
.visit h3 { color: #fff; }
.visit a { color: #fff; }
.visit a:hover { color: var(--tangerine); }
.visit__line { display: flex; gap: 12px; align-items: flex-start; }
.visit__line svg { width: 22px; height: 22px; flex: none; color: var(--aqua-glow); margin-top: 3px; }
.map { border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 10; background: var(--midnight-2); border: 1px solid rgb(255 255 255/.12); position: relative; }
.map iframe { width: 100%; height: 100%; border: 0; }
.map__load { position: absolute; inset: 0; display: grid; place-items: center; gap: 10px; align-content: center; color: #fff; font-weight: 700; border: 0; width: 100%; background: radial-gradient(circle at 50% 40%, rgb(0 238 226/.2), transparent 60%), var(--midnight-2); }
.map__load svg { width: 34px; height: 34px; color: var(--tangerine); }

/* ---------- 16. CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--midnight); color: rgb(255 255 255/.85); border-radius: 36px; padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px); isolation: isolate; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; max-width: 16ch; }
.cta-band h2 em { color: var(--tangerine); }
.cta-band p { max-width: 48ch; }
.cta-band .glow--aqua { width: 380px; height: 380px; top: -160px; right: 10%; }
.cta-band .glow--orange { width: 320px; height: 320px; bottom: -180px; left: -60px; opacity: .45; }
.cta-band__mascot { position: absolute; right: clamp(10px, 6vw, 90px); bottom: -30px; width: clamp(110px, 16vw, 200px); z-index: 1; filter: drop-shadow(0 20px 30px rgb(0 0 0/.35)); }
@media (max-width: 700px) { .cta-band__mascot { opacity: .25; right: -20px; } }
.cta-band > *:not(.glow):not(.cta-band__mascot):not(.orb) { position: relative; z-index: 2; }
.cta-wrap { padding-block: 0 var(--section-y); }

/* ---------- 17. Footer ---------- */
.footer { background: var(--midnight); color: rgb(255 255 255/.75); padding-top: clamp(56px, 7vw, 88px); position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 14px; background: repeating-linear-gradient(90deg, rgb(0 238 226/.5) 0 2px, transparent 2px 8px); border-top: 3px solid rgb(0 238 226/.5); }
.footer__grid { display: grid; gap: 40px; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr; } }
.footer h2 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--aqua-glow); margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: rgb(255 255 255/.85); text-decoration: none; }
.footer a:hover { color: var(--tangerine); text-decoration: underline; }
.footer__badge { display: inline-block; background: #fff; border-radius: 22px; padding: 14px 18px; box-shadow: var(--shadow-md); margin-bottom: 18px; }
.footer__badge img { height: 74px; width: auto; }
.footer .social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgb(255 255 255/.08); color: #fff; }
.footer .social a:hover { background: var(--tangerine); color: var(--ink); text-decoration: none; }
.footer .social svg { width: 18px; height: 18px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--aqua-glow); flex: none; margin-top: 5px; }
.footer .hours { font-size: .9rem; margin-top: 12px; }
.footer .hours th { color: #fff; font-weight: 600; }
.footer .hours td, .footer .hours th { border-color: rgb(255 255 255/.12); padding: 5px 0; }
.footer__bottom { margin-top: 56px; padding-block: 24px; border-top: 1px solid rgb(255 255 255/.12); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .88rem; }
.footer__bottom p { margin: 0; }
.credit a { color: var(--tangerine); font-weight: 700; }

/* ---------- 18. Mobile action bar, back to top ---------- */
.mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-mobilebar); display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgb(251 250 247/.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgb(10 42 48/.08); }
.mbar a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; border-radius: 16px; font-weight: 800; text-decoration: none; }
.mbar svg { width: 22px; height: 22px; }
.mbar__call { background: var(--tangerine); color: var(--ink); box-shadow: var(--glow-cta); }
.mbar__wa { background: var(--whatsapp); color: #06331A; box-shadow: 0 10px 24px rgb(37 211 102/.3); }
.mbar a:hover { color: inherit; }
@media (max-width: 768px) { body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); } }
@media (min-width: 769px) { .mbar { display: none; } }
.totop { position: fixed; right: 24px; bottom: 24px; z-index: var(--z-sticky); width: 56px; height: 56px; border-radius: 50%; border: 0; background: #fff; box-shadow: var(--shadow-md); display: none; place-items: center; opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .3s var(--ease); }
@media (min-width: 769px) { .totop { display: grid; } }
.totop.is-shown { opacity: 1; transform: none; }
.totop svg.ring { position: absolute; inset: 0; width: 56px; height: 56px; transform: rotate(-90deg); }
.totop .ring circle { fill: none; stroke-width: 3; }
.totop .ring .bg { stroke: var(--aqua-mist); }
.totop .ring .fg { stroke: var(--tangerine); stroke-dasharray: 157; stroke-dashoffset: calc(157 - 157 * var(--p, 0)); stroke-linecap: round; }
.totop .arrow { width: 20px; height: 20px; color: var(--ink); }

/* ---------- 19. Popup ---------- */
.popup { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: center; padding: 16px; background: rgb(10 42 48/.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.popup.is-open { opacity: 1; visibility: visible; }
.popup__card { position: relative; width: min(520px, 100%); max-height: calc(100vh - 32px); overflow: auto; padding: 40px 32px 30px; border-radius: 30px; background: rgb(255 255 255/.94); box-shadow: var(--shadow-lg);
  border: 2px solid transparent; background-image: linear-gradient(rgb(255 255 255/.96), rgb(255 255 255/.96)), var(--grad-brand); background-origin: border-box; background-clip: padding-box, border-box;
  transform: scale(.9) translateY(20px); transition: transform .5s var(--ease); }
.popup.is-open .popup__card { transform: none; }
.popup__mascot { position: absolute; right: -14px; top: -70px; width: 96px; transform-origin: 50% 90%; animation: wave 2.6s ease-in-out infinite; filter: drop-shadow(0 12px 16px rgb(10 42 48/.25)); }
@keyframes wave { 0%,100% { rotate: 8deg; } 50% { rotate: -8deg; } }
.popup h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.1rem); margin-bottom: 14px; padding-right: 40px; }
.popup p { font-size: 1rem; }
.popup__close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; z-index: 2; }
.popup__close svg { width: 20px; height: 20px; }
.popup__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 22px; }
.popup__later { border: 0; background: none; font-weight: 700; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; min-height: 44px; }
.popup__timer { display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 700; color: var(--tangerine-deep); background: var(--peach); padding: 6px 12px; border-radius: 999px; margin-bottom: 14px; }
.popup__timer svg { width: 16px; height: 16px; }

/* ---------- 20. Products ---------- */
.product { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.product__media { aspect-ratio: 1 / .8; display: grid; place-items: center; background: linear-gradient(140deg, var(--aqua-mist), #fff 60%, var(--peach)); position: relative; overflow: hidden; }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product:hover .product__media img { transform: scale(1.05); }
.product__media svg { width: 84px; height: 84px; color: var(--lagoon-deep); transition: transform .6s var(--ease); }
.product:hover .product__media svg { transform: scale(1.1) rotate(-6deg); }
.product__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product__body h3 { margin: 0; font-size: 1.25rem; }
.product__body p { font-size: .95rem; margin: 0; flex: 1; }
.product__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; gap: 10px; }

/* ---------- 21. Lice facts visuals ---------- */
.lifecycle { width: 100%; max-width: 560px; margin-inline: auto; }
.lifecycle text { font-family: var(--font-body); font-weight: 700; fill: var(--ink); }
.lifecycle .lc-sub { font-weight: 500; fill: var(--muted); font-size: 12px; }
.lifecycle .lc-ring { fill: none; stroke: var(--lagoon); stroke-width: 3; stroke-dasharray: 8 6; }
.lifecycle .lc-node { fill: #fff; stroke: var(--lagoon); stroke-width: 3; }
.lifecycle .lc-node--o { stroke: var(--tangerine); }
.lifecycle .lc-center { font-family: var(--font-display); font-size: 30px; fill: var(--ink); }
.lifecycle .lc-rot { transform-origin: 280px 280px; animation: rot 60s linear infinite; }
@keyframes rot { to { transform: rotate(360deg); } }
.scale { display: grid; gap: 20px; }
.scale__row { display: grid; grid-template-columns: 110px 1fr auto; gap: 14px; align-items: center; font-weight: 600; color: var(--ink); font-size: .95rem; }
.scale__bar { height: 14px; border-radius: 999px; background: var(--aqua-mist); overflow: hidden; }
.scale__bar span { display: block; height: 100%; width: var(--w); border-radius: inherit; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease); }
.is-in .scale__bar span { transform: scaleX(1); }
.fact-list { display: grid; gap: 16px; }
@media (min-width: 700px) { .fact-list { grid-template-columns: repeat(3, 1fr); } }
.fact-list .card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.fact-list dl { margin: 0; display: grid; gap: 10px; }
.fact-list dt { font-size: .85rem; color: var(--muted); font-weight: 600; }
.fact-list dd { margin: 0; font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.reveal-photo { position: relative; border-radius: 22px; overflow: hidden; max-width: 380px; box-shadow: var(--shadow-md); }
.reveal-photo img { width: 100%; filter: blur(14px) saturate(.6); transform: scale(1.1); transition: filter .6s var(--ease), transform .6s var(--ease); }
.reveal-photo.is-revealed img { filter: none; transform: none; }
.reveal-photo button { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 6px; width: 100%; border: 0; background: rgb(10 42 48/.25); color: #fff; font-weight: 800; }
.reveal-photo button svg { width: 30px; height: 30px; }
.reveal-photo.is-revealed button { display: none; }
.keys-img { max-width: 360px; margin-inline: auto; }

/* ---------- 22. 404 ---------- */
.nf { min-height: 70vh; display: grid; place-items: center; text-align: center; background: var(--grad-hero); position: relative; overflow: hidden; isolation: isolate; padding-block: 60px; }
.nf__mascot { width: 150px; margin: 0 auto 10px; position: relative; }
.nf__mascot .lens-ico { position: absolute; width: 90px; right: -46px; bottom: 40px; color: var(--ink); }
.nf h1 { font-size: clamp(2.4rem, 4vw + 1rem, 4.2rem); }
.nf .btn-row { justify-content: center; }

/* ---------- 23. Reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--delay, 0ms); }
  .js [data-reveal="left"] { transform: translateX(-30px); }
  .js [data-reveal="right"] { transform: translateX(30px); }
  .js [data-reveal="zoom"] { transform: scale(.94); }
  .js [data-reveal].is-in { opacity: 1; transform: none; }
  .js .sweep { position: relative; }
  .js .sweep > span { display: block; clip-path: inset(0 100% 0 0); transition: clip-path 1.1s var(--ease); }
  .js .sweep.is-in > span { clip-path: inset(0 0 0 0); }
}

/* ---------- 24. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee__track [aria-hidden="true"] { display: none; }
  .float, .orb, .popup__mascot, .lifecycle .lc-rot { animation: none !important; }
  .tilt, .stage__tilt { transform: none !important; }
  .draw path { stroke-dashoffset: 0; }
  .steps__line, .timeline::before { transform: none; }
  .step__num { transform: none; opacity: 1; }
  .scale__bar span { transform: none; }
}

/* Glass fallback */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header, .card, .chip, .review, .dropdown, .drawer__panel, .mbar { background: #fff; }
}

/* ---------- 25. Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 56px; }
.gap-top { margin-top: clamp(48px, 6vw, 80px); }
.muted { color: var(--muted); }
.text-sm { font-size: .92rem; }
.prose .checks, .prose .timeline { padding-left: 0; }
.prose .timeline { margin: 26px 0 32px; }
.prose .price-list { margin-bottom: 1.2em; }
main { overflow-x: clip; }
.fact-list--2 { grid-template-columns: 1fr; }
@media (min-width: 520px) { .fact-list--2 { grid-template-columns: 1fr 1fr; } }
.stats--2 { grid-template-columns: 1fr 1fr; }
.flip__inner { display: block; }
.flip__title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--ink); line-height: 1.1; }
.flip__back > span { display: block; }
.section--dark .lead, .cta-band .lead { color: rgb(255 255 255/.8); }
.cta-band .eyebrow { color: var(--aqua-glow); }
.visit .hours th { color: #fff; }
.visit .hours td { color: rgb(255 255 255/.85); }
.visit .hours th, .visit .hours td { border-color: rgb(255 255 255/.14); }
.visit .hours tr.is-today th, .visit .hours tr.is-today td, .footer .hours tr.is-today th, .footer .hours tr.is-today td { color: var(--tangerine); }
.cta-wrap { padding-top: clamp(8px, 2vw, 24px); }
.section--mist + .cta-wrap, .section--peach + .cta-wrap { background: linear-gradient(180deg, rgb(195 255 253/.15), var(--porcelain) 60%); }
@media (max-width: 560px) { .stat__num { font-size: 1.75rem; } .stat { padding: 20px 16px; } }
.popup.is-open, .drawer.is-open { transition: opacity .35s, visibility 0s; }
.drawer__list a svg { width: 22px; height: 22px; flex: none; color: var(--tangerine-deep); }
.price-card .badge { align-self: flex-start; }
.dropdown { background: rgb(255 255 255/.98); }
.popup__mascot { right: auto; left: -26px; top: -78px; }
.hero-mascot { position: relative; display: none; justify-self: center; width: 240px; }
.hero-mascot img { width: 100%; filter: drop-shadow(0 30px 40px rgb(10 42 48/.2)); position: relative; z-index: 1; }
.hero-mascot__ring { position: absolute; inset: 18% -30% 8%; border-radius: 50%; background: radial-gradient(circle, rgb(255 255 255/.9), rgb(195 255 253/.5) 55%, transparent 70%); }
@media (min-width: 940px) { .hero-mascot { display: block; } }
