/* ============================================
   TOKENS
   ============================================ */
:root {
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  --black:    #0d0b09;
  --white:    #fafaf8;
  --gold:     #bd9751;
  --gold-lt:  #ffe390;
  --charcoal: #131110;
  --stone:    #2a2218;
  --muted:    #7a7060;
  --border:   rgba(189,151,81,0.18);
  --border-s: rgba(189,151,81,0.45);

  --font-display: 'Cormorant Garamond', serif;
  /* Fuente display del hero (Brinda/Disfruta/Repite). Placeholder tipo Juniper
     hasta adquirir la licencia de TAN St. Canard / Extenda — cambiar solo aquí. */
  --font-hero: 'Playfair Display', serif;
  --font-impact:  'Big Shoulders Display', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 400ms var(--ease-out), backdrop-filter 400ms var(--ease-out);
}
nav.scrolled {
  background: rgba(13,11,9,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 64px; width: auto; transition: height 300ms var(--ease-out); }
nav.scrolled .nav-logo img { height: 54px; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-social { display: flex; align-items: center; gap: 0.85rem; }
.nav-social a { color: rgba(250,250,248,0.6); display: flex; transition: color 200ms var(--ease-out), transform 160ms var(--ease-out); }
.nav-social a svg { width: 18px; height: 18px; stroke: currentColor; }
.nav-social a:active { transform: scale(0.9); }
@media (hover: hover) and (pointer: fine) { .nav-social a:hover { color: var(--gold); } }
.mobile-social { display: flex; gap: 1.4rem; margin-top: 2rem; }
.mobile-social a { color: rgba(250,250,248,0.7); display: flex; }
.mobile-social a svg { width: 24px; height: 24px; stroke: currentColor; }
.mobile-social a:active { color: var(--gold); }
.nav-links a {
  font-size: 0.74rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(250,250,248,0.65);
  transition: color 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .nav-links a:hover { color: var(--gold); } }

.nav-cta {
  font-family: var(--font-impact);
  font-size: 0.92rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--black); background: var(--gold);
  padding: 0.6rem 1.5rem; border-radius: 2px;
  transition: transform 160ms var(--ease-out), background 200ms var(--ease-out);
}
.nav-cta:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .nav-cta:hover { background: var(--gold-lt); } }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--white); transition: transform 300ms var(--ease-out), opacity 200ms; }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(13,11,9,0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  transform: translateY(-100%);
  transition: transform 450ms var(--ease-drawer);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-impact); font-size: 2.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: rgba(250,250,248,0.55); transition: color 200ms var(--ease-out);
}
.mobile-menu a:active { color: var(--gold); }

/* ============================================
   HERO — video de fondo + tipografía condensada
   con tensión entre impacto bold y trazo itálico
   ============================================ */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  padding-top: 40vh;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--black);
  overflow: hidden;
}
.hero-bg video,
.hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.85;
  transform: scale(1.06);
  will-change: transform;
}
#heroImgFallback { z-index: -1; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(13,11,9,0.45) 0%,
    rgba(13,11,9,0.20) 40%,
    rgba(13,11,9,0.60) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 2rem; width: 100%; max-width: 1200px;
}
/* 3 palabras estilo Juniper — distribuidas a lo ancho, cada una con línea debajo */
.hero-words {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; margin-bottom: 2.6rem; flex-wrap: nowrap;
}
.hero-word {
  flex: 1;
  font-family: var(--font-hero); font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 5.5rem); line-height: 1;
  color: var(--white); letter-spacing: 0.01em;
  position: relative; padding-bottom: 0.5rem;
  opacity: 0; transform: translateY(20px);
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-word::after {
  content: ''; position: absolute; left: 15%; right: 15%; bottom: 0;
  height: 1px; background: rgba(250,250,248,0.55);
}
.hero-subtitle {
  font-size: clamp(0.92rem, 1.4vw, 1.1rem); font-weight: 300; line-height: 1.7;
  color: rgba(250,250,248,0.82); max-width: 60ch; margin: 0 auto 1rem;
  opacity: 0; transform: translateY(16px);
}
.hero-locations {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  white-space: pre-wrap;
  opacity: 0; transform: translateY(16px);
}


.btn-primary {
  font-family: var(--font-impact); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 1rem 2.2rem; border-radius: 2px;
  transition: transform 160ms var(--ease-out), background 200ms var(--ease-out);
}
.btn-primary:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); } }

