/* ==========================================================================
   [BUSINESS NAME] — Design System
   A warm, grounded wellness aesthetic built around the vocabulary massage
   therapists already use: pressure, breath, rhythm. The recurring "pressure
   scale" motif (light / medium / firm) appears on every service card, in
   the hero, and in the footer divider — it is the one signature device.
   ========================================================================== */

:root {
  /* Color */
  --bg:            #EFEAE1; /* warm greige, not stock cream */
  --bg-alt:        #FBF9F5; /* warm near-white for cards */
  --bg-sunk:       #E4DDCE; /* recessed panels */
  --ink:           #23301E; /* deep pine, near-black */
  --ink-soft:      #4B5641; /* body text on light */
  --sage:          #7C8A6E; /* mid sage */
  --sage-deep:     #3C4A34; /* dark green section bg */
  --sage-deeper:   #2A3524;
  --accent:        #A85D72; /* dusty rose — signature CTA color, warmer/softer for a beauty brand */
  --accent-deep:   #7D3E52;
  --accent-tint:   #F4E4E9;
  --gold:          #A9834F; /* muted brass, ratings only */
  --whatsapp:      #25D366; /* WhatsApp brand green — used only for the WhatsApp CTA */
  --whatsapp-deep: #1DA851;
  --line:          #D9D1BE;
  --line-deep:     rgba(255,255,255,0.16);
  --white:         #FFFFFF;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 3px rgba(35,48,30,0.08);
  --shadow-md: 0 8px 24px rgba(35,48,30,0.10);
  --shadow-lg: 0 20px 48px rgba(35,48,30,0.16);

  --container: 1180px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0 0 0.5em; color: var(--ink); line-height: 1.15; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* Visible focus states everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--white);
  padding: 0.75rem 1.25rem; z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px; background: currentColor; display: inline-block;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }
.section-head { max-width: 640px; margin-bottom: var(--space-4); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-deep); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-on-dark { background: var(--white); color: var(--sage-deeper); }
.btn-on-dark:hover { background: var(--bg-alt); }
.btn-outline-on-dark { background: transparent; color: var(--white); border-color: var(--line-deep); }
.btn-outline-on-dark:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.88rem; }
.btn-block { width: 100%; }
.btn-whatsapp { background: var(--whatsapp); color: white; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover { background: var(--whatsapp-deep); box-shadow: var(--shadow-md); }
.btn-whatsapp svg { flex: 0 0 auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(239, 234, 225, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: conic-gradient(from 200deg, var(--sage), var(--accent), var(--sage));
  display: inline-flex; flex: 0 0 auto;
}
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: 0.96rem; font-weight: 500; color: var(--ink-soft); transition: color .15s; position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--accent);
}
.nav-cta { margin-left: 0.5rem; }
.nav-toggle {
  display: none; background: none; border: none; padding: 0.4rem;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; top: var(--header-h, 68px); left: 0; right: 0; bottom: 0; background: var(--bg-alt);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 1rem 1.5rem calc(2rem + env(safe-area-inset-bottom)); transform: translateY(-8px);
    opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 0.9rem 0; width: 100%; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-cta { margin: 1rem 0 0; width: 100%; }
  .nav-cta .btn { width: 100%; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 1rem 1.5rem 0; max-width: var(--container); margin: 0 auto;
  font-size: 0.86rem; color: var(--ink-soft);
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--accent-deep); text-decoration: underline; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; color: var(--line); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-5) 0 var(--space-6);
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-5);
  align-items: center;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.8rem 0 2rem; }
.hero-trust { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; }
.trust-item svg { flex: 0 0 auto; color: var(--accent); }

.hero-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; background: linear-gradient(160deg, #C9B99C, #8A9A7E 60%, #4B5641);
  box-shadow: var(--shadow-lg);
}
.hero-visual .photo-label {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1.5rem;
  color: rgba(255,255,255,0.92); font-size: 0.85rem; background: linear-gradient(0deg, rgba(35,48,30,.55), transparent 45%);
}
.hero-breath {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.hero-breath .ring {
  width: 62%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(0.86); opacity: 0.55; }
  50% { transform: scale(1.04); opacity: 0.95; }
}

