/* =============================================================
   KÝROS — Más allá del fitness
   styles.css · Sistema de diseño completo
   -------------------------------------------------------------
   1. Tokens y temas          7. Tienda
   2. Base y tipografía       8. Transformaciones / testimonios
   3. Utilidades y animación  9. Blog / galería
   4. Navegación              10. Agenda / FAQ / contacto
   5. Hero                    11. Footer y flotantes
   6. Sobre mí / servicios    12. Drawers, modales, toasts
   ============================================================= */

/* ============ 1. TOKENS Y TEMAS ============ */
:root {
  /* Paleta base — tema oscuro (por defecto) */
  --bg:            #08080a;
  --bg-deep:       #050506;
  --surface:       #101013;
  --surface-2:     #17171b;
  --surface-3:     #1f1f24;
  --line:          rgba(255, 255, 255, .09);
  --line-strong:   rgba(255, 255, 255, .18);
  --text:          #f5f5f4;
  --text-soft:     #c4c4c8;
  --text-muted:    #85858e;
  --graphite:      #2a2a30;

  /* Acento dorado */
  --gold:          #c9a227;
  --gold-bright:   #e8cd7a;
  --gold-deep:     #8a6f14;
  --gold-glow:     rgba(201, 162, 39, .28);
  --gradient-gold: linear-gradient(135deg, #8a6f14 0%, #c9a227 35%, #f0dd9c 55%, #c9a227 75%, #8a6f14 100%);

  /* Acento secundario */
  --neon:          #b8ff3c;
  --danger:        #e0553f;
  --success:       #4ea87a;

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.4);
  --shadow-md:  0 12px 32px rgba(0,0,0,.45);
  --shadow-lg:  0 28px 70px rgba(0,0,0,.6);
  --shadow-gold: 0 10px 40px -12px var(--gold-glow);

  /* Tipografía */
  --font-display: "Didot", "Bodoni MT", "Playfair Display", "Times New Roman", Georgia, serif;
  --font-body: "Inter", "Segoe UI Variable Display", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Cascadia Mono", "Roboto Mono", Consolas, monospace;

  /* Escala fluida */
  --step--1: clamp(.78rem, .74rem + .18vw, .875rem);
  --step-0:  clamp(.95rem, .9rem + .22vw, 1.05rem);
  --step-1:  clamp(1.15rem, 1.05rem + .5vw, 1.4rem);
  --step-2:  clamp(1.45rem, 1.25rem + .95vw, 2.05rem);
  --step-3:  clamp(1.9rem, 1.5rem + 1.9vw, 3.1rem);
  --step-4:  clamp(2.2rem, 1.5rem + 3vw, 4rem);
  --step-5:  clamp(2.6rem, 1.5rem + 3.9vw, 5.1rem);

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.15rem, 4vw, 3.5rem);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;
  --nav-h: 76px;

  /* Movimiento */
  --ease: cubic-bezier(.22, .68, .18, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .55s;

  color-scheme: dark;
}

html[data-theme="light"] {
  --bg:          #f7f6f3;
  --bg-deep:     #ecebe6;
  --surface:     #ffffff;
  --surface-2:   #f2f1ed;
  --surface-3:   #e7e5df;
  --line:        rgba(10, 10, 11, .11);
  --line-strong: rgba(10, 10, 11, .22);
  --text:        #0d0d0f;
  --text-soft:   #3d3d44;
  --text-muted:  #6c6c76;
  --graphite:    #d8d6cf;
  --gold:        #9c7d17;
  --gold-bright: #c9a227;
  --gold-deep:   #6d5610;
  --gold-glow:   rgba(156, 125, 23, .22);
  --gradient-gold: linear-gradient(135deg, #6d5610 0%, #9c7d17 35%, #cfae44 55%, #9c7d17 75%, #6d5610 100%);
  --shadow-sm:  0 2px 8px rgba(20,18,10,.08);
  --shadow-md:  0 12px 32px rgba(20,18,10,.10);
  --shadow-lg:  0 28px 70px rgba(20,18,10,.14);
  color-scheme: light;
}

/* ============ 2. BASE Y TIPOGRAFÍA ============ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background .5s var(--ease), color .5s var(--ease);
}

body.no-scroll { overflow: hidden; }

/* Grano cinematográfico sutil sobre todo el sitio */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, video, svg { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--gold); color: #08080a; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--graphite); border-radius: 10px; border: 2px solid var(--bg-deep); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 10000;
  background: var(--gold);
  color: #08080a;
  padding: .7rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { left: 12px; }

/* ============ 3. UTILIDADES Y ANIMACIÓN ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4.5rem, 9vw, 9rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 6rem); }
.section--alt { background: var(--surface); }
.section--deep { background: var(--bg-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: var(--step-3); margin-bottom: .55rem; }
.section-sub { color: var(--text-muted); font-size: var(--step-0); max-width: 60ch; }
.section-head--center .section-sub { margin-inline: auto; }

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
}

.italic-accent { font-style: italic; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity .95s var(--ease-out), transform .95s var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--left  { transform: translate3d(-42px, 0, 0); }
.reveal--right { transform: translate3d(42px, 0, 0); }
.reveal--scale { transform: scale(.94); }
.reveal--blur  { filter: blur(12px); transition-property: opacity, transform, filter; }
.reveal--blur.is-visible { filter: blur(0); }

/* Máscara de aparición para títulos grandes */
.mask-line { display: block; overflow: hidden; }
.mask-line > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1.1s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.is-visible .mask-line > span,
.mask-line.is-visible > span { transform: none; }

/* Botones */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--line-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .95rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-gold);
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); border-color: transparent; color: #0a0a0b; box-shadow: var(--shadow-gold); }
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: translateY(0); }

