/* =========================================================
   SERENA · Day Spa & Wellness — Nordelta, Tigre
   Identidad: tierra cálida · bronce · sage · curvas orgánicas
   ========================================================= */

/* ----------------------- TOKENS ----------------------- */
:root {
  /* superficies */
  --bg:            #E9E3D8;          /* arena cálida, fondo dominante */
  --bg-surface:    #F4F0E8;          /* navbar scrolleada, paneles */
  --bg-elevated:   #DED6C7;          /* tercer nivel, tarjetas */
  --surface-glass: rgba(255,255,255,.50);
  --border-glass:  rgba(42,38,34,.10);

  /* acento de marca (bronce) + secundario natural (sage) */
  --accent:        #A6794C;
  --accent-deep:   #8A6238;          /* bronce más profundo para hover */
  --accent-dim:    rgba(166,121,76,.12);
  --accent-glow:   rgba(166,121,76,.25);
  --on-accent:     #FFFFFF;
  --sage:          #7C8A6F;          /* detalles naturales */
  --sage-dim:      rgba(124,138,111,.14);

  /* texto: jerarquía de 4 niveles */
  --text-1: #2A2622;
  --text-2: #544E45;
  --text-3: #837B6E;
  --text-4: #A89E90;

  /* tipografía */
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Mulish", system-ui, sans-serif;

  /* forma orgánica y suave */
  --r-card: 22px;
  --r-card-lg: 30px;
  --r-btn:  999px;

  /* movimiento */
  --t-fast: 150ms ease;
  --t-base: 300ms ease;
  --t-slow: 600ms cubic-bezier(.25,.46,.45,.94);

  /* sombras cálidas */
  --shadow-sm: 0 4px 20px rgba(42,38,34,.06);
  --shadow-md: 0 18px 50px rgba(42,38,34,.10);
  --shadow-lg: 0 30px 80px rgba(42,38,34,.16);
}

/* ----------------------- RESET ----------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--accent); color: var(--on-accent); }

/* scrollbar fino de acento */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 999px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-deep); }

/* ----------------------- LAYOUT ----------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }

/* ----------------------- ATMÓSFERA: GRANO ----------------------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* ----------------------- TIPOGRAFÍA HELPERS ----------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow--light { color: rgba(255,255,255,.85); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--text-1);
  max-width: 18ch;
  font-optical-sizing: auto;
}

.divider {
  display: block;
  width: 72px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin: 26px 0;
  position: relative;
}
.divider::after {
  content: "";
  position: absolute;
  left: 80px; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head .section-title { margin-bottom: 0; }
.section-sub {
  color: var(--text-2);
  font-size: 18px;
  max-width: 52ch;
}

/* ----------------------- BOTONES ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: var(--r-btn);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  white-space: nowrap;
  border: 1.5px solid transparent;
  position: relative;
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 10px 30px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--accent-glow);
}

.btn--outline {
  border-color: var(--text-1);
  color: var(--text-1);
  background: transparent;
}
.btn--outline:hover {
  background: var(--text-1);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--text-1);
  background: var(--surface-glass);
  border-color: var(--border-glass);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent-deep);
  transform: translateY(-2px);
}
.btn--ghost-light {
  color: #fff;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost-light:hover {
  background: #fff;
  color: var(--text-1);
  border-color: #fff;
}

/* ----------------------- IMG FALLBACK ----------------------- */
.img-fallback {
  background: linear-gradient(135deg, var(--bg-elevated), var(--accent-dim)) !important;
}
.img-fallback[src] { opacity: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base), backdrop-filter var(--t-base);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.nav.is-scrolled {
  background: rgba(244,240,232,.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border-glass);
  box-shadow: 0 6px 30px rgba(42,38,34,.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  transition: background var(--t-base);
}
.brand__mark svg { fill: var(--accent); }
.brand:hover .brand__mark { background: var(--accent-glow); }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--text-1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 8px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .02em;
  position: relative;
  transition: color var(--t-base);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--t-base);
}
.nav__links a:hover { color: var(--accent-deep); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 12px 24px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------- MENÚ MOBILE ----------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-1);
  transition: color var(--t-base);
}
.mobile-menu__links a:hover { color: var(--accent); }
.mobile-menu__cta {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 13px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(233,227,216,.94) 0%, rgba(233,227,216,.78) 38%, rgba(233,227,216,.30) 70%, rgba(233,227,216,.10) 100%),
    linear-gradient(to top, rgba(233,227,216,.55), transparent 40%);
}

/* blob orgánico decorativo */
.hero__blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero__blob--1 {
  width: 620px; height: 620px;
  right: -160px; top: -120px;
  fill: var(--sage-dim);
  animation: blobFloat 18s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(-26px, 30px) rotate(8deg); }
}

