/* ============================================================
   SKIN CO. — Sitio one-page
   Dirección: "Facial Gym / IN&OUT" — bloques olivo sobre crema,
   pop rosa/menta, display fuerte en mayúsculas, hojas pintadas de
   la marca como textura. Tema claro fijo. Sin frameworks ni CDNs.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Paleta de marca (canon) */
  --olive: #5d6623;
  --olive-d: #464d1a;
  --olive-dd: #2b3013;
  --green: #879372;
  --rose: #ea8491;
  --rose-d: #d96b79;
  --pink: #fcbfce;
  --mint: #b9dcb1;
  --cream: #efe7d8;
  --sand: #f6f1e6;
  --white: #fffdf8;
  --ink: #2b3018;
  --ink-soft: #55583f;
  --error: #c8465d;

  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Helvetica Neue", Arial, "Segoe UI", system-ui, sans-serif;

  --step-eyebrow: clamp(.72rem, .68rem + .2vw, .82rem);
  --step-h4: clamp(1.05rem, 1rem + .4vw, 1.25rem);
  --step-h3: clamp(1.4rem, 1.2rem + .9vw, 2rem);
  --step-h2: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem);
  --step-h1: clamp(2.9rem, 1.7rem + 6vw, 6.4rem);

  --maxw: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 18px 44px -22px rgba(43, 48, 24, .5);
  --shadow-soft: 0 10px 30px -18px rgba(43, 48, 24, .4);
  --header-h: 72px;
}

/* ---------- Reset ligero ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; border-radius: 4px; }

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 2rem + 7vw, 7rem); position: relative; overflow: hidden; }
.section--olive { background: var(--olive); color: var(--sand); }
.section--olive-d { background: var(--olive-d); color: var(--sand); }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .16em;
  font-weight: 800; font-size: var(--step-eyebrow);
  color: var(--green); margin: 0 0 1rem;
  display: inline-flex; align-items: center; gap: .5rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--rose); display: inline-block; }
.section--olive .eyebrow, .section--olive-d .eyebrow { color: var(--mint); }
.lead { font-size: clamp(1.05rem, 1rem + .5vw, 1.28rem); color: var(--ink-soft); max-width: 60ch; }
.section--olive .lead, .section--olive-d .lead { color: #e7e0cf; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.03; margin: 0; }
.display { text-transform: uppercase; letter-spacing: -.015em; font-weight: 800; }
h1.display { font-size: var(--step-h1); line-height: .95; }
h2.display { font-size: var(--step-h2); }
h3 { font-size: var(--step-h3); }

/* Hojas decorativas (palmeritas de la marca) */
.leaf { position: absolute; z-index: 0; pointer-events: none; opacity: .9; }
.section > .container { position: relative; z-index: 1; }

/* ---------- Botones ---------- */
.btn {
  --btn-bg: var(--olive); --btn-fg: var(--white); --btn-bd: var(--olive);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .8rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bd); border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; font-size: .92rem;
  transition: transform .12s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); }