.btn--gold { --btn-fg: #0a0a0b; --btn-bd: transparent; background: var(--gradient-gold); background-size: 200% auto; }
.btn--gold::before { background: var(--text); }
.btn--gold:hover { color: var(--bg); }
html[data-theme="light"] .btn--gold:hover { color: var(--surface); }

.btn--ghost { --btn-bd: var(--line-strong); }
.btn--sm { padding: .62rem 1.15rem; font-size: .7rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--text);
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  position: relative;
  flex: none;
}
.btn-icon:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn-icon svg { width: 19px; height: 19px; }

.count-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: #0a0a0b;
  font-size: .64rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform .35s var(--ease-out);
  font-family: var(--font-body);
}
.count-badge.on { transform: scale(1); }

/* Enlace con subrayado animado */
.link-underline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 3px;
  cursor: pointer;
  background: none;
  border: 0;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }
.link-underline svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.link-underline:hover svg { transform: translateX(4px); }

/* Tarjeta base */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .55s var(--ease-out), border-color .55s var(--ease), box-shadow .55s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }

/* Marco dorado en hover */
.gilded { position: relative; }
.gilded::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: var(--gradient-gold) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.gilded:hover::after { opacity: 1; }

.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-2);
}
.pill--gold { color: var(--gold-bright); border-color: color-mix(in srgb, var(--gold) 45%, transparent); background: color-mix(in srgb, var(--gold) 12%, transparent); }
.pill--sale { color: #ffd9d0; border-color: rgba(224,85,63,.5); background: rgba(224,85,63,.16); }
html[data-theme="light"] .pill--sale { color: #8c2f1c; }

.stars { display: inline-flex; gap: 2px; color: var(--gold-bright); }
.stars svg { width: 13px; height: 13px; }
.stars .off { opacity: .25; }

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-deep);
  padding-block: 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: .05em;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee__item span { color: var(--gold); font-size: .7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ 4. NAVEGACIÓN ============ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .5s var(--ease), backdrop-filter .5s, border-color .5s, height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 64px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.brand { display: flex; align-items: center; gap: .7rem; flex: none; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .1em;
}
.brand__tag {
  font-size: .5rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: .3rem; margin-inline: auto; }
.nav__link {
  position: relative;
  padding: .5rem .82rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color .35s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: .82rem; right: .82rem; bottom: .18rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav__link:hover, .nav__link.active { color: var(--text); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); transform-origin: left; }

/* margin-left:auto mantiene los botones a la derecha también cuando
   .nav__links está oculto en tablet y móvil. */
.nav__actions { display: flex; align-items: center; gap: .5rem; flex: none; margin-left: auto; }

.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  height: 42px;
}
.lang-switch button {
  background: none;
  border: 0;
  padding: 0 .72rem;
  height: 100%;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.lang-switch button[aria-pressed="true"] { background: var(--gradient-gold); color: #0a0a0b; }

.theme-toggle svg { transition: transform .6s var(--ease-out), opacity .3s; }
.theme-toggle .sun { display: none; }
html[data-theme="light"] .theme-toggle .sun { display: block; }
html[data-theme="light"] .theme-toggle .moon { display: none; }

.nav__burger { display: none; }

/* Barra de progreso de lectura */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: var(--gradient-gold);
  z-index: 950;
}

/* Menú móvil */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 2rem;
  transform: translateY(-100%);
  transition: transform .7s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  padding: .38rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .3s;
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--gold-bright); }
.mobile-menu__foot { margin-top: auto; padding-top: 2rem; display: flex; gap: .7rem; flex-wrap: wrap; }