.hero__inner { position: relative; z-index: 2; max-width: 720px; }
.hero__eyebrow { color: var(--accent-deep); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.2rem, 8.5vw, 6rem);
  line-height: .98;
  letter-spacing: -.025em;
  color: var(--text-1);
  margin-bottom: 28px;
  font-optical-sizing: auto;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-2);
  max-width: 50ch;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.1;
}
.hero__meta-label {
  font-size: 12.5px;
  color: var(--text-3);
  letter-spacing: .02em;
}
.hero__meta-div { width: 1px; height: 36px; background: var(--border-glass); }

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll-dot {
  width: 24px; height: 38px;
  border: 2px solid var(--text-3);
  border-radius: 999px;
  position: relative;
}
.hero__scroll-dot::after {
  content: "";
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 999px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translate(-50%, 12px); }
}
.hero__scroll-text {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
}

/* hero stagger (clases las setea el JS al cargar) */
.hero__eyebrow, .hero__title, .hero__sub, .hero__actions, .hero__meta {
  opacity: 0;
  transform: translateY(26px);
}
.hero.is-loaded .hero__eyebrow { animation: heroRise .8s var(--t-slow) forwards; animation-delay: .15s; }
.hero.is-loaded .hero__title  { animation: heroRise .9s var(--t-slow) forwards; animation-delay: .30s; }
.hero.is-loaded .hero__sub    { animation: heroRise .9s var(--t-slow) forwards; animation-delay: .48s; }
.hero.is-loaded .hero__actions{ animation: heroRise .9s var(--t-slow) forwards; animation-delay: .64s; }
.hero.is-loaded .hero__meta   { animation: heroRise .9s var(--t-slow) forwards; animation-delay: .80s; }
@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--text-1);
  color: var(--bg);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .01em;
}
.marquee__sep { color: var(--accent); font-style: normal !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   RITUALES
   ============================================================ */
.rituals { background: var(--bg); }
.rituals__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

/* tarjeta destacada */
.ritual-card--feature {
  background: var(--bg-surface);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-glass);
  position: sticky;
  top: 110px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.ritual-card--feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ritual-card__media { position: relative; aspect-ratio: 4/3.2; overflow: hidden; }
.ritual-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ritual-card--feature:hover .ritual-card__media img { transform: scale(1.05); }
.ritual-card__tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}
.ritual-card__body { padding: 30px 32px 34px; }
.ritual-card__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 12px;
  line-height: 1.15;
}
.ritual-card__desc { color: var(--text-2); font-size: 16px; margin-bottom: 24px; }
.ritual-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--border-glass);
}
.ritual-card__time {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.ritual-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent-deep);
}

/* lista de servicios */
.ritual-list {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-card-lg);
  padding: 16px 32px;
  box-shadow: var(--shadow-sm);
}
.ritual-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-glass);
  transition: padding-left var(--t-base);
}
.ritual-row:last-of-type { border-bottom: none; }
.ritual-row:hover { padding-left: 8px; }
.ritual-row__info { flex-shrink: 0; max-width: 60%; }
.ritual-row__name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.2;
  transition: color var(--t-base);
}
.ritual-row:hover .ritual-row__name { color: var(--accent-deep); }
.ritual-row__desc { font-size: 14px; color: var(--text-3); margin-top: 3px; }
.ritual-row__dots {
  flex: 1;
  height: 1px;
  border-bottom: 2px dotted var(--text-4);
  opacity: .5;
  margin-bottom: 7px;
}
.ritual-row__price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--accent-deep);
  flex-shrink: 0;
}
.ritual-list__note {
  font-size: 13.5px;
  color: var(--text-3);
  padding: 22px 0 8px;
  font-style: italic;
  line-height: 1.55;
}

/* ============================================================
   SOBRE
   ============================================================ */