.btn-ghost {
  font-family: var(--font-impact); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); border: 1px solid var(--border-s); padding: 1rem 2.2rem; border-radius: 2px;
  transition: transform 160ms var(--ease-out), border-color 200ms, background 200ms var(--ease-out);
}
.btn-ghost:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .btn-ghost:hover { border-color: var(--gold); background: rgba(189,151,81,0.06); } }

.hero-scroll {
  position: absolute; bottom: 5.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2; opacity: 0;
}
.hero-scroll span { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,250,248,0.4); }
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ============================================
   BARRA DE RESERVA — ancho completo, fija abajo,
   visible en todo el sitio excepto en el Hero
   ============================================ */
.reserve-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-impact);
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  padding: 1rem 1rem;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
  transform: translateY(110%);
  transition: transform 380ms var(--ease-out), background 200ms var(--ease-out);
}
.reserve-bar.visible { transform: translateY(0); }
.reserve-bar:active { background: var(--gold-dk, var(--gold)); }
@media (hover: hover) and (pointer: fine) {
  .reserve-bar:hover { background: var(--gold-lt); }
}
.rb-icon { width: 19px; height: 19px; display: flex; }
.rb-icon svg { width: 100%; height: 100%; stroke: currentColor; }

/* ============================================
   MICRO-CTA — refuerzos de reservación por sección
   ============================================ */
.micro-cta-wrap { text-align: center; margin-top: 3rem; padding: 0 1.5rem; }
.micro-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-impact); font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--border-s);
  transition: all 220ms var(--ease-out);
}
.micro-cta::after { content: '→'; transition: transform 220ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .micro-cta:hover { color: var(--gold-lt); border-bottom-color: var(--gold); }
  .micro-cta:hover::after { transform: translateX(4px); }
}

/* ============================================
   COMMONS
   ============================================ */
section { position: relative; }
.section-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.section-title {
  font-family: var(--font-impact); font-weight: 800;
  font-size: clamp(2.2rem,8vw,5.2rem);
  line-height: 0.95; letter-spacing: 0.005em;
  text-transform: uppercase;
}
.section-title em { font-family: var(--font-display); font-style: italic; font-weight: 500; text-transform: lowercase; color: var(--gold-lt); letter-spacing: 0; }
.divider { width: 55px; height: 3px; background: var(--gold); margin: 1.6rem 0; }
.reveal { opacity: 0; transform: translateY(24px); }

/* ============================================
   NOSOTROS
   ============================================ */
#nosotros { padding: 8rem 3rem; }
.nosotros-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; min-width: 0; }
.nosotros-media { position: relative; overflow: hidden; border-radius: 2px; min-width: 0; }
.nosotros-text { min-width: 0; max-width: 100%; }
.nosotros-media img { width: 100%; height: 600px; object-fit: cover; }
.nosotros-media::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--border); pointer-events: none; border-radius: 2px; }
.nosotros-text p { font-size: 0.97rem; font-weight: 300; line-height: 1.82; color: rgba(250,250,248,0.78); margin-bottom: 1.2rem; overflow-wrap: break-word; word-break: break-word; }
.nosotros-subtitle {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 2.2rem !important; color: var(--gold-lt); margin-top: -0.2rem; margin-bottom: 0;
}

/* ============================================
   RESEÑAS DE GOOGLE — sección independiente
   ============================================ */
#resenas { padding: 6rem 3rem 7rem; background: var(--black); overflow: hidden; }
.resenas-inner { max-width: 1300px; margin: 0 auto; }
.resenas-head { text-align: center; margin-bottom: 3rem; }
.resenas-swiper { padding-bottom: 3rem !important; overflow: visible; }
.resenas-swiper .swiper-slide {
  width: 380px; max-width: 82vw; height: auto;
}
.resena-card {
  background: var(--black); border: 1px solid var(--border);
  border-radius: 4px; padding: 2rem; height: 100%;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 250ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .resena-card:hover { border-color: var(--border-s); } }
.resena-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.15em; }
.resena-texto { font-size: 0.92rem; font-weight: 300; line-height: 1.7; color: rgba(250,250,248,0.82); flex: 1; }
.resena-autor { display: flex; align-items: center; gap: 0.8rem; margin-top: 0.5rem; }
.resena-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-impact); font-weight: 700; font-size: 1.1rem;
}
.resena-nombre { font-size: 0.85rem; font-weight: 500; color: var(--white); }
.resena-fuente { font-size: 0.72rem; font-weight: 300; color: var(--muted); }
.resenas-swiper .swiper-pagination-bullet { background: var(--muted); opacity: 1; }
.resenas-swiper .swiper-pagination-bullet-active { background: var(--gold); }
.nosotros-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.stat-item { padding: 1.5rem; border: 1px solid var(--border); border-radius: 2px; }
.stat-num { font-family: var(--font-impact); font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.76rem; font-weight: 300; color: var(--muted); margin-top: 0.3rem; }