/* Pressure scale — signature device */
.pressure-scale { display: inline-flex; align-items: center; gap: 0.6rem; }
.pressure-scale .bars { display: inline-flex; gap: 3px; align-items: flex-end; height: 16px; }
.pressure-scale .bars i { display: block; width: 5px; background: var(--line); border-radius: 2px; }
.pressure-scale .bars i:nth-child(1) { height: 40%; }
.pressure-scale .bars i:nth-child(2) { height: 68%; }
.pressure-scale .bars i:nth-child(3) { height: 100%; }
.pressure-scale.level-light .bars i:nth-child(1) { background: var(--accent); }
.pressure-scale.level-medium .bars i:nth-child(1),
.pressure-scale.level-medium .bars i:nth-child(2) { background: var(--accent); }
.pressure-scale.level-firm .bars i { background: var(--accent); }
.pressure-scale .label { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Sections ---------- */
.section { padding: var(--space-6) 0; }
.section-alt { background: var(--bg-alt); }
.section-sunk { background: var(--bg-sunk); }
.section-dark { background: var(--sage-deeper); color: var(--bg-alt); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-dark .eyebrow { color: #D9C6CC; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.9rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.icon-tile {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent-deep); margin-bottom: 1rem;
}

/* Service card */
.service-card { display: flex; flex-direction: column; gap: 0.9rem; }
.service-card .thumb {
  aspect-ratio: 16/10; border-radius: var(--radius-sm); overflow: hidden;
  background: linear-gradient(135deg, var(--sage), var(--bg-sunk));
  display: flex; align-items: flex-end; padding: 0.9rem;
  color: rgba(255,255,255,0.9); font-size: 0.78rem;
}
.service-card .meta-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.service-card .price { font-family: var(--font-display); font-size: 1.3rem; color: var(--accent-deep); }
.service-card .durations { display: flex; gap: 0.5rem; flex-wrap: wrap; font-size: 0.82rem; }
.chip { background: var(--bg-sunk); border-radius: 999px; padding: 0.3rem 0.75rem; color: var(--ink-soft); font-weight: 600; }
.service-card .benefits { display: flex; flex-wrap: wrap; gap: 0.4rem 0.8rem; font-size: 0.88rem; color: var(--ink-soft); }
.service-card .benefits li::before { content: "✓ "; color: var(--sage-deep); font-weight: 700; }
.service-card footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; padding-top: 0.6rem; }

/* Team card */
.team-card .thumb { aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1rem; background: linear-gradient(150deg, var(--sage), var(--bg-sunk)); display:flex; align-items:flex-end; padding: .9rem; color: rgba(255,255,255,.9); font-size:.78rem;}
.team-card .role { color: var(--accent-deep); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; }
.team-card .tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.7rem 0; }
.team-card .tags span { background: var(--bg-sunk); border-radius: 999px; padding: 0.25rem 0.7rem; font-size: 0.78rem; color: var(--ink-soft); }

