/* ============================================================
   DRB REFLEXOLOGY — styles.css
   Palette system (60 / 30 / 10):
   ~60%  White & teal-tinted whites  → canvas, cards, breathing room
   ~30%  Dark Teal #045D5D           → hero, offer, footer, headings, text
   ~10%  Electric Yellow #FFFF33     → CTAs, highlights, accents only
   Fonts: DM Serif Display (display) · Inter (UI/body)
   ============================================================ */

:root {
  /* Brand */
  --teal: #045D5D;
  --teal-deep: #033E41;
  --teal-ink: #0E3535;
  --teal-soft: #0A6E6C;
  --yellow: #FFF233;
  --yellow-deep: #F5DC00;
  --yellow-grad: linear-gradient(135deg, #FFFC7A 0%, #FFF233 55%, #FFE014 100%);
  --white: #FFFFFF;
  --cream: #F4FAF8;          /* teal-tinted white */
  --line: rgba(4, 93, 93, .12);
  --ink: #143C3C;            /* body text on light */
  --muted: #557876;
  --wa: #25D366;
  --wa-deep: #1DA851;

  /* Depth — layered "raised 3D" shadows */
  --sh-sm: 0 1px 2px rgba(4, 61, 61, .06), 0 4px 10px -2px rgba(4, 61, 61, .08);
  --sh-md: 0 2px 3px rgba(4, 61, 61, .05), 0 10px 22px -8px rgba(4, 61, 61, .16), 0 24px 44px -18px rgba(4, 61, 61, .2);
  --sh-lg: 0 4px 8px rgba(3, 46, 46, .07), 0 20px 40px -14px rgba(3, 46, 46, .26), 0 42px 80px -28px rgba(3, 46, 46, .3);
  --sh-yellow: 0 6px 18px -4px rgba(214, 189, 0, .45), 0 16px 34px -10px rgba(4, 61, 61, .25);

  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;
  --r-squircle: 14px;   /* rounded-square "squircle" used for all capsules/pills */

  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --nav-h: 74px;
  --announce-h: 40px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
fieldset { border: none; }
s { opacity: .55; font-weight: 500; }
::selection { background: var(--yellow); color: var(--teal-deep); }

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

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.ic { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; vertical-align: -0.18em; }
.ic--massage { width: 1.7em; height: 1.3em; }

section[id], footer[id] { scroll-margin-top: calc(var(--nav-h) + 10px); }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; color: var(--teal-deep); letter-spacing: -0.01em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.15rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h1 em, h2 em { font-style: italic; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 18px;
}
.eyebrow--teal { color: var(--teal); background: rgba(4, 93, 93, .07); padding: 8px 16px; border-radius: var(--r-squircle); }
.eyebrow--capsule {
  color: var(--teal-deep);
  background: var(--yellow-grad);
  border: none;
  padding: 8px 16px; border-radius: var(--r-squircle);
  font-size: .7rem; letter-spacing: .09em;
  box-shadow: 0 5px 16px -5px rgba(214, 189, 0, .5);
}
.eyebrow--capsule .ic--massage { width: 1.5em; height: 1.15em; }
.eyebrow--yellow { color: var(--teal-deep); background: var(--yellow-grad); padding: 8px 16px; border-radius: var(--r-squircle); box-shadow: var(--sh-sm); }

.section { padding: clamp(72px, 9vw, 118px) 0; position: relative; }
.section__head { max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section__sub { color: var(--muted); margin-top: 14px; font-size: 1.06rem; }
.section__sub a { color: var(--teal); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.section__head--light h2 { color: var(--white); }
.section__head--light .section__sub { color: rgba(255, 255, 255, .78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-weight: 700; font-size: .95rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-squircle);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.98); }
.btn--lg { padding: 18px 32px; font-size: 1.02rem; }
.btn--sm { padding: 11px 20px; font-size: .88rem; }
.btn--block { width: 100%; }

.btn--yellow { background: var(--yellow-grad); color: var(--teal-deep); box-shadow: var(--sh-yellow); }
.btn--yellow:hover { transform: translateY(-3px); box-shadow: 0 10px 24px -6px rgba(214, 189, 0, .55), 0 22px 44px -12px rgba(4, 61, 61, .3); }

.btn--teal { background: var(--teal); color: var(--white); box-shadow: var(--sh-md); }
.btn--teal:hover { background: var(--teal-soft); transform: translateY(-3px); box-shadow: var(--sh-lg); }

.btn--ghost { background: rgba(255, 255, 255, .08); color: var(--white); border: 1.5px solid rgba(255, 255, 255, .38); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); transform: translateY(-3px); }

.btn--ghost-teal { background: var(--white); color: var(--teal); border: 1.5px solid rgba(4, 93, 93, .3); }
.btn--ghost-teal:hover { border-color: var(--teal); background: var(--cream); transform: translateY(-3px); box-shadow: var(--sh-sm); }

.btn--wa { background: linear-gradient(135deg, #35DF74, var(--wa) 55%, var(--wa-deep)); color: #fff; box-shadow: 0 6px 18px -4px rgba(29, 168, 81, .5), 0 16px 34px -10px rgba(4, 61, 61, .2); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 10px 26px -6px rgba(29, 168, 81, .55), 0 24px 44px -14px rgba(4, 61, 61, .28); }

/* ---------- Announcement ---------- */
.announce {
  min-height: var(--announce-h);
  background: var(--yellow-grad);
  color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 600; letter-spacing: .01em;
  padding: 8px 16px; text-align: center;
  position: relative; z-index: 60; overflow: hidden;
}
.announce__track { display: flex; align-items: center; }
.announce__item { display: inline-flex; align-items: center; gap: .5em; white-space: nowrap; line-height: 1.35; }
.announce__item .ic { flex: none; }
.announce__item + .announce__item { display: none; }
.announce p { display: inline-flex; align-items: center; gap: .5em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(3, 62, 65, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 100%; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 46px; height: 46px; border-radius: 50%; box-shadow: var(--sh-sm); }
.nav__name { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); letter-spacing: .01em; white-space: nowrap; }
.nav__name em { color: var(--yellow); font-style: italic; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  color: rgba(255, 255, 255, .85); font-weight: 600; font-size: .92rem;
  padding: 10px 14px; border-radius: var(--r-squircle); transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--yellow); background: rgba(255, 255, 255, .07); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__wa { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--white); transition: background .2s, transform .2s; }
.nav__wa:hover { background: var(--wa); transform: translateY(-2px); }
.nav__wa .ic { width: 1.3em; height: 1.3em; }
.nav__wa-mobile { display: none; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav__burger span { width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* Nav after scrolling onto light sections */
.nav.is-scrolled { background: rgba(255, 255, 255, .86); box-shadow: var(--sh-sm); border-bottom-color: var(--line); }
.nav.is-scrolled .nav__name { color: var(--teal-deep); }
.nav.is-scrolled .nav__name em { color: var(--teal); }
.nav.is-scrolled .nav__links a { color: var(--teal-ink); }
.nav.is-scrolled .nav__links a:hover { color: var(--teal); background: rgba(4, 93, 93, .07); }
.nav.is-scrolled .nav__burger span { background: var(--teal-deep); }
.nav.is-scrolled .nav__wa { background: rgba(4, 93, 93, .08); color: var(--teal); }
.nav.is-scrolled .nav__wa:hover { background: var(--wa); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(10, 110, 108, .55), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(6, 84, 86, .6), transparent 55%),
    linear-gradient(168deg, #05494C 0%, var(--teal-deep) 45%, #022E31 100%);
  color: var(--white);
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
  padding: calc(var(--nav-h) + clamp(56px, 8vw, 104px)) 0 clamp(64px, 8vw, 110px);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.orb--1 { width: 420px; height: 420px; background: rgba(255, 242, 51, .14); top: -140px; right: -80px; animation: drift 14s ease-in-out infinite alternate; }
.orb--2 { width: 340px; height: 340px; background: rgba(46, 196, 182, .22); bottom: -120px; left: -100px; animation: drift 18s ease-in-out infinite alternate-reverse; }
.orb--3 { width: 200px; height: 200px; background: rgba(255, 255, 255, .1); top: 40%; left: 42%; animation: drift 12s ease-in-out infinite alternate; }
.orb--4 { width: 380px; height: 380px; background: rgba(255, 242, 51, .1); top: -100px; left: -80px; }
.orb--5 { width: 300px; height: 300px; background: rgba(46, 196, 182, .18); bottom: -80px; right: -60px; }
.orb--6 { width: 460px; height: 460px; background: rgba(255, 242, 51, .12); top: -180px; right: 10%; }
@keyframes drift { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(30px, 24px, 0) scale(1.08); } }

.hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(32px, 4.5vw, 64px); align-items: center; position: relative; }
.hero__copy .eyebrow { color: var(--yellow); }
.hero__copy .eyebrow--capsule { color: var(--teal-deep); }
.hero h1 { color: var(--white); margin-bottom: 22px; font-size: clamp(2.15rem, 4.6vw, 3.4rem); }
.hero h1 em {
  background: linear-gradient(120deg, #FFFFFF 10%, var(--yellow) 60%, #FFE014);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { font-size: 1.1rem; color: rgba(255, 255, 255, .82); max-width: 54ch; margin-bottom: 30px; }
.hero__sub strong { color: var(--yellow); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__trust { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 26px; }
.hero__stars { display: inline-flex; gap: 3px; color: var(--yellow); }
.hero__stars .ic { width: 1.15em; height: 1.15em; }
.hero__trust p { font-size: .86rem; color: rgba(255, 255, 255, .68); }
.hero__slots { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.hero__slots .slot-chip { flex: 0 0 auto; }
.slot-chip {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .86rem; font-weight: 600; white-space: nowrap;
  padding: 9px 16px; border-radius: var(--r-squircle);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(4px);
}
.slot-chip .ic { color: var(--yellow); }
.hero__slots-note { font-size: .82rem; color: rgba(255, 255, 255, .55); font-style: italic; }

.hero__visual { perspective: 1200px; }
.hero__card {
  position: relative; border-radius: var(--r-lg);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(255, 255, 255, .12);
  transform-style: preserve-3d;
}
.hero__card-media { border-radius: var(--r-lg); overflow: hidden; }
.hero__card-media img { display: block; width: 100%; height: auto; object-fit: cover; will-change: transform; }
.about__img img { will-change: transform; }
.hero__card-float {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .94); color: var(--teal-deep);
  border-radius: 16px; padding: 12px 18px; box-shadow: var(--sh-md);
  transform: translateZ(46px);
  backdrop-filter: blur(8px);
}
.hero__card-float strong { display: block; font-size: .98rem; line-height: 1.2; }
.hero__card-float small { color: var(--muted); font-size: .76rem; }
.hero__float-emoji { font-size: 1.4rem; }
.hero__card-float--offer { top: -22px; right: -14px; animation: floaty 5s ease-in-out infinite; }
.hero__card-float--home { bottom: -20px; left: -14px; animation: floaty 6s ease-in-out infinite reverse; }
@keyframes floaty { 0%, 100% { margin-top: 0; } 50% { margin-top: -10px; } }

/* ---------- Free marquee ---------- */
.freestrip {
  background: var(--teal-deep);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 0; overflow: hidden; position: relative;
}
.freestrip::before, .freestrip::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.freestrip::before { left: 0; background: linear-gradient(90deg, var(--teal-deep), transparent); }
.freestrip::after { right: 0; background: linear-gradient(-90deg, var(--teal-deep), transparent); }
.freestrip__track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.freestrip:hover .freestrip__track { animation-play-state: paused; }
.freestrip__group { display: flex; align-items: center; }
.freestrip__group span {
  display: inline-flex; align-items: center; gap: .6em;
  color: rgba(255, 255, 255, .88); font-weight: 600; font-size: .92rem;
  padding: 0 34px; white-space: nowrap;
}
.freestrip__group .ic { color: var(--yellow); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes announce-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 30px);
  perspective: 1400px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  position: relative;
  display: flex; flex-direction: column;
}
.svc-card::after { /* pointer shine */
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 252, 122, .16), transparent 45%);
  opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 2;
}
.svc-card:hover::after { opacity: 1; }
.svc-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__chip {
  position: absolute; top: 14px; left: 14px;
  background: rgba(3, 62, 65, .82); color: var(--white);
  font-size: .76rem; font-weight: 700; letter-spacing: .04em;
  padding: 7px 13px; border-radius: var(--r-squircle); backdrop-filter: blur(4px);
}
.svc-card__fav {
  position: absolute; top: 14px; right: 14px;
  background: var(--yellow-grad); color: var(--teal-deep);
  font-size: .74rem; font-weight: 800; letter-spacing: .05em;
  padding: 7px 13px; border-radius: var(--r-squircle); box-shadow: var(--sh-sm);
}
.svc-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; transform: translateZ(24px); }
.svc-card__body h3 { font-size: 1.45rem; }
.svc-card__tag { color: var(--muted); font-size: .93rem; flex: 1; }
.svc-card__meta { display: flex; align-items: baseline; justify-content: space-between; margin-top: 6px; }
.svc-card__price { font-size: .88rem; color: var(--muted); }
.svc-card__price strong { color: var(--teal); font-size: 1.15rem; font-weight: 800; }
.svc-card__price s { font-size: .82rem; }
.svc-card__actions { display: flex; gap: 10px; margin-top: 14px; }
.svc-card__actions .btn { flex: 1; }

/* ---------- Offer ---------- */
.offer {
  background:
    radial-gradient(900px 460px at 90% 0%, rgba(10, 110, 108, .5), transparent 55%),
    linear-gradient(160deg, #05494C, var(--teal-deep) 60%, #022E31);
  color: var(--white);
  overflow: hidden;
}
.offer__bg { position: absolute; inset: 0; pointer-events: none; }
.offer__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 30px); align-items: stretch;
  perspective: 1400px;
}
.offer-card {
  background: linear-gradient(158deg, rgba(255, 255, 255, .16) 0%, rgba(10, 110, 108, .18) 52%, rgba(2, 46, 46, .32) 100%);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 48px -20px rgba(0, 20, 20, .5);
  display: flex; flex-direction: column; gap: 16px;
  position: relative; transform-style: preserve-3d;
}
.offer-card__tag { font-size: .84rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .75); }
.offer-card__price { display: flex; align-items: baseline; gap: 12px; transform: translateZ(30px); }
.offer-card__price s { font-size: 1.05rem; color: rgba(255, 255, 255, .55); }
.offer-card__price strong { font-family: var(--font-display); font-size: clamp(2.2rem, 3vw, 2.8rem); line-height: 1; color: var(--white); }
.offer-card__x2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--yellow); }
.offer-card__desc { color: rgba(255, 255, 255, .78); font-size: .96rem; flex: 1; }
.offer-card__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.offer-card__list li { display: flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 500; }
.offer-card__list .ic { color: var(--yellow); background: rgba(255, 242, 51, .12); border-radius: 50%; padding: 3px; width: 1.5em; height: 1.5em; }
.offer-card--featured {
  background: linear-gradient(158deg, rgba(255, 252, 122, .3) 0%, rgba(255, 242, 51, .12) 46%, rgba(10, 110, 108, .22) 100%);
  border: 1.5px solid rgba(255, 242, 51, .5);
  box-shadow: 0 0 0 6px rgba(255, 242, 51, .06), 0 30px 60px -22px rgba(0, 20, 20, .6);
}
.offer-card--featured .offer-card__price strong { color: var(--yellow); }
.offer-card__ribbon {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%) translateZ(40px);
  background: var(--yellow-grad); color: var(--teal-deep);
  font-size: .8rem; font-weight: 800; letter-spacing: .04em;
  padding: 8px 20px; border-radius: var(--r-squircle); box-shadow: var(--sh-yellow);
  white-space: nowrap;
}
.offer__note { text-align: center; margin-top: 40px; color: rgba(255, 255, 255, .7); font-size: .95rem; }
.offer__note strong { color: var(--yellow); font-weight: 600; }