/* ============ 5. HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: -8% 0 -8%;
  z-index: -2;
  will-change: transform;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  animation: kenburns 24s var(--ease) infinite alternate;
  filter: saturate(.85) contrast(1.06);
}
@keyframes kenburns {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.16) translate3d(-1.5%, -1%, 0); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, var(--bg) 6%, color-mix(in srgb, var(--bg) 72%, transparent) 42%, transparent 78%),
    linear-gradient(to top, var(--bg) 2%, transparent 45%),
    radial-gradient(120% 80% at 78% 20%, color-mix(in srgb, var(--gold) 10%, transparent), transparent 60%);
}
.hero__inner { padding-top: var(--nav-h); width: 100%; }
.hero__content { max-width: min(46rem, 100%); }
.hero__title {
  font-size: var(--step-5);
  line-height: 1.0;
  margin-bottom: 1.4rem;
}
/* La máscara recorta en vertical; el padding evita que corte cursivas y tildes. */
.hero__title .mask-line { padding: .06em .1em .06em 0; margin-left: -.02em; }
.hero__title em { font-style: italic; display: inline-block; }
.hero__sub {
  font-size: var(--step-1);
  color: var(--text-soft);
  max-width: 46ch;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 2.3rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-top: 3.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: min(40rem, 100%);
}
.hero__meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-bright);
}
.hero__meta div span {
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}
.hero__scroll i {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollpulse 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollpulse {
  0%   { transform: scaleY(0); opacity: 0; }
  35%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(46px); opacity: 0; }
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-deep);
  display: grid;
  place-items: center;
  transition: opacity .9s var(--ease), visibility .9s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__logo {
  width: 92px;
  animation: pulse 2s var(--ease) infinite;
}
.preloader__bar {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 50vw);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.preloader__bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gradient-gold);
  animation: loadbar 1.5s var(--ease-out) forwards;
}
@keyframes loadbar { to { width: 100%; } }
@keyframes pulse { 50% { opacity: .45; } }

/* ============ 6. SOBRE MÍ / SERVICIOS ============ */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  filter: grayscale(.15) contrast(1.05);
}
.about__photo:hover img { transform: scale(1.05); }
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--bg) 88%, transparent), transparent 48%);
}
.about__badge {
  position: absolute;
  left: 1.4rem; bottom: 1.4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
}
.about__badge svg { width: 26px; height: 26px; color: var(--gold); }
.about__badge b { font-family: var(--font-display); font-size: 1.05rem; display: block; line-height: 1.1; }
.about__badge span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }

.about__lead { font-size: var(--step-1); color: var(--text-soft); font-weight: 300; line-height: 1.55; }
.about__body p { color: var(--text-muted); }

.quote-block {
  margin: 2rem 0;
  padding: 1.4rem 0 1.4rem 1.6rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.stat {
  background: var(--surface);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  text-align: center;
  transition: background .45s var(--ease);
}
.stat:hover { background: var(--surface-2); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .7rem;
}

.chip-grid { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .74rem;
  color: var(--text-soft);
  background: var(--surface-2);
  transition: border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--text); transform: translateY(-2px); }
.chip svg { width: 14px; height: 14px; color: var(--gold); flex: none; }

.mini-grid {
  display: grid;
  /* --min controla cuántas columnas caben: 320px → 3 col, 240px → 4 col */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min, 240px)), 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.mini-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .5s var(--ease-out), border-color .5s var(--ease), background .5s var(--ease);
}
.mini-card:hover { transform: translateY(-5px); border-color: var(--line-strong); background: var(--surface-2); }
.mini-card__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: color-mix(in srgb, var(--gold) 13%, transparent);
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.mini-card__icon svg { width: 20px; height: 20px; }
.mini-card h4 { font-size: 1.15rem; margin-bottom: .35rem; }
.mini-card p { font-size: var(--step--1); color: var(--text-muted); }