/* ============================================
   PROPUESTA GASTRONÓMICA (estilo Santo Mar)
   ============================================ */
#menu { padding: 8rem 3rem; background: var(--black); }
.propuesta-inner {
  max-width: 1350px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 0.7fr; gap: 2rem; align-items: center; min-width: 0;
}
.propuesta-text { order:2; }
.propuesta-galeria { order:1; } 

.propuesta-text { min-width: 0; max-width: 100%; }
.propuesta-desc {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  color: rgba(250,250,248,0.78); margin: 1.6rem 0 2.2rem; max-width: 44ch;
  overflow-wrap: break-word;
}
.propuesta-btn {
  display: inline-block;
  font-family: var(--font-impact); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 0.9rem 2.4rem; border-radius: 100px;
  transition: transform 160ms var(--ease-out), background 200ms var(--ease-out);
}
.propuesta-btn:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .propuesta-btn:hover { background: var(--gold-lt); transform: translateY(-1px); } }

.propuesta-galeria { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; min-width: 0; }
.propuesta-foto {
  position: relative; overflow: hidden; border-radius: 3px;
  aspect-ratio: 3 / 4.2; padding: 0; display: block; width: 100%;
  transition: transform 160ms var(--ease-out);
}
.propuesta-foto img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--ease-out); }
.propuesta-foto:nth-child(2) { transform: translateY(2rem); }
.propuesta-foto:nth-child(2):active { transform: translateY(2rem) scale(0.98); }
.propuesta-foto:active { transform: scale(0.98); }
@media (hover: hover) and (pointer: fine) { .propuesta-foto:hover img { transform: scale(1.06); } }
.propuesta-foto::after {
  content: ''; position: absolute; inset: 0; border-radius: 3px; pointer-events: none;
  border: 1px solid var(--border);
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 45%);
}
.propuesta-foto-label {
  position: absolute; left: 0; right: 0; bottom: 1rem; z-index: 2;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 1.25rem; color: var(--white); text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ============================================
   EXPERIENCIA / EVENTOS
   ============================================ */
#experiencia { padding: 8rem 3rem; background: var(--black); }
.experiencia-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; min-width: 0;
}
.experiencia-video {
  position: relative; overflow: hidden; border-radius: 4px;
  background: #000; min-height: 460px;
}
.experiencia-video video,
.experiencia-video-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.experiencia-video video { z-index: 1; }
.experiencia-video-fallback { z-index: 0; }
.experiencia-video::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
  border: 1px solid var(--border); border-radius: 4px; pointer-events: none;
}
.experiencia-content { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.exp-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.exp-card {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  gap: 0.35rem; padding: 1.5rem 1.8rem; position: relative;
  background: var(--charcoal); border: 1px solid var(--border); border-radius: 3px;
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out), transform 160ms var(--ease-out);
}
.exp-card:active { transform: scale(0.99); }
@media (hover: hover) and (pointer: fine) {
  .exp-card:hover { border-color: var(--gold); background: rgba(189,151,81,0.05); }
  .exp-card:hover .exp-card-arrow { transform: translateX(4px); color: var(--gold); }
}
.exp-card-name {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 1.5rem; color: var(--white);
}
.exp-card-desc { font-size: 0.78rem; font-weight: 300; color: var(--muted); letter-spacing: 0.02em; }
.exp-card-arrow {
  position: absolute; top: 1.6rem; right: 1.8rem;
  color: var(--muted); transition: transform 200ms var(--ease-out), color 200ms var(--ease-out);
}
.exp-card-arrow svg { width: 20px; height: 20px; stroke: currentColor; }