.about { background: var(--bg-surface); overflow: hidden; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__media { position: relative; }
.about__img { border-radius: var(--r-card-lg); box-shadow: var(--shadow-md); }
.about__img--main {
  width: 88%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about__img--accent {
  position: absolute;
  right: 0; bottom: -28px;
  width: 48%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 6px solid var(--bg-surface);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  top: 24px; left: -14px;
  background: var(--sage);
  color: #fff;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}
.about__badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.25;
}

.about__content .section-title { margin-bottom: 0; }
.about__text {
  color: var(--text-2);
  font-size: 17px;
  margin-bottom: 18px;
  max-width: 48ch;
}
.about__features { margin: 28px 0 34px; display: grid; gap: 14px; }
.about__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text-1);
  font-weight: 500;
}
.about__feat-ico {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-dim);
  position: relative;
}
.about__feat-ico::after {
  content: "";
  position: absolute;
  left: 9px; top: 12px;
  width: 5px; height: 9px;
  border: solid var(--accent-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ============================================================
   GALERÍA
   ============================================================ */
.gallery { background: var(--bg); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}
.gallery__item {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,38,34,.55), transparent 55%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item figcaption {
  position: absolute;
  left: 20px; bottom: 18px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ============================================================
   OPINIONES
   ============================================================ */
.reviews { background: var(--bg-surface); }
.reviews__google {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.g-logo { display: inline-flex; }
.reviews__google-text { font-size: 15px; color: var(--text-2); }
.reviews__google-text strong { color: var(--text-1); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-card);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-glow);
}
.review-card__stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.review-card__quote {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 26px;
}
.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}
.review-card__name {
  display: block;
  font-weight: 700;
  color: var(--text-1);
  font-size: 15px;
}
.review-card__role { display: block; font-size: 13px; color: var(--text-3); }

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
}
.booking__bg { position: absolute; inset: 0; z-index: 0; }
.booking__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(1.05);
}
.booking::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(64,48,34,.55), rgba(42,38,34,.6));
}
.booking__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.booking__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.015em;
}
.booking__sub {
  color: rgba(255,255,255,.85);
  font-size: 18px;
  margin-bottom: 38px;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.booking__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact { background: var(--bg); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}

.contact__info {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-card-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.contact__list { display: grid; gap: 28px; margin-bottom: 34px; }
.contact__item { display: flex; gap: 18px; align-items: flex-start; }
.contact__ico {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
}
.contact__label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}
.contact__value {
  display: block;
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.5;
}
.contact__link { transition: color var(--t-base); }
.contact__link:hover { color: var(--accent-deep); }

/* mapa placeholder estilizado */
.contact__map {
  position: relative;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  min-height: 420px;
  background:
    radial-gradient(120% 120% at 20% 10%, var(--bg-surface), var(--bg-elevated) 70%);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-glass) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-glass) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .7;
}
.map-blob {
  position: absolute;
  border-radius: 50% 42% 55% 45% / 48% 55% 45% 52%;
  filter: blur(2px);
}
.map-blob--1 {
  width: 240px; height: 200px;
  background: var(--sage-dim);
  top: -30px; right: -40px;
}
.map-blob--2 {
  width: 180px; height: 160px;
  background: var(--accent-dim);
  bottom: -30px; left: 30px;
}
.map-route {
  position: absolute;
  top: 30%; left: -10%;
  width: 130%; height: 5px;
  background: var(--accent);
  opacity: .35;
  border-radius: 999px;
  transform: rotate(-14deg);
}
.map-route::after {
  content: "";
  position: absolute;
  top: 70px; left: 35%;
  width: 70%; height: 5px;
  background: var(--sage);
  opacity: .9;
  border-radius: 999px;
  transform: rotate(34deg);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-pin__dot {
  width: 20px; height: 20px;
  background: var(--accent);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px var(--accent-glow);
  z-index: 2;
}
.map-pin__pulse {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, 0);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .4;
  animation: pinPulse 2.4s ease-out infinite;
}
@keyframes pinPulse {
  0% { transform: translate(-50%, 0) scale(1); opacity: .5; }
  100% { transform: translate(-50%, 0) scale(3.4); opacity: 0; }
}
.map-pin__label {
  margin-top: 12px;
  background: var(--text-1);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.map-tag {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 3;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(6px);
  color: var(--text-2);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-glass);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--text-1); color: var(--bg); padding-top: 80px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.brand--footer .brand__mark { background: rgba(166,121,76,.22); }
.brand--footer .brand__name { color: var(--bg); }
.footer__desc {
  color: rgba(233,227,216,.6);
  font-size: 15px;
  max-width: 38ch;
  margin-top: 18px;
  line-height: 1.6;
}
.footer__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__col a {
  color: rgba(233,227,216,.72);
  font-size: 15px;
  transition: color var(--t-base);
  width: fit-content;
}
.footer__col a:hover { color: var(--bg); }
.footer__plain { color: rgba(233,227,216,.5); font-size: 15px; }

.footer__bottom { border-top: 1px solid rgba(233,227,216,.12); padding: 26px 0; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { color: rgba(233,227,216,.5); font-size: 13.5px; }
.footer__credit { color: rgba(233,227,216,.6); font-size: 13.5px; }
.footer__credit a {
  color: var(--accent);
  font-weight: 700;
  transition: color var(--t-base);
}
.footer__credit a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FAB WHATSAPP
   ============================================================ */
.fab {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.fab:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(37,211,102,.5); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .rituals__grid { grid-template-columns: 1fr; gap: 32px; }
  .ritual-card--feature { position: static; max-width: 520px; }
  .about__inner { gap: 56px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 340px; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .about__inner { grid-template-columns: 1fr; gap: 80px; }
  .about__media { max-width: 480px; }

  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }

  .hero { padding: 110px 0 90px; min-height: auto; }
  .hero__meta { gap: 18px; margin-top: 44px; }
  .hero__meta-div { display: none; }
  .hero__meta-item { min-width: 44%; }
  .hero__scroll { display: none; }

  .section-head { margin-bottom: 44px; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .ritual-list { padding: 8px 22px; }
  .ritual-row { flex-wrap: wrap; gap: 8px; }
  .ritual-row__info { max-width: 100%; flex: 1 1 70%; }
  .ritual-row__dots { display: none; }
  .ritual-row__price { margin-left: auto; }

  .contact__info { padding: 34px 26px; }
  .booking { padding: 90px 0; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 1; }
  .hero__actions .btn { flex: 1; }
}

/* ============================================================
   ACCESIBILIDAD
   ============================================================ */
:focus-visible {
  outline: 2.5px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__eyebrow, .hero__title, .hero__sub, .hero__actions, .hero__meta { opacity: 1; transform: none; }
}