.btn--primary:hover { background: var(--olive-d); border-color: var(--olive-d); }
.btn--accent { --btn-bg: var(--rose); --btn-bd: var(--rose); --btn-fg: #4a1720; }
.btn--accent:hover { background: var(--rose-d); border-color: var(--rose-d); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--olive); --btn-bd: var(--olive); }
.btn--ghost:hover { background: var(--olive); color: var(--white); }
.btn--wa { --btn-bg: #25d366; --btn-bd: #25d366; --btn-fg: #06331b; }
.btn--wa:hover { --btn-bg: #1fb457; --btn-bd: #1fb457; }
.section--olive .btn--ghost, .section--olive-d .btn--ghost { --btn-fg: var(--sand); --btn-bd: var(--sand); }
.section--olive .btn--ghost:hover, .section--olive-d .btn--ghost:hover { background: var(--sand); color: var(--olive); }
.btn--lg { min-height: 60px; padding: 1rem 2.2rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Pills / etiquetas ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .8rem; border-radius: var(--radius-pill);
  background: var(--sand); color: var(--ink);
  font-weight: 600; font-size: .82rem; line-height: 1;
  border: 1.5px solid rgba(43,48,24,.12);
}
.pill--rose { background: var(--pink); border-color: transparent; color: #6d2230; }
.pill--mint { background: var(--mint); border-color: transparent; color: #274a24; }
.pill--olive { background: var(--olive); border-color: transparent; color: var(--sand); }
.pill--time::before { content: "⏱"; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid rgba(43,48,24,.1);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 26px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  padding: .6rem .9rem; border-radius: var(--radius-pill); font-weight: 600; font-size: .95rem;
  color: var(--ink); transition: background-color .15s ease, color .15s ease;
}
.nav-menu a:hover, .nav-menu a.is-current { background: var(--sand); color: var(--olive); }
.nav-menu .nav-cta a { background: var(--olive); color: var(--white); }
.nav-menu .nav-cta a:hover { background: var(--olive-d); color: var(--white); }
.nav-toggle {
  display: none; align-items: center; justify-content: center; gap: .5rem;
  height: 46px; padding: 0 .9rem 0 1rem; border: 2px solid var(--olive); border-radius: var(--radius-pill);
  background: transparent; color: var(--olive);
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .78rem;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---- Overlay de navegación a pantalla completa ---- */
.nav-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--olive);
  color: var(--sand);
  display: flex; flex-direction: column;
  padding: clamp(1.2rem, 5vw, 2.4rem);
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity .28s ease, transform .32s cubic-bezier(.2,.7,.2,1), visibility .28s;
  overflow: hidden;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-overlay__top { display: flex; align-items: center; justify-content: space-between; }
.nav-overlay__top img { height: 24px; width: auto; }
.nav-overlay__close {
  display: inline-flex; align-items: center; gap: .5rem;
  height: 46px; padding: 0 1rem; border-radius: var(--radius-pill);
  border: 2px solid rgba(255,253,248,.55); background: transparent; color: var(--sand);
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .78rem;
}
.nav-overlay__close svg { width: 22px; height: 22px; }
.nav-overlay__links {
  list-style: none; margin: auto 0; padding: 0;
  display: flex; flex-direction: column; gap: .2rem;
}
.nav-overlay__links li { overflow: hidden; }
.nav-overlay__links a {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: -.01em; font-size: clamp(2.4rem, 12vw, 4rem); line-height: 1.1;
  color: var(--sand);
  transform: translateY(110%); transition: transform .5s cubic-bezier(.2,.8,.2,1), color .15s ease;
}
.nav-overlay.is-open .nav-overlay__links a { transform: translateY(0); }
.nav-overlay__links li:nth-child(1) a { transition-delay: .06s; }
.nav-overlay__links li:nth-child(2) a { transition-delay: .12s; }
.nav-overlay__links li:nth-child(3) a { transition-delay: .18s; }
.nav-overlay__links li:nth-child(4) a { transition-delay: .24s; }
.nav-overlay__links li:nth-child(5) a { transition-delay: .30s; }
.nav-overlay__links a:hover { color: var(--pink); }
.nav-overlay__links .idx {
  font-size: .9rem; letter-spacing: .1em; color: var(--mint); font-weight: 700;
  min-width: 2.2rem;
}
.nav-overlay__foot { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; color: #d9d3c2; font-size: .85rem; }
.nav-overlay__foot a { color: var(--mint); font-weight: 700; }
.nav-overlay .leaf { opacity: .16; }

/* ============================================================
   HERO
   ============================================================ */
/* Hero (estilo glowbar, la reserva es LA acción): la imagen se muestra
   COMPLETA (sin recorte, escala con el navegador — la sección mide lo
   que mide la imagen) y el texto + botón van ENCIMA, al pie, sobre un
   degradado para legibilidad. En móvil se usa la variante vertical 3:4. */
.hero { position: relative; background: var(--olive-dd); }
.hero__bg { display: block; }
.hero__bg img { display: block; width: 100%; height: auto; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(30,34,12,0) 46%, rgba(30,34,12,.62) 100%);
}
.hero__inner {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem;
  padding-block: 0 clamp(1.6rem, 4vw, 3.5rem);
}
.hero__eyebrow { color: var(--mint); margin: 0; max-width: 34ch; text-shadow: 0 1px 14px rgba(0,0,0,.55); }
.hero__eyebrow::before { background: var(--rose); }
.hero__title {
  color: var(--white); font-size: var(--step-h1); line-height: .92;
  max-width: 16ch; text-shadow: 0 2px 28px rgba(0,0,0,.4);
}
.hero__cta { margin-top: .4rem; }

@media (max-width: 640px) {
  .hero__inner { align-items: stretch; }
  .hero__cta { width: 100%; }
}

/* Botón "Ver todo el menú" (estado colapsado del catálogo). */
.menu-more { display: flex; justify-content: center; margin-top: 1.8rem; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--olive); color: var(--sand); overflow: hidden; white-space: nowrap; padding-block: .9rem; border-block: 3px solid var(--rose); }
.marquee__track { display: inline-flex; gap: 0; will-change: transform; animation: marquee 34s linear infinite; }
.marquee__track span {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; font-size: clamp(.95rem, .9rem + .5vw, 1.25rem);
  padding-inline: 1.2rem; display: inline-flex; align-items: center; gap: 1.2rem;
}
.marquee__track span::after { content: "✦"; color: var(--rose); font-size: .9em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECCIÓN IN&OUT — feature cards
   ============================================================ */
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 1rem + 3vw, 3.2rem); }
.section-head h2 { margin-bottom: .8rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lead { margin-inline: auto; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.feature-card {
  background: var(--sand); border-radius: var(--radius); padding: 1.7rem 1.5rem;
  border: 1.5px solid rgba(43,48,24,.08); display: flex; flex-direction: column; gap: .6rem;
}
.feature-card__ic {
  font-size: 1.5rem; width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-content: center; margin-bottom: .3rem;
  background: color-mix(in srgb, var(--mint) 55%, var(--sand));
}
.feature-card h3 { font-size: var(--step-h4); text-transform: none; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.section--olive .feature-card, .section--olive-d .feature-card { background: color-mix(in srgb, var(--olive) 74%, black); border-color: rgba(255,255,255,.1); }
.section--olive .feature-card p, .section--olive-d .feature-card p { color: #d9d3c2; }
.section--olive .feature-card__ic, .section--olive-d .feature-card__ic { background: var(--rose); }
.in-out .leaf--2 { width: clamp(140px, 18vw, 260px); right: -50px; bottom: -60px; transform: rotate(-18deg); opacity: .22; }

/* ============================================================
   MENÚ
   ============================================================ */
.menu-toolbar { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.8rem; }
.menu-tabs { display: flex; flex-wrap: wrap; gap: .5rem; }
.menu-tab {
  padding: .6rem 1.15rem; border-radius: var(--radius-pill);
  border: 2px solid var(--olive); background: transparent; color: var(--olive);
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: .82rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: background-color .15s ease, color .15s ease, transform .1s ease;
}
.menu-tab .count { font-size: .72rem; opacity: .7; font-weight: 700; }
.menu-tab:hover { transform: translateY(-2px); }
.menu-tab[aria-pressed="true"] { background: var(--olive); color: var(--white); }
.menu-search { position: relative; max-width: 380px; }
.menu-search input {
  width: 100%; min-height: 50px; padding: .7rem 1rem .7rem 2.6rem; font-size: 1rem;
  border: 2px solid rgba(43,48,24,.16); border-radius: var(--radius-pill); background: var(--white); color: var(--ink);
}
.menu-search input:focus-visible { border-color: var(--olive); outline: none; }
.menu-search::before { content: "🔎"; position: absolute; left: .95rem; top: 50%; transform: translateY(-50%); font-size: .95rem; opacity: .6; }

.cat-group { margin-top: 2.4rem; }
.cat-group:first-child { margin-top: 0; }
.cat-group__head { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.cat-group__title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: -.01em; font-weight: 800; font-size: var(--step-h3); }
.cat-group__count { font-size: .82rem; color: var(--green); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cat-group__note { font-size: .82rem; color: #6d2230; background: var(--pink); padding: .3rem .8rem; border-radius: var(--radius-pill); font-weight: 700; }

.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.2rem; }
.svc-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid rgba(43,48,24,.1); display: flex; flex-direction: column;
  transition: transform .14s ease, box-shadow .14s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--green); position: relative; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-card__cat { position: absolute; top: .7rem; left: .7rem; font-family: var(--font-display); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; background: color-mix(in srgb, var(--olive) 88%, transparent); color: var(--sand); padding: .3rem .6rem; border-radius: var(--radius-pill); }
.svc-card__noimg { display: grid; place-content: center; height: 100%; color: var(--sand); font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; text-transform: uppercase; }
.svc-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.svc-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: .6rem; }
.svc-card__body h3 { font-size: 1.12rem; text-transform: uppercase; letter-spacing: -.01em; }
.svc-card__price { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--olive); white-space: nowrap; }
.svc-card__meta { display: flex; flex-wrap: wrap; gap: .4rem; }
.svc-card__desc { margin: 0; color: var(--ink-soft); font-size: .9rem; white-space: pre-line; }
.svc-card__desc.clamp { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.svc-card__more {
  align-self: flex-start; background: none; border: none; color: var(--green);
  font-weight: 700; font-size: .82rem; text-decoration: underline; padding: 0; margin-top: -.2rem;
}
.svc-card__actions { margin-top: auto; padding-top: .6rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.svc-card__actions .btn { min-height: 46px; padding: .55rem 1.2rem; font-size: .82rem; flex: 1; }
.menu-empty { padding: 2.5rem 1.4rem; text-align: center; color: var(--ink-soft); }
.menu-note { margin-top: 2rem; font-size: .88rem; color: var(--ink-soft); }
#menu .leaf--3 { width: clamp(120px, 14vw, 200px); top: 40px; right: -40px; transform: rotate(20deg); opacity: .18; }

/* ============================================================
   RESERVAR — wizard
   ============================================================ */
.book { display: grid; grid-template-columns: 1fr 340px; gap: clamp(1.5rem, 3vw, 2.6rem); align-items: start; }
@media (max-width: 900px) { .book { grid-template-columns: 1fr; } }

/* min-width:0 anula el min-width:auto de los items de grid: sin esto el panel
   se estira al ancho de la tira de fechas (14 chips ≈ 1020px) y en móvil el
   .datestrip nunca desborda, así que no hay scroll horizontal y los días de
   más quedan cortados por el overflow-x:hidden de la sección. */
.book-panel { min-width: 0; background: var(--white); border-radius: var(--radius); border: 1.5px solid rgba(43,48,24,.1); padding: clamp(1.2rem, 3vw, 2rem); }

.stepper { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; counter-reset: step; }
.stepper li { display: flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.stepper li::before {
  counter-increment: step; content: counter(step);
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  display: grid; place-content: center;
  background: var(--sand); border: 2px solid rgba(43,48,24,.18);
  font-family: var(--font-display); font-weight: 800; font-size: .8rem; color: var(--ink-soft);
}
.stepper li[data-state="done"]::before { background: var(--mint); border-color: transparent; color: #274a24; content: "✓"; }
.stepper li[data-state="active"]::before { background: var(--olive); border-color: transparent; color: var(--white); }
.stepper li[data-state="active"] { color: var(--olive); }
.stepper li:not(:last-child)::after { content: ""; width: 16px; height: 2px; background: rgba(43,48,24,.18); }
@media (max-width: 620px) { .stepper .step-label { display: none; } }

.step { display: none; }
.step.is-active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.step__title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: var(--step-h3); margin-bottom: .4rem; }
.step__hint { color: var(--ink-soft); margin: 0 0 1.4rem; }

.book-alert { background: color-mix(in srgb, var(--pink) 45%, var(--white)); border: 1.5px solid var(--rose); border-radius: var(--radius-sm); padding: .8rem 1rem; margin-bottom: 1.2rem; font-size: .92rem; color: #6d2230; font-weight: 600; }

.choice-grid { display: grid; gap: .8rem; }
.choice-grid--3 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.choice {
  text-align: left; background: var(--white); border: 2px solid rgba(43,48,24,.14);
  border-radius: var(--radius-sm); padding: 1rem 1.1rem; width: 100%;
  display: flex; flex-direction: column; gap: .3rem;
  transition: border-color .14s ease, background-color .14s ease, transform .1s ease;
  min-height: 44px;
}
.choice:hover { border-color: var(--green); transform: translateY(-2px); }
.choice[aria-pressed="true"], .choice.is-selected { border-color: var(--olive); background: color-mix(in srgb, var(--mint) 30%, var(--white)); }
.choice__name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; font-size: 1.02rem; }
.choice__sub { color: var(--ink-soft); font-size: .88rem; }
.choice__row { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.choice__price { font-family: var(--font-display); font-weight: 800; color: var(--olive); font-size: 1.05rem; white-space: nowrap; }

/* Paso "Elige tu facial": miniatura + descripción corta + duración/precio */
.choice-grid--svc { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.choice--svc { flex-direction: row; align-items: flex-start; gap: .9rem; }
.choice__thumb {
  flex: 0 0 auto; width: 68px; height: 68px; border-radius: 10px;
  overflow: hidden; background: var(--green);
}
.choice__thumb img { width: 100%; height: 100%; object-fit: cover; }
.choice__info { display: flex; flex-direction: column; gap: .28rem; min-width: 0; flex: 1; }
.choice__desc {
  color: var(--ink-soft); font-size: .84rem; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.choice__desc--open { -webkit-line-clamp: unset; }
.choice { cursor: pointer; }
.choice__more {
  align-self: flex-start; border: 0; background: none; padding: 0; margin-top: .1rem;
  color: var(--olive); font-size: .8rem; font-weight: 700; text-decoration: underline; cursor: pointer;
}

.svc-search { position: relative; margin-bottom: 1rem; }
.svc-search input { width: 100%; min-height: 50px; padding: .7rem 1rem; font-size: 1rem; border: 2px solid rgba(43,48,24,.16); border-radius: var(--radius-sm); background: var(--white); color: var(--ink); }
.svc-search input:focus-visible { border-color: var(--olive); outline: none; }

/* Tira de fechas (14 días) */
.datestrip { display: flex; gap: .55rem; overflow-x: auto; padding-bottom: .6rem; margin-bottom: 1.4rem; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.datestrip::-webkit-scrollbar { height: 6px; }
.datestrip::-webkit-scrollbar-thumb { background: rgba(43,48,24,.2); border-radius: 3px; }
.daychip {
  flex: 0 0 auto; scroll-snap-align: start;
  min-width: 62px; padding: .6rem .5rem; border-radius: 14px;
  border: 2px solid rgba(43,48,24,.16); background: var(--white); color: var(--ink);
  display: flex; flex-direction: column; align-items: center; gap: .15rem; line-height: 1.1;
  transition: border-color .14s ease, background-color .14s ease, transform .1s ease;
}
.daychip .dow { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--green); font-weight: 800; }
.daychip .dnum { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.daychip .dmon { font-size: .62rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.daychip:hover:not([disabled]) { border-color: var(--green); transform: translateY(-2px); }
.daychip.is-selected { background: var(--olive); border-color: var(--olive); color: var(--white); }
.daychip.is-selected .dow, .daychip.is-selected .dmon { color: var(--mint); }
.daychip[disabled] { opacity: .4; cursor: not-allowed; background: var(--sand); }
.daychip[disabled] .dnum { text-decoration: line-through; }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: .6rem; }
.slot { min-height: 48px; border-radius: var(--radius-pill); border: 2px solid var(--olive); background: transparent; color: var(--olive); font-family: var(--font-display); font-weight: 700; font-size: .95rem; display: flex; align-items: center; justify-content: center; gap: .3rem; transition: background-color .14s ease, color .14s ease; }
.slot:hover { background: color-mix(in srgb, var(--mint) 40%, transparent); }
.slot.is-selected { background: var(--olive); color: var(--white); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: .92rem; }
.form-field .req { color: var(--rose-d); }
.form-field .opt { color: var(--green); font-weight: 600; font-size: .82rem; }
.form-field input, .form-field textarea { min-height: 50px; padding: .7rem .9rem; font-size: 1rem; font-family: var(--font-body); border: 2px solid rgba(43,48,24,.16); border-radius: var(--radius-sm); background: var(--white); color: var(--ink); }
.form-field textarea { min-height: 92px; resize: vertical; }
.form-field input:focus-visible, .form-field textarea:focus-visible { border-color: var(--olive); outline: none; }
.form-field input[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: var(--error); }
.form-field input.is-valid { border-color: var(--mint); }
.field-error { color: var(--error); font-size: .82rem; min-height: 1em; font-weight: 600; }

.step-nav { display: flex; justify-content: space-between; align-items: center; gap: .8rem; margin-top: 1.8rem; }
.step-nav .btn { min-height: 50px; }
.link-back { background: none; border: none; color: var(--green); font-weight: 700; text-decoration: underline; padding: .5rem; }

.resumen { background: var(--sand); border-radius: var(--radius); padding: 1.4rem; border: 1.5px solid rgba(43,48,24,.1); position: sticky; top: calc(var(--header-h) + 16px); }
.resumen h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; letter-spacing: .06em; margin-bottom: 1rem; }
.resumen dl { margin: 0; display: grid; gap: .7rem; }
.resumen .r-row { display: grid; grid-template-columns: 108px 1fr; gap: .7rem; align-items: baseline; }
.resumen dt { color: var(--green); font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .03em; }
.resumen dd { margin: 0; font-weight: 600; font-size: .95rem; }
.resumen dd.empty { color: var(--ink-soft); font-weight: 400; }
.resumen__total { margin-top: 1.1rem; padding-top: 1rem; border-top: 2px dashed rgba(43,48,24,.2); display: flex; justify-content: space-between; align-items: baseline; }
.resumen__total b { font-family: var(--font-display); font-size: 1.5rem; color: var(--olive); }
@media (max-width: 900px) { .resumen { position: static; } }

.state-msg { padding: 1.4rem; border-radius: var(--radius-sm); background: var(--sand); color: var(--ink-soft); text-align: center; }
.state-msg--error { background: color-mix(in srgb, var(--error) 12%, var(--white)); color: #8a2a3b; border: 1.5px solid color-mix(in srgb, var(--error) 40%, transparent); }
.spinner { width: 26px; height: 26px; border: 3px solid rgba(43,48,24,.2); border-top-color: var(--olive); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto .6rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn .spinner { width: 18px; height: 18px; margin: 0; border-width: 2.5px; border-color: rgba(255,255,255,.4); border-top-color: #fff; }

/* Fallback WhatsApp */
.fallback { background: color-mix(in srgb, var(--pink) 30%, var(--white)); border: 1.5px solid var(--rose); border-radius: var(--radius); padding: 1.4rem; text-align: center; }
.fallback h3 { text-transform: none; font-size: 1.2rem; margin-bottom: .5rem; }
.fallback p { color: var(--ink-soft); margin: 0 auto 1.2rem; max-width: 44ch; }

/* Confirmación */
.confirmation { text-align: center; max-width: 620px; margin-inline: auto; padding: clamp(1.4rem,4vw,2.4rem); background: var(--white); border-radius: var(--radius); border: 1.5px solid rgba(43,48,24,.1); position: relative; overflow: hidden; }
.confirmation .leaf { opacity: .14; }
.confirmation .leaf--a { width: 130px; top: -20px; left: -30px; transform: rotate(-20deg); }
.confirmation .leaf--b { width: 130px; bottom: -30px; right: -30px; transform: rotate(160deg); }
.confirmation__check { width: 88px; height: 88px; border-radius: 50%; background: var(--mint); color: #274a24; display: grid; place-content: center; margin: 0 auto 1.4rem; font-size: 2.8rem; animation: pop .45s cubic-bezier(.2,1.4,.4,1) both; position: relative; z-index: 1; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirmation h2 { margin-bottom: .8rem; position: relative; z-index: 1; }
.confirmation > p { position: relative; z-index: 1; margin-inline: auto; }
.confirm-card { text-align: left; background: var(--sand); border-radius: var(--radius); padding: 1.4rem; margin: 1.6rem 0; position: relative; z-index: 1; }
.confirm-card .r-row { display: grid; grid-template-columns: 110px 1fr; gap: .6rem; padding: .5rem 0; border-bottom: 1px solid rgba(43,48,24,.1); }
.confirm-card .r-row:last-child { border-bottom: none; }
.confirm-card dt { color: var(--green); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.confirm-card dd { margin: 0; font-weight: 600; }
.confirm-actions { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-top: 1.6rem; position: relative; z-index: 1; }
.email-note { background: var(--mint); color: #274a24; border-radius: var(--radius-sm); padding: .9rem 1rem; font-size: .9rem; margin-top: 1rem; position: relative; z-index: 1; }
.email-note__lead { display: block; }
.email-note__to { display: block; font-weight: 700; word-break: break-word; }
.email-note__sub { display: block; margin-top: .35rem; opacity: .85; }
.turnstile-slot { margin: 1rem 0 0; }

/* ============================================================
   NOSOTROS (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5 / 4; background: var(--green); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: 1rem; }
.split__body p { color: #e7e0cf; }
.split__body p + p { margin-top: .9rem; }
#nosotros .leaf--4 { width: clamp(130px, 16vw, 230px); left: -50px; bottom: -50px; transform: rotate(30deg); opacity: .2; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } .split__media { max-width: 480px; } }

/* ============================================================
   LOCALES
   ============================================================ */
.local-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.local-card { background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.5rem; border: 1.5px solid rgba(43,48,24,.1); display: flex; flex-direction: column; gap: .5rem; }
.local-card__name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.35rem; color: var(--olive); }
.local-card__area { color: var(--green); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.local-card__addr { color: var(--ink-soft); font-size: .95rem; margin: .3rem 0 .2rem; }
.local-card__hours { font-size: .86rem; color: var(--ink-soft); }
.local-card__hours b { color: var(--ink); }
.local-card__actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }
.local-card__actions .btn { min-height: 44px; padding: .55rem 1.1rem; font-size: .8rem; }

/* ============================================================
   CTA final
   ============================================================ */
.cta-band { text-align: center; position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 1.2rem; }
.cta-band .btn { margin-inline: auto; }
.cta-final .leaf--5 { width: clamp(140px,18vw,240px); left: -40px; top: -40px; transform: rotate(-24deg); opacity: .2; }
.cta-final .leaf--6 { width: clamp(140px,18vw,240px); right: -40px; bottom: -40px; transform: rotate(150deg); opacity: .2; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--olive-dd); color: #d9d3c2; padding-block: clamp(2.5rem, 1.5rem + 4vw, 4rem) 2rem; }
.site-footer a:hover { color: var(--mint); }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand img { height: 30px; width: auto; }
.footer-col h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--mint); margin: 0 0 .9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-col li { font-size: .92rem; }
.footer-tag { margin: 1rem 0 0; max-width: 34ch; font-size: .92rem; color: #b7b29f; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .82rem; color: #9a9683; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .9rem; border: 1.5px solid rgba(255,255,255,.22); border-radius: var(--radius-pill); font-weight: 600; }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- Accesibilidad ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .nav-overlay__links a { transform: none; }
}
.skip-link { position: absolute; left: -999px; top: 0; background: var(--olive); color: #fff; padding: .7rem 1rem; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