/* Overlay Experiencia — collage por concepto */
.exp-overlay {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  background: rgba(8,7,6,0.9); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity 320ms var(--ease-out);
}
.exp-overlay.open { opacity: 1; pointer-events: all; }
.exp-overlay-box {
  position: relative; z-index: 2; width: 100%; max-width: 1000px; max-height: 88vh;
  background: var(--charcoal); border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; transform: scale(0.96) translateY(10px);
  transition: transform 340ms var(--ease-drawer);
}
.exp-overlay.open .exp-overlay-box { transform: scale(1) translateY(0); }
.exp-overlay-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(13,11,9,0.7); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms var(--ease-out);
}
.exp-overlay-close svg { width: 20px; height: 20px; stroke: currentColor; }
@media (hover: hover) and (pointer: fine) { .exp-overlay-close:hover { background: var(--gold); color: var(--black); } }
.exp-overlay-scroll { overflow-y: auto; max-height: 88vh; padding: 3rem; }
.exp-overlay-title {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin: 0.4rem 0 0.8rem;
}
.exp-overlay-desc {
  font-size: 0.96rem; font-weight: 300; line-height: 1.8;
  color: rgba(250,250,248,0.75); max-width: 62ch; margin-bottom: 2rem;
}
/* Collage: mezcla de fotos grandes y pequeñas */
.exp-collage {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem;
  grid-auto-rows: 340px;
}
.exp-collage-item { overflow: hidden; border-radius: 3px; }
.exp-collage-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .exp-collage-item:hover img { transform: scale(1.06); } }
.exp-collage-item.big { grid-column: span 2; grid-row: span 2; }
.exp-overlay-footer { margin-top: 2rem; text-align: center; }
.exp-overlay-cierre {
  font-family: var(--font-display); font-style: italic; font-size: 1.3rem;
  color: var(--white); margin-bottom: 1.2rem;
}
.exp-overlay-btn {
  display: inline-block;
  font-family: var(--font-impact); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 0.85rem 2rem; border-radius: 100px;
  transition: transform 160ms var(--ease-out), background 200ms var(--ease-out);
}
.exp-overlay-btn:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .exp-overlay-btn:hover { background: var(--gold-lt); } }

/* ============================================
   RESERVACIÓN
   ============================================ */