/* Servicios */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.plan:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.plan--featured { border-color: color-mix(in srgb, var(--gold) 55%, transparent); }
.plan--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 55% at 50% 0%, var(--gold-glow), transparent 65%);
  pointer-events: none;
  opacity: .8;
}
.plan__art {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-deep);
  overflow: hidden;
}
.plan__art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.plan__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--surface), transparent 72%);
}
.plan__ribbon {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 3;
}
.plan__body { padding: clamp(1.5rem, 3vw, 2.1rem); display: flex; flex-direction: column; flex: 1; position: relative; }
.plan__name { font-size: var(--step-2); margin-bottom: .3rem; }
.plan__desc { color: var(--text-muted); font-size: var(--step--1); margin-bottom: 1.5rem; }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.plan__price b {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1;
  font-weight: 400;
}
.plan__price i { font-style: normal; color: var(--text-muted); font-size: .85rem; }
.plan__benefits { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: .72rem; }
.plan__benefits li {
  display: flex;
  gap: .7rem;
  font-size: var(--step--1);
  color: var(--text-soft);
  align-items: flex-start;
}
.plan__benefits svg { width: 15px; height: 15px; color: var(--gold); flex: none; margin-top: .28em; }
.plan__cta { margin-top: auto; }

/* ============ 7. TIENDA ============ */
.shop__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  margin-bottom: 1.4rem;
}
.search-box {
  position: relative;
  flex: 1 1 260px;
  min-width: 200px;
}
.search-box input {
  width: 100%;
  padding: .82rem 1rem .82rem 2.8rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: .88rem;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.search-box input:focus { outline: none; border-color: var(--gold); background: var(--surface); }
.search-box input::placeholder { color: var(--text-muted); }
.search-box svg {
  position: absolute;
  left: 1.05rem; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}
.select {
  appearance: none;
  padding: .82rem 2.4rem .82rem 1.1rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: .82rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%2385858e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  transition: border-color .35s var(--ease);
}
.select:focus { outline: none; border-color: var(--gold); }

.filters {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding-bottom: .6rem;
  margin-bottom: 2rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.filters::-webkit-scrollbar { height: 3px; }
.filters::-webkit-scrollbar-thumb { background: var(--graphite); }
.filter-btn {
  flex: none;
  padding: .55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .07em;
  cursor: pointer;
  white-space: nowrap;
  transition: all .35s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--line-strong); }
.filter-btn.active { background: var(--gradient-gold); color: #0a0a0b; border-color: transparent; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(.9rem, 2vw, 1.5rem);
}
.product {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.product:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.product__media {
  position: relative;
  aspect-ratio: 1;
  background: radial-gradient(75% 75% at 50% 30%, var(--surface-3), var(--bg-deep));
  overflow: hidden;
  display: grid;
  place-items: center;
}
/* Las fotos de producto de los proveedores vienen sobre fondo blanco.
   Se les da un pedestal claro para que no recorten como un parche. */
.product__media--photo {
  background: radial-gradient(78% 70% at 50% 34%, #ffffff, #e9e7e2 62%, #cfccc5);
}
.product__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12%;
  transition: transform .7s var(--ease-out);
  mix-blend-mode: multiply;
}
.product:hover .product__media img { transform: scale(1.08) translateY(-4px); }
.product__media svg.art { width: 62%; height: 62%; transition: transform .7s var(--ease-out); }
.product:hover .product__media svg.art { transform: scale(1.07) rotate(-2deg); }

.product__tags { position: absolute; top: .7rem; left: .7rem; display: flex; flex-direction: column; gap: .35rem; z-index: 2; align-items: flex-start; }
.product__wish {
  position: absolute;
  top: .7rem; right: .7rem;
  z-index: 2;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 62%, transparent);
  backdrop-filter: blur(10px);
  color: var(--text-muted);
  cursor: pointer;
  transition: all .35s var(--ease);
}
.product__wish svg { width: 16px; height: 16px; }
.product__wish:hover { color: var(--gold-bright); border-color: var(--gold); transform: scale(1.08); }
.product__wish.on { color: var(--danger); border-color: var(--danger); }
.product__wish.on svg { fill: currentColor; }

.product__quick {
  position: absolute;
  inset: auto 0 0;
  padding: .7rem;
  display: flex;
  gap: .45rem;
  background: linear-gradient(to top, color-mix(in srgb, var(--surface) 96%, transparent), transparent);
  transform: translateY(101%);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s var(--ease);
}
.product:hover .product__quick, .product:focus-within .product__quick { transform: none; opacity: 1; }

.product__body { padding: 1rem 1.05rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.product__cat { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .45rem; }
.product__name { font-family: var(--font-body); font-size: .93rem; font-weight: 600; line-height: 1.35; margin-bottom: .4rem; letter-spacing: 0; }
.product__desc { font-size: .76rem; color: var(--text-muted); line-height: 1.5; margin-bottom: .8rem; }
.product__rating { display: flex; align-items: center; gap: .45rem; font-size: .7rem; color: var(--text-muted); margin-bottom: .85rem; }
.product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.product__price { display: flex; align-items: baseline; gap: .45rem; }
.product__price b { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; }
.product__price s { font-size: .78rem; color: var(--text-muted); }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}
.empty-state svg { width: 46px; height: 46px; margin: 0 auto 1rem; color: var(--graphite); }

/* ============ 8. TRANSFORMACIONES / TESTIMONIOS ============ */
.transformations { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.transform-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }

.ba {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  background: var(--bg-deep);
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba__after { clip-path: inset(0 0 0 var(--split, 50%)); }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split, 50%);
  width: 2px;
  background: var(--gold-bright);
  pointer-events: none;
  box-shadow: 0 0 18px var(--gold-glow);
}
.ba__handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  backdrop-filter: blur(8px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='12' viewBox='0 0 22 12' fill='none' stroke='%23e8cd7a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 2 1 6l4 4M17 2l4 4-4 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.ba__label {
  position: absolute;
  bottom: .9rem;
  z-index: 2;
  padding: .28rem .7rem;
  border-radius: 999px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  pointer-events: none;
}
.ba__label--b { left: .9rem; }
.ba__label--a { right: .9rem; color: var(--gold-bright); border-color: color-mix(in srgb, var(--gold) 50%, transparent); }

