/* ===========================================================
   New Energy Spa — styles.css
   Identidad "Lujo orgánico andino": esmeralda profunda, oro
   suave y marfil cálido. Tipografía editorial (Playfair Display)
   + sans refinada (Montserrat) + acento serif (Cormorant).
   Header con contraste garantizado (scrim sobre el hero,
   sólido al hacer scroll). WCAG 2.1 AA.
   =========================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Paleta premium — contenida: el esmeralda ancla arriba/abajo,
     el resto de la página respira en tonos claros casi continuos. */
  --emerald:      #14503E;   /* primario */
  --emerald-deep: #0A3528;   /* secciones profundas (hero + footer, nada más) */
  --emerald-700:  #0C3F30;
  --gold:         #BE9A63;   /* acento — reservado a "reservar" y detalles puntuales */
  --gold-soft:    #DBC59A;
  --gold-deep:    #A8854B;
  --ivory:        #FAF8F4;   /* fondo principal */
  --warm-gray:    #F2EEE6;   /* fondos secundarios, casi al ras del marfil */
  --ebony:        #1A1A1A;   /* texto principal */
  --soft-gray:    #6B6B6B;   /* texto secundario */
  --line:         #E7E1D5;   /* hairlines */
  --line-gold:    rgba(190,154,99,.4);

  /* Roles */
  --bg:        var(--ivory);
  --ink:       var(--ebony);
  --muted:     #625D54;      /* AA sobre marfil (~6:1) */
  --on-dark:   #F3EEE5;
  --on-dark-muted: #C8C2B4;

  /* Tipografía */
  --serif:  "Playfair Display", Georgia, "Times New Roman", serif;
  --accent: "Cormorant Garamond", Georgia, serif;
  --sans:   "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Métrica — más aire entre bloques */
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 14px rgba(15,76,58,.05);
  --shadow:    0 16px 40px -22px rgba(10,53,40,.22);
  --shadow-lg: 0 40px 90px -40px rgba(10,53,40,.4);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Tipografía base ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--gold-deep); }
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow--gold { color: var(--gold-deep); }
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before { background: var(--gold-soft); }

.lede { font-size: 1.12rem; color: var(--muted); }
.amp { font-family: var(--accent); font-style: italic; color: var(--gold-deep); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 140px); }

/* ---------- Accesibilidad ---------- */
.skip-link {
  position: fixed; top: 10px; left: 50%; translate: -50% -160%;
  z-index: 999; background: var(--emerald); color: #fff;
  padding: 10px 18px; border-radius: 999px; font-size: .85rem; font-weight: 600;
  transition: translate .25s var(--ease);
}
.skip-link:focus { translate: -50% 0; outline: 2px solid var(--gold); outline-offset: 2px; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 2px; }
.on-dark :focus-visible, .hero :focus-visible, .footer :focus-visible { outline-color: var(--gold-soft); }

/* ===========================================================
   BOTONES
   =========================================================== */