/* Review card */
.review-card { display: flex; flex-direction: column; gap: 0.8rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.review-card .who { display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }

/* Case study */
.case-card { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; overflow: hidden; }
.case-card .thumb { background: linear-gradient(150deg, var(--sage), var(--bg-sunk)); min-height: 220px; display:flex; align-items:flex-end; padding:1rem; color:rgba(255,255,255,.9); font-size:.8rem; }
.case-card .body { padding: 1.9rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 760px) { .case-card { grid-template-columns: 1fr; } }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; counter-reset: step; }
.step { text-align: center; }
.step .num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--sage-deeper); color: var(--white);
  display: grid; place-items: center; margin: 0 auto 0.8rem; font-family: var(--font-display); font-size: 1rem;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Accordion (FAQ) ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item summary {
  list-style: none; cursor: pointer; padding: 1.3rem 0.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-size: 1.02rem;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary .plus {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; transition: transform .2s ease;
}
.accordion-item[open] summary .plus { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: white; }
.accordion-item .a-body { padding: 0 0.2rem 1.3rem; color: var(--ink-soft); max-width: 68ch; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.field .hint { font-size: 0.8rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  padding: 0.85rem 1rem; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--bg-alt); font-family: inherit; font-size: 1rem; color: var(--ink);
}
.field input:invalid[data-touched="true"], .field textarea:invalid[data-touched="true"] { border-color: #B14848; }
.field .error-msg { display: none; font-size: 0.82rem; color: #B14848; }
.field[data-invalid="true"] .error-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.form-success { background: var(--accent-tint); border-radius: var(--radius-sm); padding: 1rem 1.2rem; color: var(--accent-deep); font-weight: 600; display: none; }

/* ---------- Booking widget ---------- */
.booking-shell { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.booking-progress { display: flex; background: var(--bg-sunk); }
.booking-progress .p-step { flex: 1; text-align: center; padding: 0.9rem 0.4rem; font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); border-bottom: 3px solid transparent; letter-spacing: .02em;}
.booking-progress .p-step.active { color: var(--accent-deep); border-color: var(--accent); background: var(--bg-alt); }
.booking-progress .p-step.done { color: var(--sage-deep); }
.booking-body { padding: 2rem; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
@media (max-width: 620px) { .option-grid { grid-template-columns: 1fr; } }
.option-card {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem;
  cursor: pointer; text-align: left; background: var(--bg-alt); transition: border-color .15s, background .15s;
}
.option-card:hover { border-color: var(--sage); }
.option-card[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-tint); }
.option-card .oc-title { font-weight: 700; display: flex; justify-content: space-between; gap: .6rem; }
.option-card .oc-sub { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.2rem; }
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
@media (max-width: 560px) { .time-grid { grid-template-columns: repeat(3, 1fr); } }
.time-slot { padding: 0.6rem 0.4rem; border-radius: 8px; border: 1.5px solid var(--line); text-align: center; font-size: 0.88rem; font-weight: 600; background: var(--bg-alt); }
.time-slot[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-deep); }
.booking-footer { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 2rem; border-top: 1px solid var(--line); }
.booking-summary { background: var(--bg-sunk); border-radius: var(--radius-sm); padding: 1.2rem; font-size: 0.92rem; }
.booking-summary dt { color: var(--ink-soft); font-size: 0.78rem; text-transform: uppercase; letter-spacing: .04em; margin-top: .6rem; }
.booking-summary dt:first-child { margin-top: 0; }
.booking-summary dd { margin: 0.1rem 0 0; font-weight: 600; }

/* ---------- Pressure divider (used on massage/reflexology treatment cards) ---------- */
.pressure-divider { display: flex; justify-content: center; gap: 5px; padding: 2.4rem 0 0; }
.pressure-divider i { width: 5px; border-radius: 3px; background: var(--sage); opacity: .5; }
.pressure-divider i:nth-child(odd) { height: 10px; }
.pressure-divider i:nth-child(even) { height: 20px; }
.pressure-divider i:nth-child(3n) { height: 28px; opacity: .85; background: var(--accent); }

/* ---------- Sparkle divider (site-wide signature, echoes the ✨ in the brand name) ---------- */
.sparkle-divider {
  display: flex; justify-content: center; gap: 1.1rem; padding: 2.4rem 0 0;
  font-size: 1.1rem; opacity: .8; letter-spacing: .3em;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--sage-deeper); color: rgba(255,255,255,0.82); padding-top: var(--space-5); }
.site-footer a:hover { color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.4rem; padding-bottom: var(--space-5); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: white; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-grid ul li { margin-bottom: 0.6rem; font-size: 0.92rem; }
.footer-brand .brand { color: white; }
.footer-brand p { max-width: 32ch; margin-top: 1rem; color: rgba(255,255,255,0.7); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-deep); display: grid; place-items: center; }
.footer-bottom {
  border-top: 1px solid var(--line-deep); padding: 1.4rem 0; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 0.8rem; font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-trust { font-size: 0.8rem; color: rgba(255,255,255,0.55); max-width: 60ch; margin: 0 auto; text-align:center; padding-bottom: 1.4rem;}

/* ---------- Sticky mobile CTA ---------- */
.mobile-sticky {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--bg-alt); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom));
}
.mobile-sticky-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
.mobile-sticky a { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; font-size: 0.72rem; font-weight: 700; padding: 0.5rem 0.2rem; border-radius: 10px; color: var(--ink-soft); }
.mobile-sticky a.primary { background: var(--whatsapp); color: white; }