#reservacion { padding: 8rem 3rem; }
.reservacion-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.reservacion-info p { font-size: 0.94rem; font-weight: 300; line-height: 1.82; color: rgba(250,250,248,0.68); margin-bottom: 2rem; }
.info-blocks { display: flex; flex-direction: column; gap: 1rem; }
.info-block {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem;
  border: 1px solid var(--border); border-radius: 2px;
  transition: border-color 250ms var(--ease-out), background 200ms;
}
@media (hover: hover) and (pointer: fine) { .info-block:hover { border-color: var(--border-s); background: rgba(189,151,81,0.03); } }
.info-icon { width: 36px; height: 36px; border: 1px solid var(--border-s); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.info-label { font-size: 0.67rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.info-value { font-size: 0.88rem; font-weight: 300; color: var(--white); line-height: 1.55; }

.form-card { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; }
.form-title { font-family: var(--font-impact); font-size: 1.9rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.3rem; }
.form-subtitle { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-label { font-size: 0.67rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 2px;
  color: var(--white); font-family: var(--font-body); font-size: 0.88rem; font-weight: 300;
  padding: 0.85rem 1rem; outline: none; width: 100%;
  transition: border-color 200ms var(--ease-out), background 200ms;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: rgba(189,151,81,0.04); }
.form-select option { background: var(--charcoal); }
.form-textarea { resize: none; height: 80px; }
.form-submit {
  width: 100%; font-family: var(--font-impact); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 1rem; border-radius: 2px; margin-top: 0.5rem;
  transition: transform 160ms var(--ease-out), background 200ms var(--ease-out), filter 200ms;
}
.form-submit:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .form-submit:hover { background: var(--gold-lt); } }
.form-submit.loading { pointer-events: none; filter: brightness(0.8); }
.form-msg { font-size: 0.8rem; font-weight: 300; padding: 0.75rem 1rem; border-radius: 2px; margin-top: 0.75rem; display: none; }
.form-msg.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #86efac; display: block; }
.form-msg.error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; display: block; }

/* ============================================
   SUCURSALES
   ============================================ */
#sucursales { padding: 8rem 3rem; background: var(--black); }
.sucursales-inner { max-width: 1300px; margin: 0 auto; }
.sucursales-header { text-align: center; margin-bottom: 3rem; }
.sucursales-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: var(--border); }
.sucursal-card { background: var(--black); padding: 3rem; position: relative; overflow: hidden; }
.sucursal-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform 400ms var(--ease-out); transform-origin: left; }
@media (hover: hover) and (pointer: fine) { .sucursal-card:hover::before { transform: scaleX(1); } }
.sucursal-flag { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.sucursal-flag::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.sucursal-name { font-family: var(--font-impact); font-size: 2.4rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.5rem; }
.sucursal-address { font-size: 0.86rem; font-weight: 300; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.sucursal-foto { position: relative; overflow: hidden; border-radius: 2px; margin-bottom: 1.25rem; aspect-ratio: 16 / 10; }
.sucursal-foto img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .sucursal-card:hover .sucursal-foto img { transform: scale(1.05); } }
.sucursal-foto::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--border); pointer-events: none; border-radius: 2px; }
.sucursal-details { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.sucursal-detail { display: flex; align-items: center; gap: 0.75rem; font-size: 0.84rem; font-weight: 300; color: rgba(250,250,248,0.72); }
.sucursal-detail svg { width: 14px; height: 14px; stroke: var(--gold); flex-shrink: 0; }
.sucursal-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.sucursal-btn { font-family: var(--font-impact); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; padding: 0.65rem 1.2rem; border-radius: 2px; transition: all 200ms var(--ease-out); }
.sucursal-btn:active { transform: scale(0.97); }
.sucursal-btn.primary { background: var(--gold); color: var(--black); }
@media (hover: hover) and (pointer: fine) { .sucursal-btn.primary:hover { background: var(--gold-lt); } }
.sucursal-btn.outline { border: 1px solid var(--border-s); color: var(--muted); }
@media (hover: hover) and (pointer: fine) { .sucursal-btn.outline:hover { border-color: var(--gold); color: var(--white); } }

/* ============================================
   FOOTER
   ============================================ */
footer { padding: 5rem 3rem 6rem; background: var(--stone); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { height: 46px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.84rem; font-weight: 300; line-height: 1.8; color: var(--muted); max-width: 30ch; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 2px; display: flex; align-items: center; justify-content: center; transition: all 200ms var(--ease-out); }
.social-link svg { width: 14px; height: 14px; stroke: var(--muted); transition: stroke 200ms; }
.social-link:active { transform: scale(0.93); }
@media (hover: hover) and (pointer: fine) { .social-link:hover { border-color: var(--border-s); } .social-link:hover svg { stroke: var(--gold); } }
.footer-col h4 { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a { font-size: 0.84rem; font-weight: 300; color: var(--muted); transition: color 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .footer-col ul li a:hover { color: var(--white); } }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.76rem; font-weight: 300; color: var(--muted); }

/* ============================================
   CHAT FAB
   ============================================ */
.chat-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 60px; height: 60px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(189,151,81,0.35);
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), opacity 250ms var(--ease-out);
}
.chat-fab:active { transform: scale(0.93); }
@media (hover: hover) and (pointer: fine) { .chat-fab:hover { transform: scale(1.06); background: var(--gold-lt); } }
.chat-fab svg { width: 24px; height: 24px; stroke: var(--black); }
.chat-fab.hidden { transform: scale(0); opacity: 0; pointer-events: none; }
.chat-badge { position: absolute; top: -2px; right: -2px; width: 16px; height: 16px; background: #22c55e; border-radius: 50%; border: 2px solid var(--black); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }

/* ============================================
   CHAT DRAWER
   ============================================ */
.chat-drawer {
  position: fixed; bottom: 0; right: 0; z-index: 300;
  width: 400px; max-width: 100vw; height: 630px; max-height: 92vh;
  background: var(--charcoal); border: 1px solid var(--border);
  border-radius: 14px 14px 0 0;
  display: flex; flex-direction: column;
  transform: translateY(105%);
  transition: transform 400ms var(--ease-drawer);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.55); overflow: hidden;
}
.chat-drawer.open { transform: translateY(0); }
.chat-header { padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.chat-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--black); border: 1.5px solid var(--border-s); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.chat-avatar img { width: 90%; height: 90%; object-fit: contain; }
.chat-header-name { font-size: 0.9rem; font-weight: 500; }
.chat-header-status { font-size: 0.7rem; color: #22c55e; font-weight: 300; }
.chat-close { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 200ms var(--ease-out), transform 160ms var(--ease-out); }
.chat-close:active { transform: scale(0.93); }
@media (hover: hover) and (pointer: fine) { .chat-close:hover { background: rgba(255,255,255,0.07); } }
.chat-close svg { width: 16px; height: 16px; stroke: var(--muted); }
.chat-messages { flex: 1; overflow-y: auto; padding: 1.2rem; display: flex; flex-direction: column; gap: 0.75rem; scroll-behavior: smooth; }
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border-s); border-radius: 2px; }
.msg { max-width: 84%; padding: 0.75rem 1rem; font-size: 0.86rem; font-weight: 300; line-height: 1.55; opacity: 0; transform: translateY(8px); transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out); }
.msg.visible { opacity: 1; transform: translateY(0); }
.msg.bot { background: rgba(255,255,255,0.055); border: 1px solid var(--border); color: rgba(250,250,248,0.9); align-self: flex-start; border-radius: 4px 12px 12px 12px; }
.msg.user { background: var(--gold); color: var(--black); align-self: flex-end; font-weight: 400; border-radius: 12px 12px 4px 12px; }
.msg-typing { display: flex; gap: 4px; align-items: center; padding: 0.75rem 1rem; background: rgba(255,255,255,0.055); border: 1px solid var(--border); border-radius: 4px 12px 12px 12px; align-self: flex-start; max-width: 80px; }
.msg-typing span { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; animation: typing 1.2s ease-in-out infinite; }
.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,100%{transform:translateY(0);opacity:0.4} 50%{transform:translateY(-4px);opacity:1} }
.chat-quick-replies { display: flex; gap: 0.5rem; flex-wrap: wrap; padding: 0 1.2rem 0.5rem; }
.quick-reply { font-size: 0.73rem; font-weight: 400; color: var(--gold); border: 1px solid var(--border-s); padding: 0.38rem 0.9rem; border-radius: 20px; transition: all 200ms var(--ease-out); white-space: nowrap; }
.quick-reply:active { transform: scale(0.95); }
@media (hover: hover) and (pointer: fine) { .quick-reply:hover { background: rgba(189,151,81,0.1); border-color: var(--gold); } }
.chat-input-area { padding: 1rem 1.2rem 1.2rem; border-top: 1px solid var(--border); display: flex; gap: 0.75rem; align-items: flex-end; flex-shrink: 0; }
.chat-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; color: var(--white); font-family: var(--font-body); font-size: 0.86rem; font-weight: 300; padding: 0.75rem 1rem; outline: none; resize: none; max-height: 100px; line-height: 1.4; transition: border-color 200ms var(--ease-out); }
.chat-input:focus { border-color: var(--border-s); }
.chat-send { width: 38px; height: 38px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 160ms var(--ease-out), background 200ms; }
.chat-send:active { transform: scale(0.93); }
@media (hover: hover) and (pointer: fine) { .chat-send:hover { background: var(--gold-lt); } }
.chat-send svg { width: 16px; height: 16px; stroke: var(--black); }
.chat-escalation { padding: 0.75rem 1.2rem; border-top: 1px solid var(--border); display: flex; gap: 0.75rem; flex-shrink: 0; }
.escalation-btn { flex: 1; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.6rem; border: 1px solid var(--border); border-radius: 4px; color: var(--muted); text-align: center; transition: all 200ms var(--ease-out); }
.escalation-btn:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .escalation-btn:hover { border-color: var(--border-s); color: var(--white); } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nosotros-inner { grid-template-columns: 1fr; gap: 3rem; }
  .propuesta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .experiencia-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .experiencia-video { min-height: 320px; order: 1; }
  .experiencia-content { order: 2; }
  .reservacion-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sucursales-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  #nosotros, #sucursales { padding: 5rem 1.5rem; }
  #menu, #experiencia, #reservacion { padding: 5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .reserve-bar { font-size: 0.85rem; padding: 0.85rem 1rem; }
  .frb-text::after { content: ''; }

  /* Hero: 3 palabras — en móvil se apilan verticalmente en vez de en fila,
     porque en fila quedarían demasiado pequeñas para leerse */
  #hero { height: 100svh; min-height: 560px; padding-top: 8vh; }
  .hero-content { padding: 0 1.5rem; }
  .hero-words { flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
  .hero-word { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-word::after { left: 30%; right: 30%; }
  .hero-scroll { bottom: 1.5rem; }

  /* Nosotros: imagen con altura proporcional al viewport */
  .nosotros-media img { height: 60vh; min-height: 320px; max-height: 420px; }

  /* Propuesta: las 3 fotos verticales se mantienen en fila pero sin el
     desfase vertical que en pantalla chica dejaba hueco raro */
  .propuesta-foto:nth-child(2) { transform: none; }
  .propuesta-foto-label { font-size: 1rem; bottom: 0.6rem; }

  /* Collage del overlay: 2 columnas en móvil, la grande ocupa todo el ancho */
  .exp-overlay-scroll { padding: 2rem 1.3rem; }
  .exp-collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .exp-collage-item.big { grid-column: span 2; grid-row: span 2; }

  /* Reseñas: sección independiente en móvil */
  #resenas { padding: 5rem 1.5rem; }
  .resenas-swiper .swiper-slide { width: 300px; }

  /* Sucursales: tamaño fijo de 2.4rem podía recortarse en pantallas muy angostas */
  .sucursal-name { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .sucursal-card { padding: 2.2rem 1.5rem; }
}
@media (max-width: 480px) {
  .chat-drawer { width: 100vw; height: 90vh; border-radius: 16px 16px 0 0; }
  .nosotros-media img { height: 45vh; min-height: 260px; }
  .propuesta-galeria { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .propuesta-foto { aspect-ratio: 3 / 4; }
  .nosotros-subtitle { font-size: 1.4rem !important; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   CHAT FAB WRAPPER + LABEL
   ============================================ */
.chat-fab-wrapper {
  position: fixed;
  bottom: calc(1.5rem + 64px); /* arriba de la barra de reserva fija */
  right: 1.5rem;
  z-index: 140;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.chat-fab-wrapper .chat-fab {
  position: relative;
  bottom: auto;
  right: auto;
}

.chat-fab-label {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-impact);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(189,151,81,0.3);
  animation: labelPulse 3s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: 0.85; transform: translateY(-2px); }
}

/* Ocultar label cuando chat está abierto */
.chat-fab.hidden + .chat-fab-label,
.chat-fab-wrapper.hidden .chat-fab-label { display: none; }

/* ============================================
   HORARIOS DISPONIBLES — grid de slots
   ============================================ */
.horarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.horarios-hint {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  grid-column: 1 / -1;
  padding: 0.5rem 0;
}
.horario-slot {
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  padding: 0.6rem 0.4rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: rgba(250,250,248,0.75);
  background: rgba(255,255,255,0.02);
  transition: all 200ms var(--ease-out);
}
.horario-slot:active { transform: scale(0.96); }
@media (hover: hover) and (pointer: fine) {
  .horario-slot:hover { border-color: var(--border-s); color: var(--white); }
}
.horario-slot.selected {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 500;
}
.horario-slot.loading {
  color: var(--muted);
  cursor: default;
  pointer-events: none;
}

/* Disabled selects/inputs visual cue */
.form-select:disabled,
.form-input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.form-submit:disabled {
  background: var(--stone);
  color: var(--muted);
  cursor: not-allowed;
}
.form-submit:disabled:active { transform: none; }

/* ============================================
   LANGUAGE TOGGLE — ES / EN
   ============================================ */
.lang-toggle {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-impact);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.03em;
}
.lang-btn {
  color: rgba(250,250,248,0.4);
  transition: color 200ms var(--ease-out);
  padding: 0.2rem;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:not(.active):hover { color: rgba(250,250,248,0.7); }
.lang-sep { color: var(--border-s); font-weight: 400; }

@media (max-width: 768px) {
  .lang-toggle { position: fixed; top: 1rem; right: 4rem; z-index: 101; }
}

/* ============================================
   POP-UP DE PROMOCIÓN
   ============================================ */
.promo-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 320ms var(--ease-out);
}
.promo-overlay.open { opacity: 1; pointer-events: all; }
.promo-box {
  position: relative;
  background: var(--charcoal);
  border: 1px solid var(--border-s);
  border-radius: 6px;
  width: 100%; max-width: 440px;
  overflow: hidden;
  transform: translateY(16px) scale(0.97);
  transition: transform 380ms var(--ease-out);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.promo-overlay.open .promo-box { transform: translateY(0) scale(1); }
.promo-close {
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 2;
  width: 32px; height: 32px;
  background: rgba(13,11,9,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms var(--ease-out), transform 160ms var(--ease-out);
}
.promo-close svg { width: 16px; height: 16px; stroke: var(--white); }
.promo-close:hover { background: rgba(189,151,81,0.25); }
.promo-close:active { transform: scale(0.92); }
.promo-img {
  width: 100%; height: 180px;
  background-size: cover; background-position: center;
}
.promo-content { padding: 2rem 1.8rem; text-align: center; }
.promo-tag {
  display: inline-block;
  font-family: var(--font-impact); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 0.3rem 0.8rem; border-radius: 20px;
  margin-bottom: 1rem;
}
.promo-title {
  font-family: var(--font-impact); font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  text-transform: uppercase; line-height: 1;
  margin-bottom: 0.8rem;
}
.promo-desc {
  font-size: 0.88rem; font-weight: 300; line-height: 1.65;
  color: rgba(250,250,248,0.7);
  margin-bottom: 1.6rem;
}
.promo-btn {
  display: inline-block;
  font-family: var(--font-impact); font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 0.85rem 2rem; border-radius: 2px;
  transition: background 200ms var(--ease-out), transform 160ms var(--ease-out);
}
.promo-btn:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) { .promo-btn:hover { background: var(--gold-lt); } }

/* ============================================
   MODAL DE RESERVACIÓN — drawer lateral con el
   formulario completo, se abre desde el botón
   flotante "Reservar" en cualquier punto del sitio
   ============================================ */
.reserva-overlay {
  position: fixed; inset: 0; z-index: 450;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  display: flex; justify-content: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity 320ms var(--ease-out);
}
.reserva-overlay.open { opacity: 1; pointer-events: all; }

.reserva-modal-box {
  position: relative;
  width: 100%; max-width: 480px; height: 100%;
  background: var(--charcoal);
  border-left: 1px solid var(--border-s);
  box-shadow: -30px 0 80px rgba(0,0,0,0.5);
  transform: translateX(100%);
  transition: transform 400ms var(--ease-drawer);
  display: flex; flex-direction: column;
}
.reserva-overlay.open .reserva-modal-box { transform: translateX(0); }

.reserva-modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem; z-index: 2;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms var(--ease-out), transform 160ms var(--ease-out);
}
.reserva-modal-close svg { width: 16px; height: 16px; stroke: var(--white); }
.reserva-modal-close:hover { background: rgba(189,151,81,0.15); border-color: var(--border-s); }
.reserva-modal-close:active { transform: scale(0.92); }

.reserva-modal-scroll {
  flex: 1; overflow-y: auto;
  padding: 4rem 2rem 2.5rem;
}
.reserva-modal-scroll::-webkit-scrollbar { width: 4px; }
.reserva-modal-scroll::-webkit-scrollbar-track { background: transparent; }
.reserva-modal-scroll::-webkit-scrollbar-thumb { background: var(--border-s); border-radius: 2px; }

.reserva-modal-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 300; color: var(--muted);
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
}
.reserva-modal-info-item {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold);
  transition: color 200ms var(--ease-out);
}
.reserva-modal-info-item svg { width: 14px; height: 14px; stroke: currentColor; }
@media (hover: hover) and (pointer: fine) { .reserva-modal-info-item:hover { color: var(--gold-lt); } }
.reserva-modal-info-divider { color: var(--border-s); }

@media (max-width: 540px) {
  .reserva-modal-box { max-width: 100%; }
  .reserva-modal-scroll { padding: 4rem 1.25rem 2rem; }
}
.privacy-check {
  display: flex; align-items: flex-start; gap: 0.6rem;
  cursor: pointer; font-size: 0.78rem; font-weight: 300;
  line-height: 1.5; color: var(--muted);
}
.privacy-check input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px;
  accent-color: var(--gold); flex-shrink: 0; cursor: pointer;
}
.privacy-check a { color: var(--gold); text-decoration: underline; }
/* POP-UP PROMOS — carrusel de imágenes */
.promo-box {
  max-width: 420px; width: 92vw;
  max-height: 90vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.promo-slider {
  position: relative;
  width: 100%;
  height: 70vh;           /* altura definida, pero limitada a la pantalla */
  max-height: 560px;
  background: var(--black); cursor: pointer; overflow: hidden;
}
.promo-slide {
  position: absolute; inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0; transition: opacity 500ms var(--ease-out);
}
.promo-slide.active { opacity: 1; }
.promo-dots { display: flex; justify-content: center; gap: 0.4rem; padding: 0.9rem 0 0.2rem; }
.promo-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(250,250,248,0.25); transition: background 250ms var(--ease-out); }
.promo-dot.active { background: var(--gold); }
.promo-btn { width: calc(100% - 3rem); margin: 0.8rem 1.5rem 1.5rem; }
.promo-close {
  position: absolute; top: 0.8rem; right: 0.8rem; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(13,11,9,0.65);
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer;
  transition: background 200ms ease;
}
.promo-close svg { width: 20px; height: 20px; stroke: currentColor; }
.promo-close:hover { background: var(--gold); color: var(--black); }
.section-title em.cap { text-transform: none; }