.btn {
  --bg-btn: var(--emerald);
  --fg-btn: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 30px; min-height: 48px;
  background: var(--bg-btn); color: var(--fg-btn);
  border: 1px solid var(--bg-btn); border-radius: var(--radius);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; isolation: isolate;
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn--primary { --bg-btn: var(--emerald); --fg-btn: #fff; }
.btn--primary:hover { --bg-btn: var(--emerald-deep); }
.btn--gold { --bg-btn: var(--gold); --fg-btn: var(--emerald-deep); border-color: var(--gold); }
.btn--gold:hover { --bg-btn: var(--gold-soft); }
.btn--outline { background: transparent; color: var(--emerald); border-color: var(--emerald); }
.btn--outline:hover { background: var(--emerald); color: #fff; }
.btn--ghost-light { background: transparent; color: var(--on-dark); border-color: rgba(243,238,229,.5); }
.btn--ghost-light:hover { background: rgba(243,238,229,.12); border-color: var(--on-dark); }

/* Enlace de texto — para la acción secundaria junto a un CTA dorado */
.btn--text { background: transparent; border: none; padding: 15px 4px; text-underline-offset: 4px; color: var(--on-dark); }
.btn--text.btn--lg { padding: 18px 4px; }
.btn--text:hover { text-decoration: underline; box-shadow: none; transform: none; background: transparent; }
.on-light .btn--text, .btn--text.on-light { color: var(--emerald); }
.btn--sm { padding: 11px 20px; min-height: 42px; font-size: .74rem; }
.btn--lg { padding: 18px 38px; min-height: 56px; font-size: .86rem; }
.btn--block { width: 100%; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn.is-loading { color: transparent !important; pointer-events: none; }
.btn.is-loading::after {
  content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid currentColor; border-top-color: transparent; color: inherit;
  animation: spin .7s linear infinite;
}
.btn--primary.is-loading::after, .btn--gold.is-loading::after { color: #fff; }
.btn--gold.is-loading::after { color: var(--emerald-deep); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===========================================================
   HEADER  (contraste garantizado)
   =========================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  /* Scrim degradado: garantiza legibilidad del texto claro sobre el hero */
  background: linear-gradient(to bottom, rgba(10,53,40,.78), rgba(10,53,40,0));
  border-bottom: 1px solid transparent;
  color: var(--on-dark);
}
.nav.is-scrolled {
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* Marca */
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; }
.brand__mark { width: 38px; height: 38px; color: var(--gold); flex: none; }
.nav.is-scrolled .brand__mark { color: var(--emerald); }
.brand__mark svg { width: 100%; height: 100%; }
.brand__wrap { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand__name { font-family: var(--serif); font-size: clamp(1.02rem, 4vw, 1.28rem); font-weight: 600; letter-spacing: .01em; white-space: nowrap; }
.brand__name em { font-style: italic; font-weight: 400; }
.brand__tag { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; opacity: .8; white-space: nowrap; }

/* Links */
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a {
  font-size: .82rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  position: relative; padding-block: 6px; color: inherit;
}
.nav__links > a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links > a:hover::after, .nav__links > a.is-active::after { width: 100%; }
.nav__drawer-foot { display: none; }

/* CTA derecha */
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__locales {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; letter-spacing: .04em; opacity: .92;
}
.nav__locales .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.25); flex: none; }

/* Toggle móvil */
.nav__toggle { display: none; width: 46px; height: 46px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 24px; height: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.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); }

/* Toggle de idioma */
.lang { display: inline-flex; border: 1px solid currentColor; border-radius: 999px; overflow: hidden; opacity: .9; }
.lang button { padding: 5px 11px; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: inherit; transition: background .25s, color .25s; }
.lang button.is-on { background: var(--gold); color: var(--emerald-deep); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; min-height: min(92svh, 780px); display: flex; align-items: center; color: var(--on-dark); padding-block: calc(var(--header-h) + 40px) 56px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__veil { position: absolute; inset: 0; background:
  linear-gradient(to top, rgba(10,53,40,.86) 0%, rgba(10,53,40,.38) 55%, rgba(10,53,40,.5) 100%),
  radial-gradient(120% 90% at 20% 100%, rgba(10,53,40,.5), transparent 60%); }
.hero--noimg { background: radial-gradient(120% 120% at 80% 0%, var(--emerald) 0%, var(--emerald-deep) 60%); }
.hero--noimg .hero__bg { display: none; }
.hero__inner { position: relative; max-width: 720px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero__title { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-block: 22px 24px; max-width: 15ch; }
.hero__title em { color: var(--gold-soft); }
.hero__lede { font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 50ch; color: var(--on-dark-muted); }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 28px; margin-top: 36px; }
.hero__scroll { position: absolute; left: 50%; bottom: 22px; translate: -50% 0; width: 26px; height: 42px; border: 1px solid rgba(243,238,229,.5); border-radius: 999px; display: grid; place-items: start center; padding-top: 8px; }
.hero__scroll span { width: 3px; height: 8px; border-radius: 2px; background: var(--gold-soft); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translateY(0)} 30%{opacity:1} 100%{opacity:0;transform:translateY(14px)} }

/* ---------- Barra de cifras (bajo el hero, en calma) ---------- */
.stats-bar { background: var(--bg); border-bottom: 1px solid var(--line); }
.stats-bar__list { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(32px, 6vw, 76px); padding-block: 28px; }
.stats-bar__list li { display: flex; align-items: baseline; gap: 8px; }
.stats-bar__list strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--emerald); }
.stats-bar__list span { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ===========================================================
   SECCIÓN: ENCABEZADOS
   =========================================================== */
.sec-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px 56px; align-items: end; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head__h { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.sec-head__note { color: var(--muted); font-size: 1.02rem; max-width: 42ch; }
.sec-head--light .sec-head__h, .sec-head--light .eyebrow { color: var(--on-dark); }

/* ---------- Filosofía ---------- */
.philosophy { background: var(--bg); }
.philosophy__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 80px); }
.philosophy__h { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-top: 18px; }
.philosophy__body > p { margin-top: 18px; }
.philosophy__body > .lede { color: var(--ink); }
.pillars { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.pillars li { background: var(--bg); padding: 22px 24px; display: flex; flex-direction: column; gap: 6px; }
.pillars__k { font-family: var(--serif); font-size: 1.12rem; color: var(--emerald); }
.pillars__v { font-size: .92rem; color: var(--muted); }

/* ---------- Rituales ---------- */
.rituals { background: var(--warm-gray); }
.rituals__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ritual { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px 32px; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); overflow: hidden; }
.ritual::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.ritual:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.ritual:hover::before { transform: scaleX(1); }
.ritual__num { font-family: var(--accent); font-style: italic; font-size: 2.2rem; color: var(--gold-deep); line-height: 1; }
.ritual h3 { font-size: 1.55rem; margin-top: 12px; }
.ritual__claim { font-family: var(--accent); font-style: italic; font-size: 1.18rem; color: var(--emerald); margin-top: 8px; }
.ritual p { color: var(--muted); margin-top: 14px; font-size: .96rem; }
.ritual__value { display: block; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .82rem; letter-spacing: .04em; color: var(--gold-deep); }
.ritual--feature { background: var(--emerald); color: var(--on-dark); border-color: var(--emerald); }
.ritual--feature h3, .ritual--feature .ritual__num { color: var(--gold-soft); }
.ritual--feature .ritual__claim { color: var(--gold-soft); }
.ritual--feature p { color: var(--on-dark-muted); }
.ritual--feature .ritual__value { color: var(--gold-soft); border-top-color: rgba(243,238,229,.2); }

/* ---------- Terapias ---------- */
.therapies { background: var(--bg); }
.therapy-tabs { display: none; }
.therapies__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.therapy-col__title { display: flex; align-items: center; gap: 14px; font-size: 1.2rem; color: var(--emerald); font-family: var(--serif); padding-bottom: 18px; margin-bottom: 6px; }
.therapy-col__title .line { width: 34px; height: 1px; background: var(--gold-deep); flex: none; }
.therapy-list li { padding: 18px 0; border-top: 1px solid var(--line); }
.therapy-list h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; letter-spacing: .01em; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.therapy-list p { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.price-chip { font-size: .72rem; font-weight: 600; letter-spacing: .06em; color: var(--gold-deep); background: var(--warm-gray); padding: 3px 9px; border-radius: 999px; flex: none; }

/* ---------- Paquetes ---------- */
.packages { background: var(--bg); }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pkg { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px; display: flex; flex-direction: column; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg__top h3 { font-size: 1.7rem; }
.pkg__sub { font-family: var(--accent); font-style: italic; font-size: 1.1rem; color: var(--muted); margin-top: 2px; }
.pkg__price { font-family: var(--serif); font-size: 3rem; font-weight: 500; color: var(--emerald); margin: 18px 0 4px; line-height: 1; }
.pkg__price .cur { font-size: 1.2rem; color: var(--gold-deep); vertical-align: super; margin-right: 4px; }
.pkg__desc { color: var(--muted); font-size: .95rem; }
.pkg__feats { margin: 22px 0 28px; display: grid; gap: 11px; }
.pkg__feats li { position: relative; padding-left: 24px; font-size: .92rem; }
.pkg__feats li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border: 1px solid var(--gold-deep); border-radius: 50%; }
.pkg .btn { margin-top: auto; }
.pkg--featured { background: var(--emerald); color: var(--on-dark); border-color: var(--emerald); box-shadow: var(--shadow); }
.pkg--featured .pkg__sub, .pkg--featured .pkg__desc { color: var(--on-dark-muted); }
.pkg--featured .pkg__price { color: var(--gold-soft); }
.pkg--featured .pkg__feats li::before { border-color: var(--gold-soft); }
.pkg__badge { position: absolute; top: -13px; left: 50%; translate: -50% 0; background: var(--gold); color: var(--emerald-deep); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }
.packages__foot { text-align: center; margin-top: 30px; font-size: .86rem; color: var(--muted); }

/* ---------- Cita / CTA ---------- */
.quote { background: var(--warm-gray); text-align: center; padding-block: clamp(56px, 7vw, 88px); position: relative; }
.quote__inner { position: relative; max-width: 720px; margin-inline: auto; }
.quote__text { font-family: var(--accent); font-style: italic; font-size: clamp(1.3rem, 3vw, 1.8rem); line-height: 1.4; color: var(--emerald); }
.quote__text::before { content: "— "; color: var(--gold-deep); }
.quote .btn { margin-top: 30px; }

/* ---------- Locales ---------- */
.locations { background: var(--bg); }
.locations__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.locations__info .sec-head__h { margin: 14px 0 18px; }
.locations__list { margin-top: 30px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.locations__list > div { background: var(--bg); padding: 16px 20px; display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: baseline; }
.locations__list dt { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.locations__list dd { font-size: .96rem; }
.locations__list a { border-bottom: 1px solid var(--line-gold); }
.locations__list a:hover { color: var(--emerald); }
.locations__social { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.locations__social a { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--line); padding: 10px 18px; border-radius: 999px; min-height: 42px; display: inline-flex; align-items: center; transition: border-color .25s, color .25s, background .25s; }
.locations__social a:hover { border-color: var(--emerald); color: var(--emerald); }

/* Tarjetas de sucursales */
.branches { margin-top: 26px; display: grid; gap: 14px; }
.branch { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px 20px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease); }
.branch:hover { border-color: var(--line-gold); box-shadow: var(--shadow-sm); }
.branch__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.branch__name { font-family: var(--serif); font-size: 1.2rem; color: var(--emerald); }
.branch__dist { font-size: .74rem; letter-spacing: .06em; color: var(--gold-deep); white-space: nowrap; }
.branch__addr { font-size: .9rem; color: var(--muted); margin-top: 4px; }
.branch__ref { font-size: .82rem; color: var(--muted); opacity: .85; }
.branch__actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.branch__actions a, .branch__actions button { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); transition: .25s; }
.branch__actions a:hover, .branch__actions button:hover { border-color: var(--emerald); color: var(--emerald); }
.geo-btn { font-size: .82rem; color: var(--emerald); border-bottom: 1px solid var(--line-gold); padding-bottom: 1px; }

.locations__map { position: relative; }
.locations__map iframe { width: 100%; height: 100%; min-height: 420px; border: 1px solid var(--line); border-radius: var(--radius-lg); filter: saturate(.85); }
.locations__card { position: absolute; left: 18px; bottom: 18px; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; display: inline-flex; align-items: center; gap: 10px; box-shadow: var(--shadow-sm); font-size: .84rem; font-weight: 600; }
.locations__card .dot { width: 9px; height: 9px; border-radius: 50%; background: #2faf6a; box-shadow: 0 0 0 3px rgba(47,175,106,.2); }
.locations__card.is-closed .dot { background: #c25b4a; box-shadow: 0 0 0 3px rgba(194,91,74,.2); }

/* ---------- Blog teaser ---------- */
.blogteaser { background: var(--warm-gray); }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 26px; }
.post-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--warm-gray); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__date { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.post-card__title { font-size: 1.32rem; }
.post-card__sum { color: var(--muted); font-size: .92rem; }
.post-card__more { margin-top: auto; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--emerald); display: inline-flex; gap: 6px; }
.post-card__more .arrow { transition: transform .3s var(--ease); }
.post-card:hover .post-card__more .arrow { transform: translateX(4px); }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tags span { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line-gold); padding: 3px 9px; border-radius: 999px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--emerald-deep); color: var(--on-dark); padding-top: clamp(56px, 8vw, 90px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.brand--light { color: var(--on-dark); }
.brand--light .brand__mark { color: var(--gold); }
.footer__tag { color: var(--on-dark-muted); font-size: .92rem; margin-top: 18px; max-width: 36ch; }
.footer__h { font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a, .footer ul li { color: var(--on-dark-muted); font-size: .92rem; transition: color .25s; }
.footer ul a:hover { color: var(--on-dark); }
.footer__legal { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; border-top: 1px solid rgba(243,238,229,.14); padding-block: 24px; font-size: .8rem; color: var(--on-dark-muted); }

/* ---------- WhatsApp flotante — burbuja simple, siempre igual ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .3s var(--ease); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover { transform: scale(1.08); }
@media (max-width: 620px) {
  .wa-float { right: 14px; bottom: 14px; width: 46px; height: 46px; }
  .wa-float svg { width: 23px; height: 23px; }
}

/* ===========================================================
   REVEAL ON SCROLL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ===========================================================
   WIZARD DE RESERVA (modal)
   =========================================================== */
.booking { position: fixed; inset: 0; z-index: 200; display: none; }
.booking.is-open { display: block; }
.booking__overlay { position: absolute; inset: 0; background: rgba(10,53,40,.55); backdrop-filter: blur(4px); opacity: 0; transition: opacity .35s var(--ease); }
.booking.is-open .booking__overlay { opacity: 1; }
.booking__dialog {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: min(720px, 94vw); max-height: min(92vh, 880px); overflow: hidden;
  background: var(--bg); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
  opacity: 0; scale: .97; transition: opacity .35s var(--ease), scale .35s var(--ease);
}
.booking.is-open .booking__dialog { opacity: 1; scale: 1; }
.booking__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 26px; border-bottom: 1px solid var(--line); background: var(--bg); }
.booking__title { font-family: var(--serif); font-size: 1.3rem; }
.booking__title em { font-style: italic; color: var(--gold-deep); }
.booking__close { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; color: var(--muted); transition: background .25s, color .25s; }
.booking__close:hover { background: var(--warm-gray); color: var(--ink); }

/* Barra de pasos */
.steps { display: flex; gap: 6px; padding: 16px 26px; border-bottom: 1px solid var(--line); background: var(--warm-gray); }
.steps__item { flex: 1; display: flex; flex-direction: column; gap: 7px; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.steps__bar { height: 3px; border-radius: 2px; background: var(--line); overflow: hidden; }
.steps__bar i { display: block; height: 100%; width: 0; background: var(--gold); transition: width .4s var(--ease); }
.steps__item.is-done .steps__bar i, .steps__item.is-active .steps__bar i { width: 100%; }
.steps__item.is-active { color: var(--emerald); font-weight: 600; }
.steps__item.is-done { color: var(--gold-deep); }

.booking__body { padding: 26px; overflow-y: auto; }
.booking__panel { animation: fadeUp .4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.panel-h { font-family: var(--serif); font-size: 1.45rem; margin-bottom: 4px; }
.panel-sub { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }

/* Selección de servicio/local (cards) */
.choice-grid { display: grid; gap: 12px; }
.choice {
  text-align: left; width: 100%; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.choice:hover { border-color: var(--line-gold); box-shadow: var(--shadow-sm); }
.choice.is-sel { border-color: var(--emerald); background: rgba(15,76,58,.04); box-shadow: 0 0 0 1px var(--emerald) inset; }
.choice__main { display: flex; flex-direction: column; gap: 3px; }
.choice__name { font-family: var(--serif); font-size: 1.12rem; color: var(--emerald); }
.choice__meta { font-size: .85rem; color: var(--muted); }
.choice__side { text-align: right; flex: none; }
.choice__price { font-family: var(--serif); font-size: 1.2rem; color: var(--gold-deep); }
.choice__price small { font-size: .68rem; color: var(--muted); display: block; letter-spacing: .08em; text-transform: uppercase; }
.choice__dist { font-size: .76rem; color: var(--gold-deep); font-weight: 600; }
.svc-cat-label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin: 18px 0 8px; }
.svc-cat-label:first-child { margin-top: 0; }

/* Selector de duración */
.dur-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.dur-row .pill { border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: .85rem; font-weight: 500; min-height: 42px; transition: .25s; }
.dur-row .pill.is-sel { background: var(--emerald); color: #fff; border-color: var(--emerald); }

/* Calendario */
.cal { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.cal__head { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: var(--warm-gray); }
.cal__head strong { font-family: var(--serif); font-size: 1.05rem; text-transform: capitalize; }
.cal__nav { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 1.1rem; transition: background .2s; }
.cal__nav:hover:not(:disabled) { background: var(--bg); }
.cal__nav:disabled { opacity: .3; cursor: not-allowed; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; padding: 10px; }
.cal__dow { text-align: center; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 6px 0; }
.cal__day { aspect-ratio: 1; border-radius: var(--radius); font-size: .9rem; display: grid; place-items: center; transition: background .2s, color .2s; }
.cal__day:hover:not(:disabled) { background: var(--warm-gray); }
.cal__day.is-sel { background: var(--emerald); color: #fff; font-weight: 600; }
.cal__day.is-today { box-shadow: 0 0 0 1px var(--gold) inset; }
.cal__day:disabled { color: #c4bdb0; cursor: not-allowed; }
.cal__day.is-empty { visibility: hidden; }

/* Horas */
.times { margin-top: 20px; }
.times__label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.times__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 8px; }
.time-slot { border: 1px solid var(--line); border-radius: var(--radius); padding: 11px 0; text-align: center; font-size: .88rem; font-variant-numeric: tabular-nums; transition: .2s; }
.time-slot:hover:not(:disabled) { border-color: var(--emerald); color: var(--emerald); }
.time-slot.is-sel { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.time-slot:disabled { opacity: .35; text-decoration: line-through; cursor: not-allowed; }
.times__empty { color: var(--muted); font-size: .9rem; padding: 14px 0; }

/* Formulario */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 15px; background: var(--bg); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(15,76,58,.12); }
.field textarea { resize: vertical; min-height: 84px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field.has-error input { border-color: #c25b4a; }
.field__err { color: #c25b4a; font-size: .78rem; margin-top: 6px; display: none; }
.field.has-error .field__err { display: block; }

/* Resumen */
.summary { background: var(--warm-gray); border-radius: var(--radius-lg); padding: 18px 20px; margin-bottom: 20px; display: grid; gap: 10px; }
.summary__row { display: flex; justify-content: space-between; gap: 14px; font-size: .92rem; }
.summary__row dt { color: var(--muted); }
.summary__row dd { font-weight: 600; text-align: right; }
.summary__total { border-top: 1px solid var(--line); padding-top: 12px; }
.summary__total dd { font-family: var(--serif); font-size: 1.3rem; color: var(--emerald); }

.terms { font-size: .82rem; color: var(--muted); background: rgba(201,169,110,.08); border: 1px solid var(--line-gold); border-radius: var(--radius); padding: 12px 14px; margin-bottom: 18px; }

/* Footer del modal */
.booking__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 26px; border-top: 1px solid var(--line); background: var(--bg); }
.booking__error { color: #c25b4a; font-size: .86rem; display: none; }
.booking__error.is-on { display: block; }

/* Éxito */
.success { text-align: center; padding: 10px 0 6px; }
.success__check { width: 78px; height: 78px; border-radius: 50%; background: rgba(15,76,58,.08); border: 1px solid var(--line-gold); display: grid; place-items: center; margin: 0 auto 20px; color: var(--emerald); }
.success__check svg { width: 38px; height: 38px; }
.success h3 { font-size: 1.8rem; }
.success__code { display: inline-block; margin: 16px 0; font-family: var(--serif); font-size: 1.5rem; letter-spacing: .1em; color: var(--gold-deep); border: 1px dashed var(--line-gold); border-radius: var(--radius); padding: 8px 22px; }
.success__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.success__note { color: var(--muted); font-size: .9rem; margin-top: 18px; }

/* ===========================================================
   PÁGINAS DE BLOG (blog.html / post.html)
   =========================================================== */
.page-top { padding-top: calc(var(--header-h) + 60px); padding-bottom: 20px; background: var(--bg); }
.page-top .eyebrow { margin-bottom: 14px; }
.page-top h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; }
.page-top p { color: var(--muted); margin-top: 14px; max-width: 56ch; }
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--gold-deep); }
.breadcrumb a:hover { text-decoration: underline; }

.article { padding-block: 40px clamp(60px, 9vw, 110px); }
.article__hero { aspect-ratio: 16/8; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 36px; background: var(--warm-gray); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__body { max-width: 720px; margin-inline: auto; }
.article__body p { margin-bottom: 20px; font-size: 1.08rem; line-height: 1.8; }
.article__body p:first-of-type::first-letter { font-family: var(--serif); font-size: 3.4rem; line-height: .8; float: left; padding: 6px 12px 0 0; color: var(--gold-deep); }
.article__meta { display: flex; gap: 16px; align-items: center; color: var(--muted); font-size: .85rem; margin-bottom: 30px; flex-wrap: wrap; }
.article__figs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.article__figs img { border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.article__back { margin-top: 40px; }
.empty-state { text-align: center; color: var(--muted); padding: 60px 0; }

/* ===========================================================
   PANEL ADMIN (admin.html)
   =========================================================== */
.admin-body { background: var(--warm-gray); min-height: 100vh; }
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(120% 120% at 80% 0%, var(--emerald) 0%, var(--emerald-deep) 70%); }
.login-card { background: var(--bg); border-radius: var(--radius-lg); padding: 40px; width: min(420px, 100%); box-shadow: var(--shadow-lg); }
.login-card .brand { color: var(--emerald); margin-bottom: 22px; }
.login-card h1 { font-size: 1.7rem; margin-bottom: 6px; }
.login-card p { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.login-hint { margin-top: 18px; font-size: .8rem; color: var(--muted); background: rgba(201,169,110,.1); border: 1px solid var(--line-gold); border-radius: var(--radius); padding: 10px 12px; }
.login-err { color: #c25b4a; font-size: .85rem; margin-top: 12px; min-height: 1.2em; }

.admin-shell { display: none; }
.admin-shell.is-on { display: block; }
.admin-top { background: var(--emerald-deep); color: var(--on-dark); position: sticky; top: 0; z-index: 50; }
.admin-top__row { display: flex; align-items: center; justify-content: space-between; gap: 10px 16px; padding: 16px var(--gutter); max-width: 1280px; margin-inline: auto; flex-wrap: wrap; }
.admin-top .brand { color: var(--on-dark); }
.admin-top .brand__mark { color: var(--gold); }
.admin-top__right { display: flex; align-items: center; gap: 14px; }
.admin-mode { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--gold-soft); color: var(--gold-soft); white-space: nowrap; flex: none; }
.admin-mode.is-live { border-color: #5fcf9a; color: #5fcf9a; }

.admin__tabs { display: flex; gap: 4px; overflow-x: auto; padding: 0 var(--gutter); background: var(--emerald); }
.admin__tabs button { color: var(--on-dark-muted); padding: 14px 18px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; white-space: nowrap; border-bottom: 2px solid transparent; transition: color .25s, border-color .25s; }
.admin__tabs button:hover { color: var(--on-dark); }
.admin__tabs button.is-on { color: var(--gold-soft); border-bottom-color: var(--gold); }

.admin-main { max-width: 1280px; margin-inline: auto; padding: 28px var(--gutter) 80px; }
.admin-main section { animation: fadeUp .35s var(--ease); }
.admin-h { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 4px; }
.admin-sub { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.admin-toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.admin-toolbar input, .admin-toolbar select { border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 12px; background: var(--bg); }
.spacer { flex: 1; }

/* Stat cards */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.stat__k { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.stat__v { font-family: var(--serif); font-size: 2.2rem; color: var(--emerald); margin-top: 6px; }
.stat__sub { font-size: .82rem; color: var(--gold-deep); margin-top: 2px; }

/* Cards/tablas */
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 22px; }
.card__h { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 16px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg); }
.table { width: 100%; border-collapse: collapse; min-width: 640px; }
.table th, .table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: .9rem; vertical-align: middle; }
.table th { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: var(--warm-gray); position: sticky; top: 0; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: rgba(201,169,110,.05); }
.table .actions { display: flex; gap: 6px; flex-wrap: wrap; }
.icon-btn { width: 34px; height: 34px; border-radius: var(--radius); border: 1px solid var(--line); display: grid; place-items: center; font-size: .9rem; transition: .2s; }
.icon-btn:hover { border-color: var(--emerald); color: var(--emerald); }
.icon-btn.danger:hover { border-color: #c25b4a; color: #c25b4a; }

/* Badges de estado */
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 600; letter-spacing: .03em; padding: 4px 10px; border-radius: 999px; border: 1px solid transparent; text-transform: capitalize; }
.badge--pending   { background: rgba(201,169,110,.16); color: var(--gold-deep); border-color: var(--line-gold); }
.badge--confirmed { background: rgba(15,76,58,.1); color: var(--emerald); border-color: rgba(15,76,58,.2); }
.badge--completed { background: rgba(47,175,106,.12); color: #1f8a52; border-color: rgba(47,175,106,.3); }
.badge--cancelled { background: rgba(194,91,74,.12); color: #b14a3a; border-color: rgba(194,91,74,.3); }
.badge--no_show   { background: #ece8e1; color: var(--soft-gray); border-color: var(--line); }

.select-mini { border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 8px; font-size: .8rem; background: var(--bg); }

/* Listas admin (servicios/locales) */
.adm-list { display: grid; gap: 12px; }
.adm-item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.adm-item__main { display: flex; flex-direction: column; gap: 3px; }
.adm-item__name { font-family: var(--serif); font-size: 1.12rem; color: var(--emerald); }
.adm-item__meta { font-size: .83rem; color: var(--muted); }
.adm-item__actions { display: flex; gap: 6px; align-items: center; }

/* Horarios */
.hours-grid { display: grid; gap: 8px; }
.hours-row { display: grid; grid-template-columns: 120px auto 1fr; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-row strong { font-size: .92rem; }
.hours-row input[type="time"] { border: 1px solid var(--line); border-radius: var(--radius); padding: 8px 10px; }
.switch { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; cursor: pointer; }
.switch input { width: 40px; height: 22px; appearance: none; background: var(--line); border-radius: 999px; position: relative; transition: background .25s; cursor: pointer; }
.switch input::after { content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: #fff; top: 2px; left: 2px; transition: left .25s; }
.switch input:checked { background: var(--emerald); }
.switch input:checked::after { left: 20px; }

/* Modales admin */
.modal { position: fixed; inset: 0; z-index: 300; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(10,53,40,.5); backdrop-filter: blur(3px); }
.modal__dialog { position: absolute; top: 50%; left: 50%; translate: -50% -50%; width: min(640px, 94vw); max-height: 92vh; overflow-y: auto; background: var(--bg); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 28px; }
.modal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal__head h3 { font-size: 1.4rem; }
.modal__foot { display: flex; justify-content: flex-end; gap: 12px; margin-top: 24px; }
.lang-tabs { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; margin-bottom: 14px; }
.lang-tabs button { padding: 6px 14px; font-size: .76rem; font-weight: 600; }
.lang-tabs button.is-on { background: var(--emerald); color: #fff; }

.toast { position: fixed; bottom: 24px; left: 50%; translate: -50% 120%; z-index: 400; background: var(--emerald-deep); color: var(--on-dark); padding: 14px 22px; border-radius: var(--radius); box-shadow: var(--shadow-lg); font-size: .9rem; transition: translate .35s var(--ease); }
.toast.is-on { translate: -50% 0; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1040px) {
  .therapies__cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(420px, 86vw);
    background: var(--emerald-deep); color: var(--on-dark);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 22px; padding: 90px 40px 40px; transform: translateX(100%);
    transition: transform .42s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links > a { font-size: 1.4rem; font-family: var(--serif); text-transform: none; letter-spacing: 0; color: var(--on-dark); }
  .nav__links > a::after { background: var(--gold-soft); }
  .nav__drawer-foot { display: flex; flex-direction: column; gap: 16px; width: 100%; margin-top: 18px; padding-top: 24px; border-top: 1px solid rgba(243,238,229,.18); }
  .nav__drawer-foot .nav__locales { color: var(--on-dark-muted); }
  .nav__toggle { display: flex; }
  .nav__cta .nav__locales { display: none; }
  .philosophy__grid, .locations__grid { grid-template-columns: 1fr; }
  .rituals__grid { grid-template-columns: 1fr; gap: 16px; }
  .ritual--feature { order: -1; }
  .ritual { padding: 24px 22px; }
  .ritual__num { font-size: 1.6rem; }
  .ritual h3 { font-size: 1.32rem; margin-top: 8px; }
  .ritual__claim { margin-top: 4px; }
  .ritual p { margin-top: 10px; }
  .ritual__value { margin-top: 14px; padding-top: 12px; }
  .packages__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; gap: 16px; }
  .pkg { padding: 24px 22px; }
  .pkg__top h3 { font-size: 1.4rem; }
  .pkg__price { font-size: 2.3rem; margin: 10px 0 2px; }
  .pkg__feats { margin: 14px 0 18px; gap: 8px; }
  .sec-head { grid-template-columns: 1fr; }
  .article__figs { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  :root { --header-h: 68px; }

  /* Terapias: pestañas por categoría en vez de una lista larga de 16 items */
  .therapy-tabs { display: flex; gap: 8px; margin-bottom: 24px; overflow-x: auto; }
  .therapy-tabs button {
    flex: none; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line);
    font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--muted);
    transition: background .2s, color .2s, border-color .2s;
  }
  .therapy-tabs button.is-on { background: var(--emerald); border-color: var(--emerald); color: #fff; }
  .therapies__cols { grid-template-columns: 1fr; gap: 0; }
  .therapy-col { display: none; }
  .therapy-col.is-active { display: block; }
  .therapy-col__title { display: none; } /* la pestaña ya dice la categoría */

  /* Filosofía: un párrafo basta en mobile, el resto vive en el blog */
  .philosophy__extra { display: none; }

  /* Footer: en mobile no repetir enlaces/contacto/redes ya mostrados arriba */
  .footer__grid > div:not(.footer__brand) { display: none; }
  .footer__grid { grid-template-columns: 1fr; padding-bottom: 30px; }

  .pillars { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .nav__cta .btn { display: none; }
  .nav__row { gap: 10px; }
  .brand__tag { display: none; }
  .locations__list > div { grid-template-columns: 1fr; gap: 4px; }
  .stats-bar__list { gap: 22px; }
  .booking__body { padding: 20px; }
  .steps__item span:not(.steps__bar) { display: none; }
  .hours-row { grid-template-columns: 1fr; gap: 6px; }
}

/* Bloqueo de scroll cuando hay modal/menú abierto */
body.no-scroll { overflow: hidden; }
.hide { display: none !important; }