/* ---------- Category badges / coming soon / gallery / specials ---------- */
.badge-soon {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--accent-deep);
  background: var(--accent-tint); padding: .3rem .7rem; border-radius: 999px;
}
.category-tag {
  display: inline-block; font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--sage-deep);
}
.treatment-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid var(--line);
}
.treatment-row:last-child { border-bottom: none; }
.treatment-row .t-name { font-weight: 600; }
.treatment-row .t-price { color: var(--accent-deep); font-family: var(--font-display); white-space: nowrap; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden;
  background: linear-gradient(150deg, var(--sage), var(--bg-sunk));
  display: flex; align-items: flex-end; padding: .6rem;
  color: rgba(255,255,255,.9); font-size: .72rem;
}
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.6rem; }
.gallery-filters button {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1rem; font-size: .85rem; font-weight: 600; color: var(--ink-soft);
}
.gallery-filters button[aria-pressed="true"] { background: var(--accent); color: white; border-color: var(--accent); }

.special-card { border: 1px dashed var(--line); }
.special-card .badge-soon { margin-bottom: .8rem; }
@media (max-width: 760px) {
  .mobile-sticky { display: block; }
  body { padding-bottom: 78px; }
}

/* ---------- Misc pages ---------- */
.hero-simple { padding: var(--space-5) 0 var(--space-4); text-align: center; }
.hero-simple .lede { margin: 0 auto; }
.stat-row { display: flex; gap: var(--space-5); flex-wrap: wrap; justify-content: center; text-align: center; }
.stat-row .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--accent-deep); }
.stat-row .lbl { font-size: 0.85rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .05em; }

.map-embed {
  aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line);
  background: repeating-linear-gradient(45deg, var(--bg-sunk), var(--bg-sunk) 10px, var(--bg-alt) 10px, var(--bg-alt) 20px);
  display: grid; place-items: center; color: var(--ink-soft); text-align:center; padding: 1rem;
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal-in { opacity: 1; transform: none; }

.consent-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
  background: var(--ink); color: rgba(255,255,255,0.92); border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem; display: flex; gap: 1rem; align-items: center; justify-content: space-between;
  flex-wrap: wrap; box-shadow: var(--shadow-lg); max-width: 720px; margin: 0 auto;
}
.consent-bar p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.9rem; flex: 1 1 260px; }
.consent-bar .actions { display: flex; gap: 0.6rem; }
.consent-bar[hidden] { display: none; } /* wins over .consent-bar's own display:flex once JS sets [hidden] */

.error-shell { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: var(--space-6) 0; }
.error-shell .code { font-family: var(--font-display); font-size: 5.5rem; color: var(--accent); line-height: 1; }

.policy-body h2 { margin-top: 2.2rem; font-size: 1.35rem; }
.policy-body ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1em; }
.policy-body ul li { color: var(--ink-soft); margin-bottom: .4em; }

.cta-banner {
  background: linear-gradient(135deg, var(--accent-deep), var(--sage-deeper));
  border-radius: var(--radius-lg); padding: var(--space-5); text-align: center; color: white;
}
.cta-banner h2 { color: white; }
.cta-banner p { color: rgba(255,255,255,0.85); }