.transform-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.transform-card__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.transform-card__head h3 { font-size: 1.4rem; margin: 0; }
.transform-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.transform-metrics div { background: var(--surface-2); padding: .75rem .5rem; text-align: center; }
.transform-metrics b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-bright); line-height: 1.1; }
.transform-metrics span { font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.transform-card blockquote { margin: 0; font-size: .84rem; color: var(--text-muted); font-style: italic; line-height: 1.6; }

/* Testimonios — carrusel */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.6rem);
  transition: transform .8s var(--ease-out);
  will-change: transform;
}
.testimonial {
  flex: 0 0 calc((100% - 2 * clamp(1rem, 2vw, 1.6rem)) / 3);
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: .1rem; right: 1.2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: .14;
}
.testimonial p { font-size: .92rem; color: var(--text-soft); line-height: 1.7; flex: 1; }
.testimonial__foot { display: flex; align-items: center; gap: .85rem; margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  background: var(--gradient-gold);
  color: #0a0a0b;
  flex: none;
  letter-spacing: .03em;
}
.testimonial__foot b { display: block; font-size: .88rem; font-weight: 600; }
.testimonial__foot span { font-size: .7rem; color: var(--gold); }
.carousel__nav { display: flex; gap: .55rem; justify-content: center; margin-top: 2rem; align-items: center; }
.carousel__dots { display: flex; gap: .45rem; margin-inline: 1rem; }
.carousel__dots button {
  width: 7px; height: 7px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: var(--graphite);
  cursor: pointer;
  transition: all .4s var(--ease);
}
.carousel__dots button.active { background: var(--gold); width: 26px; border-radius: 999px; }

/* ============ 9. BLOG / GALERÍA ============ */
.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(1rem, 2vw, 1.7rem); }
.post {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.post:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.post__art { position: relative; aspect-ratio: 16 / 10; background: var(--bg-deep); overflow: hidden; }
.post__art svg { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform 1s var(--ease-out); }
.post:hover .post__art svg { transform: scale(1.06); }
.post__cat {
  position: absolute;
  left: .85rem; top: .85rem;
  z-index: 2;
  padding: .28rem .7rem;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  color: var(--gold-bright);
}
.post__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post__meta { display: flex; flex-wrap: wrap; gap: .8rem; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .8rem; }
.post__title { font-size: 1.3rem; line-height: 1.2; margin-bottom: .55rem; }
.post__excerpt { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.3rem; }
.post__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.post__author { display: flex; align-items: center; gap: .55rem; font-size: .72rem; color: var(--text-muted); }
.post__author .avatar { width: 28px; height: 28px; font-size: .68rem; }

/* Galería masonry */
.gallery { columns: 3; column-gap: clamp(.7rem, 1.5vw, 1.1rem); }
.gallery__item {
  break-inside: avoid;
  margin-bottom: clamp(.7rem, 1.5vw, 1.1rem);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--line);
}
.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 1s var(--ease-out), filter .6s var(--ease);
  filter: grayscale(.35) contrast(1.04);
}
.gallery__item:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1.08); }
.gallery__item.tall img { aspect-ratio: 3/4.4; object-fit: cover; }
.gallery__item.wide img { aspect-ratio: 16/9; object-fit: cover; }
.gallery__item:not(.tall):not(.wide) img { aspect-ratio: 1; object-fit: cover; }
.gallery__cap {
  position: absolute;
  inset: auto 0 0;
  padding: 2.2rem .95rem .85rem;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease-out);
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 970;
  background: rgba(0,0,0,.94);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.2rem; }