/* ---------- Booking ---------- */
.booking { background: var(--cream); }
.booking__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.booking__info h2 { margin-bottom: 30px; }
.booking__steps { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }
.booking__steps li { display: flex; gap: 18px; align-items: flex-start; }
.booking__steps li span {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal); color: var(--yellow);
  font-family: var(--font-display); font-size: 1.25rem;
  box-shadow: var(--sh-sm);
}
.booking__steps strong { display: block; color: var(--teal-deep); font-size: 1.05rem; margin-bottom: 2px; }
.booking__steps p { color: var(--muted); font-size: .95rem; }
.booking__payment {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--sh-sm);
}
.booking__payment .ic { color: var(--teal); width: 1.6em; height: 1.6em; margin-top: 2px; }
.booking__payment p { font-size: .92rem; color: var(--muted); }
.booking__payment strong { color: var(--teal-deep); }

.booking__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--sh-lg);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.booking__form--centered { max-width: 680px; margin-inline: auto; width: 100%; }

/* Map location pin */
.locpin {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream);
  border: 1.5px dashed rgba(4, 93, 93, .3);
  border-radius: var(--r-md); padding: 14px 16px;
  transition: border-color .25s, background .25s;
}
.locpin__icon {
  flex: none; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(4, 93, 93, .09); color: var(--teal);
}
.locpin__icon .ic { width: 1.5em; height: 1.5em; }
.locpin__text { flex: 1; min-width: 0; }
.locpin__text strong { display: block; color: var(--teal-deep); font-size: .92rem; }
.locpin__text small { color: var(--muted); font-size: .8rem; }
.locpin__text small a { color: var(--teal); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.locpin__btn { flex: none; }
.locpin.is-pinned { border-style: solid; border-color: rgba(29, 168, 81, .5); background: rgba(37, 211, 102, .07); }
.locpin.is-pinned .locpin__icon { background: rgba(29, 168, 81, .14); color: var(--wa-deep); }
.locpin__paste { margin-top: 10px; }
.booking__form::before { /* raised top light edge for depth */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: var(--yellow-grad); border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.booking__form h3 { font-size: 1.7rem; margin-bottom: 4px; }
.field { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.field label, .field legend { font-size: .86rem; font-weight: 700; color: var(--teal-deep); }
.field label b, .field legend b { color: #D97706; }
.field label small { font-weight: 500; color: var(--muted); }
.field input, .field select {
  font: inherit; color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23045D5D'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
  padding-right: 40px;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 4px rgba(4, 93, 93, .12);
}
.field input::placeholder { color: #9DB8B5; }
.field__hint { font-size: .8rem; color: var(--muted); font-style: italic; }
.field-row { display: flex; gap: 18px; }

.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; gap: .4em;
  padding: 11px 18px; border-radius: var(--r-squircle);
  border: 1.5px solid var(--line); background: var(--cream);
  font-size: .88rem; font-weight: 600; color: var(--teal-ink);
  transition: all .2s ease; cursor: pointer; user-select: none;
}
.chip:hover span { border-color: var(--teal); }
.chip input:checked + span {
  background: var(--teal); color: var(--white); border-color: var(--teal);
  box-shadow: var(--sh-sm); transform: translateY(-1px);
}
.chip input:focus-visible + span { outline: 3px solid var(--yellow-deep); outline-offset: 2px; }
.chip input:disabled + span { opacity: .45; cursor: not-allowed; }

.booking__total {
  display: flex; align-items: baseline; gap: 14px;
  background: linear-gradient(135deg, rgba(255, 242, 51, .16), rgba(255, 242, 51, .05));
  border: 1.5px dashed rgba(214, 189, 0, .5);
  border-radius: var(--r-md); padding: 16px 22px;
}
.booking__total span { font-size: .88rem; font-weight: 600; color: var(--muted); }
.booking__total strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--teal-deep); }
.booking__total small { color: var(--muted); text-decoration: line-through; }
.booking__error { color: #C2410C; background: #FFF3EB; border: 1px solid #FED7AA; border-radius: var(--r-sm); padding: 12px 16px; font-size: .9rem; font-weight: 600; }
.booking__fineprint { font-size: .8rem; color: var(--muted); text-align: center; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.about__visual { position: relative; perspective: 1200px; }
.about__img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); transform-style: preserve-3d; }
.about__img img { width: 100%; height: auto; object-fit: cover; }
.about__badge {
  position: absolute; bottom: -22px; right: 18px;
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: 16px; padding: 14px 20px;
  box-shadow: var(--sh-md); border: 1px solid var(--line);
}
.about__badge .ic { color: var(--teal); width: 1.9em; height: 1.9em; }
.about__badge strong { display: block; color: var(--teal-deep); line-height: 1.2; }
.about__badge small { color: var(--muted); font-size: .8rem; }
.about__copy h2 { margin-bottom: 20px; }
.about__copy > p { color: var(--muted); margin-bottom: 16px; font-size: 1.03rem; }
.about__copy > p em { color: var(--teal); font-weight: 600; font-style: italic; }
.about__values { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 30px; }
.about__values li { display: flex; gap: 14px; align-items: flex-start; }
.about__values .ic { color: var(--teal); background: rgba(4, 93, 93, .09); border-radius: 50%; padding: 5px; width: 1.9em; height: 1.9em; margin-top: 2px; }
.about__values strong { display: block; color: var(--teal-deep); }
.about__values small { color: var(--muted); font-size: .9rem; }

/* ---------- Hygiene ---------- */
.hygiene { background: var(--cream); }
.hygiene__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 26px); perspective: 1400px; }
.hygiene-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px;
  box-shadow: var(--sh-md); transform-style: preserve-3d;
}
.hygiene-card__icon {
  display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 18px;
  background: linear-gradient(150deg, rgba(4, 93, 93, .1), rgba(4, 93, 93, .04));
  color: var(--teal); margin-bottom: 18px;
  transform: translateZ(26px);
}
.hygiene-card__icon .ic { width: 1.7em; height: 1.7em; }
.hygiene-card h3 { font-size: 1.2rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; color: var(--teal-deep); }
.hygiene-card p { color: var(--muted); font-size: .92rem; }