.lightbox__cap { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: #d8d8d8; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }

/* ============ 10. AGENDA / FAQ / CONTACTO ============ */
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.panel__title { font-size: 1.35rem; margin-bottom: 1.3rem; display: flex; align-items: center; gap: .7rem; }
.panel__title svg { width: 19px; height: 19px; color: var(--gold); }

.field { margin-bottom: 1.05rem; }
.field label {
  display: block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: .82rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .9rem;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--surface); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--danger); }
.field__error { display: none; font-size: .7rem; color: var(--danger); margin-top: .4rem; }
.field.invalid .field__error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Calendario */
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
/* Solo la inicial en mayúscula: "Agosto de 2026", no "Agosto De 2026". */
.cal__month { font-family: var(--font-display); font-size: 1.15rem; }
.cal__month::first-letter { text-transform: uppercase; }
.cal__nav { display: flex; gap: .4rem; }
.cal__nav button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.cal__nav button:hover:not([disabled]) { border-color: var(--gold); color: var(--gold-bright); }
.cal__nav button[disabled] { opacity: .3; cursor: not-allowed; }
.cal__nav svg { width: 14px; height: 14px; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dow { text-align: center; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); padding-bottom: .5rem; }
.cal__day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text-soft);
  font-size: .8rem;
  cursor: pointer;
  transition: all .28s var(--ease);
  display: grid;
  place-items: center;
}
.cal__day:hover:not([disabled]) { border-color: var(--gold); color: var(--text); }
.cal__day[disabled] { opacity: .22; cursor: not-allowed; background: transparent; }
.cal__day.selected { background: var(--gradient-gold); color: #0a0a0b; font-weight: 700; border-color: transparent; }
.cal__day.today { border-color: var(--line-strong); }
.cal__empty { aspect-ratio: 1; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: .5rem; margin-top: 1.3rem; }
.slot {
  padding: .6rem .3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text-soft);
  font-size: .78rem;
  cursor: pointer;
  transition: all .28s var(--ease);
  font-variant-numeric: tabular-nums;
}
.slot:hover:not([disabled]) { border-color: var(--gold); color: var(--text); }
.slot.selected { background: var(--gradient-gold); color: #0a0a0b; font-weight: 700; border-color: transparent; }
.slot[disabled] { opacity: .25; cursor: not-allowed; text-decoration: line-through; }

.booking-summary {
  background: var(--surface-2);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 1.2rem;
  font-size: .82rem;
}
.booking-summary dl { display: grid; grid-template-columns: auto 1fr; gap: .45rem 1rem; margin: 0; }
.booking-summary dt { color: var(--text-muted); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.booking-summary dd { margin: 0; text-align: right; font-weight: 600; }

/* FAQ acordeón */
.faq { max-width: 880px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem .3rem;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.3;
  transition: color .35s var(--ease);
}
.faq__q:hover { color: var(--gold-bright); }
.faq__icon {
  position: relative;
  width: 20px; height: 20px;
  flex: none;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  transition: transform .45s var(--ease-out), opacity .3s;
}
.faq__icon::before { width: 16px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 16px; }
.faq__item.open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease-out);
}
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 3rem 1.5rem .3rem;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.75;
}
.faq__tag { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .3rem; }

/* Contacto */
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.contact-list { display: grid; gap: .8rem; margin-bottom: 1.6rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.contact-item:hover { border-color: var(--gold); transform: translateX(4px); background: var(--surface-2); }
.contact-item__icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--gold) 13%, transparent);
  color: var(--gold-bright);
  flex: none;
}
.contact-item__icon svg { width: 19px; height: 19px; }
.contact-item b { display: block; font-size: .87rem; font-weight: 600; }
.contact-item span { font-size: .72rem; color: var(--text-muted); }

.hours { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.6rem; }
.hours__row { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 1.15rem; font-size: .82rem; background: var(--surface); }
.hours__row + .hours__row { border-top: 1px solid var(--line); }
.hours__row span:first-child { color: var(--text-muted); }
.hours__row span:last-child { font-variant-numeric: tabular-nums; color: var(--text); }

.map {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-deep);
  display: block;
}
.map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__pin {
  position: absolute;
  top: 47%; left: 50%;
  transform: translate(-50%, -100%);
  color: var(--gold-bright);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.5));
  animation: pinbounce 2.6s var(--ease) infinite;
}
.map__pin svg { position: static; width: 34px; height: 34px; }
@keyframes pinbounce { 0%,100% { transform: translate(-50%,-100%); } 50% { transform: translate(-50%,-118%); } }
.map__overlay {
  position: absolute;
  inset: auto .8rem .8rem;
  padding: .9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .78rem;
}
.map__overlay b { color: var(--gold-bright); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }

.socials { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ============ 11. FOOTER Y FLOTANTES ============ */
.footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 5rem) 0; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer ul a { font-size: .84rem; color: var(--text-muted); transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer ul a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer__about p { font-size: .84rem; color: var(--text-muted); max-width: 40ch; margin-top: 1.2rem; }

.newsletter { display: flex; gap: .5rem; margin-top: 1rem; }
.newsletter input {
  flex: 1;
  min-width: 0;
  padding: .75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: .82rem;
}
.newsletter input:focus { outline: none; border-color: var(--gold); }
.newsletter button {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--gradient-gold);
  color: #0a0a0b;
  cursor: pointer;
  display: grid; place-items: center;
  transition: transform .35s var(--ease);
}
.newsletter button:hover { transform: translateX(3px); }
.newsletter button svg { width: 17px; height: 17px; }