/* ---------- Care ---------- */
.care { background: var(--white); }
.care__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.6vw, 30px); }
.care-card {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-md); background: var(--white);
}
.care-card__head {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 28px; color: var(--white);
}
.care-card__head--pre { background: linear-gradient(135deg, var(--teal-soft), var(--teal)); }
.care-card__head--post { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
.care-card__head .ic { color: var(--yellow); width: 1.5em; height: 1.5em; }
.care-card__head h3 { color: var(--white); font-size: 1.35rem; }
.care-card ul { padding: 26px 28px; display: flex; flex-direction: column; gap: 14px; }
.care-card li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: .95rem; }
.care-card li .ic { color: var(--teal); margin-top: 3px; flex: none; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 26px); }
.review-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.review-card__head { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem; color: var(--white);
  background: linear-gradient(140deg, var(--teal-soft), var(--teal-deep));
}
.review-card__head strong { color: var(--teal-deep); display: block; line-height: 1.25; }
.review-card__head small { color: var(--muted); font-size: .78rem; }
.review-card__fb { margin-left: auto; color: #1877F2; opacity: .85; }
.review-card__fb .ic { width: 1.35em; height: 1.35em; }
.review-card__stars { color: #F2B01E; display: flex; gap: 2px; }
.review-card__stars .ic { width: 1em; height: 1em; }
.review-card p { color: var(--muted); font-size: .94rem; }
.reviews__more { text-align: center; margin-top: 40px; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.faq__intro h2 { margin-bottom: 14px; }
.faq__intro .section__sub { margin-bottom: 26px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--white); box-shadow: var(--sh-sm);
  transition: box-shadow .3s ease;
  overflow: hidden;
}
.faq-item[open] { box-shadow: var(--sh-md); border-color: rgba(4, 93, 93, .25); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-weight: 700; color: var(--teal-deep); font-size: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon { position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%; background: rgba(4, 93, 93, .08); transition: background .25s, transform .3s; }
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  background: var(--teal); border-radius: 2px; transition: transform .3s;
}
.faq-item__icon::before { width: 12px; height: 2.5px; }
.faq-item__icon::after { width: 2.5px; height: 12px; }
.faq-item[open] .faq-item__icon { background: var(--yellow); transform: rotate(90deg); }
.faq-item[open] .faq-item__icon::after { transform: scaleY(0); }
.faq-item__body { padding: 0 24px 22px; }
.faq-item__body p { color: var(--muted); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(10, 110, 108, .6), transparent 60%),
    linear-gradient(160deg, #05494C, var(--teal-deep) 55%, #022E31);
  color: var(--white); text-align: center; overflow: hidden;
}
.cta-band__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-band__inner { position: relative; }
.cta-band h2 { color: var(--white); font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 16px; }
.cta-band h2 em {
  background: linear-gradient(120deg, #FFFFFF 10%, var(--yellow) 60%, #FFE014);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-band p { color: rgba(255, 255, 255, .78); font-size: 1.08rem; margin-bottom: 32px; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- Footer ---------- */
.footer { background: #022A2D; color: rgba(255, 255, 255, .75); padding: clamp(56px, 7vw, 84px) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 48px; }
.footer__logo-link { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer__logo-link img { width: 56px; height: 56px; border-radius: 50%; }
.footer__logo-link span { font-family: var(--font-display); font-size: 1.45rem; color: var(--white); }
.footer__logo-link em { color: var(--yellow); }
.footer__brand > p { font-size: .93rem; margin-bottom: 20px; max-width: 34ch; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, .08); color: var(--white);
  transition: background .25s, transform .25s, color .25s;
}
.footer__social a:hover { background: var(--yellow); color: var(--teal-deep); transform: translateY(-3px); }
.footer__social .ic { width: 1.3em; height: 1.3em; }
.footer__col h4 { color: var(--white); font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a { display: block; padding: 6px 0; font-size: .93rem; transition: color .2s; }
.footer__col a:hover { color: var(--yellow); }
.footer__slot { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: .93rem; }
.footer__slot .ic { color: var(--yellow); }
.footer__muted { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: rgba(255, 255, 255, .5); padding: 5px 0; }
.footer__muted .ic { margin-top: 3px; flex: none; }
.footer__contact { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--white); font-size: 1rem; padding-bottom: 8px; }
.footer__contact .ic { color: var(--wa); width: 1.35em; height: 1.35em; }
.footer__contact:hover { color: var(--yellow); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0 28px; font-size: .82rem; color: rgba(255, 255, 255, .45);
}

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(2, 40, 42, .66);
  backdrop-filter: blur(6px);
  animation: fadeIn .3s ease;
}
.modal__card {
  position: relative; z-index: 1;
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: modalIn .38s cubic-bezier(.22, 1.1, .36, 1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(36px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, .92); color: var(--teal-deep);
  display: grid; place-items: center; box-shadow: var(--sh-sm);
  transition: transform .25s, background .25s;
}
.modal__close:hover { transform: rotate(90deg); background: var(--yellow); }
.modal__media { position: relative; flex: none; height: clamp(180px, 30vh, 260px); background: var(--teal-deep); }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__media-overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 48px 30px 20px;
  background: linear-gradient(transparent, rgba(2, 40, 42, .88));
  color: var(--white);
}
.modal__media-overlay h3 { color: var(--white); font-size: 1.9rem; }
.modal__media-overlay p { color: rgba(255, 255, 255, .8); font-size: .95rem; }
.modal__body { overflow-y: auto; padding: 26px 30px; display: flex; flex-direction: column; gap: 24px; }
.modal__prices { display: flex; flex-wrap: wrap; gap: 12px; }
.price-pill {
  flex: 1; min-width: 140px;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 12px 18px; text-align: center; background: var(--cream);
}
.price-pill strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--teal-deep); }
.price-pill span { font-size: .8rem; color: var(--muted); }
.price-pill--hl { background: linear-gradient(135deg, rgba(255, 242, 51, .22), rgba(255, 242, 51, .06)); border-color: rgba(214, 189, 0, .55); }
.price-pill--muted strong { color: var(--teal); }
.modal__section h4 {
  display: flex; align-items: center; gap: .6em;
  font-size: .84rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.modal__section > p { color: var(--muted); font-size: .97rem; }
.modal__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.modal__list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .93rem; }
.modal__list li .ic { color: var(--teal); margin-top: 3px; flex: none; }
.modal__list--dot { grid-template-columns: 1fr; }
.modal__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.modal__free { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; }
.modal__free-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.modal__free-grid span { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 600; color: var(--teal-ink); }
.modal__free-grid .ic { color: var(--teal); }
.modal__note {
  background: #FFF9E6; border: 1px solid #F5E1A4; border-radius: var(--r-sm);
  padding: 14px 18px; font-size: .88rem; color: #8A6D1A;
}
.modal__foot {
  flex: none; display: flex; gap: 12px; justify-content: flex-end;
  padding: 18px 30px; border-top: 1px solid var(--line);
  background: var(--white);
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #35DF74, var(--wa) 55%, var(--wa-deep));
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px -6px rgba(29, 168, 81, .6), 0 18px 36px -12px rgba(0, 30, 30, .35);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.wa-fab:hover { transform: scale(1.1) translateY(-2px); }
.wa-fab .ic { width: 30px; height: 30px; }
.wa-fab__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { from { transform: scale(1); opacity: .8; } to { transform: scale(1.65); opacity: 0; } }

/* ---------- Cursor glow (desktop) ---------- */
.cursor-glow {
  position: fixed; z-index: 200; pointer-events: none;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid rgba(4, 93, 93, .5);
  background: radial-gradient(circle, rgba(255, 242, 51, .22), transparent 65%);
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, border-color .25s ease, opacity .3s;
  opacity: 0;
  left: -100px; top: -100px;
  mix-blend-mode: multiply;
}
.cursor-glow.is-active { opacity: 1; }
.cursor-glow.is-hover { width: 56px; height: 56px; border-color: rgba(214, 189, 0, .8); }
@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }

/* Global tap / click glow — soft radiating light wherever the page is touched
   (works on desktop click and mobile touch) */
.touch-glow {
  position: fixed; z-index: 300; pointer-events: none;
  width: 14px; height: 14px; border-radius: 50%; left: 0; top: 0;
  transform: translate(-50%, -50%) scale(1);
  background: radial-gradient(circle, rgba(255, 246, 128, .5) 0%, rgba(255, 242, 51, .28) 35%, rgba(255, 242, 51, 0) 70%);
  animation: touchGlow .62s cubic-bezier(.22, 1, .36, 1) forwards;
  will-change: transform, opacity;
}
@keyframes touchGlow {
  0% { opacity: .75; transform: translate(-50%, -50%) scale(.9); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(16); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(56px); transition: opacity 1.05s ease, transform 1.05s cubic-bezier(.22, 1, .36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Tilt helper ---------- */
.tilt { transition: transform .18s ease-out, box-shadow .3s ease; }
.tilt.is-tilting { transition: box-shadow .3s ease; }
/* Show the pointer/touch shine while a card is being pressed on touch devices */
.svc-card.is-tilting::after { opacity: 1; }

/* Touch "pressure point" ripple — calm relaxation feedback on tap */
.press-ripple {
  position: absolute; width: 24px; height: 24px; border-radius: 50%;
  transform: translate(-50%, -50%) scale(.4);
  background: radial-gradient(circle, rgba(255, 242, 51, .5), rgba(255, 242, 51, 0) 70%);
  border: 2px solid rgba(255, 242, 51, .85);
  pointer-events: none; z-index: 4;
  animation: pressRipple .72s cubic-bezier(.22, 1, .36, 1) forwards;
}
@keyframes pressRipple {
  0% { opacity: .85; transform: translate(-50%, -50%) scale(.35); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(9); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .hygiene__grid { grid-template-columns: repeat(2, 1fr); }
  .offer__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .offer-card--featured { order: -1; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .booking__grid, .faq__grid, .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 560px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 66px; }

  /* Announcement scrolls as a single moving line on mobile */
  .announce { font-size: .8rem; justify-content: flex-start; padding: 8px 0; }
  .announce__track { animation: announce-marquee 15s linear infinite; will-change: transform; }
  .announce__item { padding: 0 26px; }
  .announce__item + .announce__item { display: inline-flex; }

  /* Time-slot bubbles stay on one line; note drops below */
  .hero__slots { flex-wrap: wrap; row-gap: 12px; }
  .hero__slots-note { flex-basis: 100%; width: 100%; }
  .nav__links {
    position: fixed; inset: calc(var(--nav-h)) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(3, 46, 49, .97); backdrop-filter: blur(16px);
    padding: 18px 24px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transform: translateY(-130%); transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    z-index: -1;
  }
  .nav.is-open .nav__links { transform: none; }
  .nav__links a { color: rgba(255, 255, 255, .9) !important; font-size: 1.05rem; padding: 14px 12px; }
  .nav__wa-mobile { display: inline-flex !important; align-items: center; gap: .6em; color: var(--yellow) !important; }
  .nav__wa { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .hero { text-align: left; }
  .hero__card-float--offer { right: 6px; top: -16px; }
  .hero__card-float--home { left: 6px; bottom: -16px; }

  .care__grid { grid-template-columns: 1fr; }
  .field-row { flex-direction: column; gap: 18px; }
  .modal { padding: 0; align-items: end; }
  .modal__card {
    width: 100%; max-height: 92vh;
    border-radius: 24px 24px 0 0;
    animation-name: sheetIn;
  }
  @keyframes sheetIn { from { transform: translateY(60%); opacity: .6; } to { transform: none; opacity: 1; } }
  .modal__cols { grid-template-columns: 1fr; }
  .modal__list { grid-template-columns: 1fr; }
  .modal__foot { flex-direction: column-reverse; }
  .modal__foot .btn { width: 100%; }
  .cta-band__actions .btn { width: 100%; max-width: 380px; }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 36px); }
  .nav__inner { gap: 10px; }
  .nav__brand { gap: 8px; }
  .nav__logo { width: 38px; height: 38px; }
  .nav__name { font-size: 1.05rem; }
  .nav__actions { gap: 8px; }
  .nav__actions .btn--sm { padding: 10px 15px; font-size: .8rem; }
  .nav__burger { padding: 8px 6px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .hygiene__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
  .hero__cta .btn { width: 100%; }
  .hero__copy .eyebrow { font-size: .68rem; letter-spacing: .06em; margin-bottom: 14px; }
  .hero__copy .eyebrow--capsule { font-size: .64rem; letter-spacing: .05em; padding: 7px 14px; }
  .hero__copy .eyebrow--capsule .ic--massage { width: 1.45em; height: 1.1em; }
  .hero__slots { gap: 7px; }
  .slot-chip { padding: 8px 11px; font-size: .76rem; gap: .35em; }
  .freestrip { padding: 12px 0; }
  .freestrip__group span { padding: 0 13px; font-size: .82rem; gap: .45em; }
  .freestrip::before, .freestrip::after { width: 42px; }
  .modal__free-grid { grid-template-columns: 1fr; }
  .wa-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .hero__card-float { padding: 10px 14px; }
  .hero__card-float strong { font-size: .88rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .freestrip__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .freestrip__group[aria-hidden="true"] { display: none; }
  .announce { justify-content: center; padding: 8px 16px; }
  .announce__track { animation: none; }
  .announce__item { white-space: normal; padding: 0; }
  .announce__item + .announce__item { display: none; }
}