.footer__bar {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: .74rem;
  color: var(--text-muted);
}
.footer__bar nav { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer__bar nav a:hover { color: var(--gold-bright); }

.floaters {
  position: fixed;
  right: clamp(.9rem, 2.5vw, 1.8rem);
  bottom: clamp(.9rem, 2.5vw, 1.8rem);
  z-index: 880;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  align-items: flex-end;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease-out), opacity .4s var(--ease), visibility .4s;
  position: relative;
}
.fab:hover { transform: scale(1.09) translateY(-2px); }
.fab svg { width: 25px; height: 25px; }
.fab--wa { background: #25d366; color: #fff; }
.fab--wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: ripple 2.6s var(--ease) infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}
.fab--top {
  background: var(--surface-3);
  color: var(--text);
  border: 1px solid var(--line-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
.fab--top.show { opacity: 1; visibility: visible; transform: none; }

.wa-tip {
  position: absolute;
  right: calc(100% + .7rem);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  background: var(--surface-3);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .74rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease-out);
}
.fab--wa:hover .wa-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ============ 12. DRAWERS, MODALES, TOASTS ============ */
.scrim {
  position: fixed;
  inset: 0;
  z-index: 955;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.scrim.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 960;
  height: 100dvh;
  width: min(430px, 100vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .65s var(--ease-out);
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: none; }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.drawer__head h3 { font-size: 1.4rem; margin: 0; }
.drawer__body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }
.drawer__foot { flex: none; padding: 1.3rem 1.4rem; border-top: 1px solid var(--line); background: var(--surface-2); }

.cart-item { display: flex; gap: .9rem; padding: .95rem 0; border-bottom: 1px solid var(--line); }
.cart-item__media {
  width: 68px; height: 68px;
  flex: none;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.cart-item__media--photo { background: radial-gradient(80% 72% at 50% 34%, #ffffff, #ddd9d2); }
.cart-item__media img { width: 100%; height: 100%; object-fit: contain; padding: 8%; mix-blend-mode: multiply; }
.cart-item__media svg.art { width: 66%; height: 66%; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__info b { display: block; font-size: .84rem; font-weight: 600; line-height: 1.35; margin-bottom: .2rem; }
.cart-item__info small { color: var(--text-muted); font-size: .72rem; }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: .6rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button {
  width: 27px; height: 27px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-size: .95rem;
  line-height: 1;
  transition: background .3s, color .3s;
}
.qty button:hover { background: var(--surface-3); color: var(--gold-bright); }
.qty span { min-width: 26px; text-align: center; font-size: .8rem; font-variant-numeric: tabular-nums; }
.cart-item__price { font-family: var(--font-display); font-size: 1.05rem; }
.icon-btn-x {
  background: none; border: 0; cursor: pointer;
  color: var(--text-muted); padding: 2px;
  transition: color .3s;
}
.icon-btn-x:hover { color: var(--danger); }
.icon-btn-x svg { width: 15px; height: 15px; }

.totals { display: grid; gap: .5rem; margin-bottom: 1.1rem; font-size: .85rem; }
.totals div { display: flex; justify-content: space-between; }
.totals .grand { padding-top: .7rem; border-top: 1px solid var(--line); font-size: 1rem; }
.totals .grand b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.pay-note { display: flex; align-items: center; justify-content: center; gap: .7rem; margin-top: .9rem; font-size: .66rem; color: var(--text-muted); letter-spacing: .08em; }
.pay-note svg { width: 13px; height: 13px; color: var(--success); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 965;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
  overflow-y: auto;
}
.modal.open { opacity: 1; visibility: visible; }
.modal__box {
  position: relative;
  width: min(720px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 3rem);
  transform: translateY(28px) scale(.97);
  transition: transform .55s var(--ease-out);
  box-shadow: var(--shadow-lg);
}
.modal.open .modal__box { transform: none; }
.modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 2; }
.modal__box h2 { font-size: var(--step-2); }
.modal__box .article-body p { color: var(--text-soft); line-height: 1.85; font-size: .95rem; }
.modal__box .article-body p::first-letter { }

.pay-methods { display: grid; gap: .7rem; margin: 1.4rem 0; }
.pay-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  cursor: pointer;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.pay-method:hover, .pay-method.sel { border-color: var(--gold); background: var(--surface-3); }
.pay-method input { accent-color: var(--gold); width: 16px; height: 16px; flex: none; }
.pay-method b { font-size: .9rem; display: block; }
.pay-method small { color: var(--text-muted); font-size: .72rem; }
.pay-method__logo { margin-left: auto; font-weight: 800; letter-spacing: -.02em; color: var(--text-muted); font-size: .95rem; flex: none; }

.success-mark {
  width: 74px; height: 74px;
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  display: grid; place-items: center;
  border: 2px solid var(--success);
  color: var(--success);
}
.success-mark svg { width: 34px; height: 34px; }

.toasts {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 3vw, 2rem);
  transform: translateX(-50%);
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  align-items: center;
  pointer-events: none;
  width: min(420px, calc(100vw - 2rem));
}
.toast {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  font-size: .84rem;
  animation: toastin .5s var(--ease-out);
  max-width: 100%;
}
.toast.out { animation: toastout .4s var(--ease) forwards; }
.toast svg { width: 17px; height: 17px; color: var(--gold-bright); flex: none; }
.toast.ok svg { color: var(--success); }
@keyframes toastin  { from { opacity: 0; transform: translateY(20px) scale(.94); } }
@keyframes toastout { to   { opacity: 0; transform: translateY(12px) scale(.96); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; }
  .testimonial { flex-basis: calc((100% - clamp(1rem, 2vw, 1.6rem)) / 2); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
}

@media (max-width: 860px) {
  :root { --nav-h: 66px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 460px; }
  .booking { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.6rem; }
  .lang-switch { height: 38px; }
  .btn-icon { width: 38px; height: 38px; }
}

@media (max-width: 620px) {
  .testimonial { flex-basis: 100%; }
  .gallery { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 100%; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
  .product__body { padding: .8rem .85rem 1rem; }
  .product__desc { display: none; }
  .transform-metrics b { font-size: .95rem; }
  .faq__a p { padding-right: 1rem; }
  .drawer { width: 100vw; }
  .nav__actions .lang-switch { display: none; }
  .mobile-menu__foot .lang-switch { display: flex; }
  /* El eslogan no cabe junto a los 4 botones: se conserva en el footer. */
  .nav .brand__tag { display: none; }
  .nav .brand__name { font-size: 1.2rem; }
  .nav__actions { gap: .35rem; }
  .nav__inner { gap: .75rem; }
}

/* ============ ACCESIBILIDAD ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .mask-line > span { transform: none !important; }
  .hero__media img { animation: none; }
}

@media print {
  .nav, .floaters, .drawer, .scrim, .preloader, .mobile-menu, .hero__scroll { display: none !important; }
  body { background: #fff; color: #000; }
}
