/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --green:       #2D4A3E;
  --green-light: #3D6454;
  --green-dark:  #1E3329;
  --ochre:       #C4956A;
  --ochre-light: #D9AC85;
  --cream:       #F5EFE6;
  --cream-dark:  #EAE0D0;
  --brown:       #2C1810;
  --text:        #2C2219;
  --text-muted:  #7A6A5A;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:   8px;
  --radius-lg: 16px;
  --shadow:   0 4px 24px rgba(44, 24, 16, 0.10);
  --shadow-lg: 0 12px 48px rgba(44, 24, 16, 0.18);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h: 72px;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.15rem; }

em { font-style: italic; color: var(--ochre); }

p { font-size: 1rem; color: var(--text-muted); }

/* ─── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.75rem;
}

.section-desc {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--ochre);
  color: var(--white);
  border-color: var(--ochre);
}
.btn-primary:hover {
  background: var(--ochre-light);
  border-color: var(--ochre-light);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-sm {
  background: var(--green);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
}
.btn-sm:hover { background: var(--green-light); }

.btn-full { width: 100%; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(245, 239, 230, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44,24,16,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.site-header.scrolled .logo { color: var(--brown); }

.logo-icon { color: var(--ochre); font-size: 1rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
}
.main-nav a:hover { color: var(--white); }

.site-header.scrolled .main-nav a { color: var(--text-muted); }
.site-header.scrolled .main-nav a:hover { color: var(--brown); }

.nav-cta {
  background: var(--ochre) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.35rem;
  border-radius: 4px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--ochre-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--brown); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 50, 40, 0.72) 0%,
    rgba(30, 50, 40, 0.45) 60%,
    rgba(196, 149, 106, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  max-width: 760px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre-light);
  margin-bottom: 1.25rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ─── NOSOTROS ───────────────────────────────────────────────── */
.nosotros { background: var(--white); }

.container-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.nosotros-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.nosotros-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 15% center;
}

.nosotros-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 125px;
  height: 125px;
  background: var(--ochre);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow);
  padding: 0.8rem;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.badge-label {
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0.95;
}

.nosotros-text h2 { margin-bottom: 1.5rem; }
.nosotros-text p { margin-bottom: 1rem; }

.nosotros-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green);
}
.stat span { font-size: 0.82rem; color: var(--text-muted); }

/* ─── HABITACIONES ───────────────────────────────────────────── */
.habitaciones { background: var(--cream); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-img img { transition: transform 0.6s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.room-badge.popular { background: var(--ochre); }

.room-body {
  padding: 1.75rem;
}
.room-body h3 { margin-bottom: 0.5rem; }
.room-body p { font-size: 0.9rem; margin-bottom: 1rem; }

.room-features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}
.room-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.room-price { font-size: 0.85rem; }
.room-price strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--green);
}

/* ─── SERVICIOS ──────────────────────────────────────────────── */
.servicios {
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.servicios::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.servicios .section-header h2,
.servicios .section-label { color: var(--white); }
.servicios .section-label { color: var(--ochre-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-item {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  cursor: default;
  transition: background 0.4s ease,
              border-color 0.4s ease,
              transform 0.4 cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease;
}

.service-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 180pc at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.13) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}

.service-item:hover .service-glow {
  opacity: 1;
}

.service-item:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 0.85rem;
  display: block;
  transition: transform 0.4s ease cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}

.service-item:hover .service-icon {
  transform: scale(1.18) translateY(-3px);
}

.service-item h4 {
  color: var(--white);
  margin-bottom: 0.4rem;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-item:hover h4 {
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255, 0.4);
}

.service-item p { 
  color: rgba(255,255,255,0.65); 
  font-size: 0.82rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-item:hover p {
  color: rgba(255,255,255, 0.85)
}

/* ─── GALERÍA ────────────────────────────────────────────────── */
.galeria { background: var(--cream-dark); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-item:hover img { transform: scale(1.06); }

/* ─── RESEÑAS (CARRUSEL FADE POR BLOQUES) ────────────────────── */
.resenas { background: var(--white); }

/* El contenedor principal apila las páginas una sobre otra usando Grid */
.carousel-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
}

/* Cada página se pone en la misma celda del grid y aplica la cuadrícula de 4 */
.review-slide {
  grid-row: 1;
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px) scale(0.98);
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

/* Estado activo: visible (esta clase la pone el JS) */
.review-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Estilos de las tarjetas de reseñas */
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 3px solid var(--ochre);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }

.review-stars { color: var(--ochre); font-size: 0.9rem; margin-bottom: 1rem; }
.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.review-author { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* Puntos indicadores inferiores */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active {
  background: var(--ochre);
  transform: scale(1.4);
}

/* ─── UBICACIÓN ──────────────────────────────────────────────── */
.ubicacion { background: var(--cream); }

.location-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

.location-address,
.location-contact-info,
.location-how {
  margin-bottom: 2rem;
}

.location-address h4,
.location-contact-info h4,
.location-how h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ochre-light);
  margin-bottom: 0.75rem;
}

.location-address p,
.location-contact-info p { color: var(--text-muted); line-height: 1.8; }
.location-contact-info a,
.location-address a { color: var(--green); font-weight: 500; }

.location-how ul { display: flex; flex-direction: column; gap: 0.6rem; }
.location-how li { font-size: 0.9rem; color: var(--text-muted); }

.location-map {
  height: 420px;
  border: 2px solid var(--ochre);
  border-radius: 25px;
  padding: 3px;
  background: var(--white);
  overflow: hidden;
  box-shadow: linear-gradient(135deg, var(--ochre), var(--green));
  transition: transform var(--transition), box-shadow var(--transition);
}

.location-map:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(44, 24, 16, 0.24);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 31px;
}

/* ─── CONTACTO ───────────────────────────────────────────────── */
.contacto { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { margin-bottom: 1.25rem; }

label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 74, 62, 0.1);
}

textarea { resize: vertical; min-height: 120px; }

.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.form-check input { width: auto; margin-top: 2px; }
.form-check label { font-size: 0.82rem; color: var(--text-muted); }
.form-check a { color: var(--green); text-decoration: underline; }

.form-success {
  color: var(--green);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* Aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}

.contact-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-ico { font-size: 1.4rem; }
.contact-block h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  margin-bottom: 0.3rem;
}
.contact-block a, .contact-block p { font-size: 0.9rem; color: var(--text-muted); }
.contact-block a:hover { color: var(--green); }

.social-links { display: flex; flex-direction: column; gap: 0.25rem; }
.social-links a { color: var(--green); font-weight: 500; font-size: 0.9rem; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem clamp(1rem, 4vw, 3rem) 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand .logo { color: var(--white); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
}
.footer-nav a { font-size: 0.85rem; }
.footer-nav a:hover { color: var(--ochre-light); }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}
.footer-legal a { font-size: 0.78rem; }
.footer-legal a:hover { color: var(--ochre-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ─── ANIMACIONES ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s var(--transition) forwards;
}
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { animation-delay: 0.2s; transition-delay: 0.12s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.24s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.36s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Ajuste de reseñas para tablets */
  .review-slide { grid-template-columns: 1fr 1fr; }
  
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  /* En móvil, galeria-2 (2.º item) muestra la imagen completa igual que galeria-5 */
  .gallery-masonry .gallery-item:nth-child(2) { aspect-ratio: auto; }
}

@media (max-width: 768px) {
  .location-map {
    height: 280px;
    border-radius: 26px;
  }

  .location-map iframe {
    border-radius: 20px;
  }

  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 99;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .main-nav.open a { font-size: 1.5rem; color: var(--brown); }
  .main-nav.open .nav-cta {
    background: var(--ochre) !important;
    color: var(--white) !important;
    padding: 0.75rem 2.5rem !important;
    font-size: 1.1rem !important;
    border-radius: 4px;
  }
  .hamburger { display: flex; z-index: 101; }

  .container-grid { grid-template-columns: 1fr; }
  .nosotros-img-wrap { aspect-ratio: 3/2; }
  .nosotros-badge { bottom: 1rem; right: 1rem; }

  .rooms-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  
  /* Ajuste de reseñas para móviles */
  .review-slide { grid-template-columns: 1fr; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 280px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-legal { text-align: center; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .nosotros-stats { flex-direction: column; gap: 1rem; }
}

/* ─── LIGHTBOX SIMPLE ────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.25s ease;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── COOKIES ────────────────────────────────────────────────── */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.45);
  z-index: 9998;
  backdrop-filter: blur(2px);
  animation: fadeIn 0.3s ease;
}

/* ── Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  box-shadow: 0 -4px 32px rgba(44, 24, 16, 0.10);
  z-index: 9999;
  animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.cookie-banner::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--ochre) 100%);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px clamp(20px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.cookie-banner__text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.cookie-banner__link {
  font-size: 0.82rem;
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 6px;
  display: inline-block;
}

.cookie-banner__link:hover { color: var(--green); }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Botones de cookies ── */
.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.cookie-btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.cookie-btn--secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.cookie-btn--secondary:hover {
  background: var(--green);
  color: var(--white);
}

.cookie-btn--outline {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--cream-dark);
}
.cookie-btn--outline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* ── Modal ── */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100vw - 32px), 520px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(44, 24, 16, 0.25);
  z-index: 10000;
  animation: scaleIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--cream-dark);
  background: var(--cream);
}

.cookie-modal__header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
}

.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  transition: var(--transition);
  line-height: 1;
}
.cookie-modal__close:hover {
  background: var(--cream-dark);
  color: var(--text);
}

.cookie-modal__body {
  padding: 8px 28px;
}

.cookie-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 28px 24px;
  border-top: 1px solid var(--cream-dark);
  background: var(--cream);
  flex-wrap: wrap;
}

/* ── Opciones ── */
.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.cookie-option:last-child { border-bottom: none; }

.cookie-option__info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 4px;
}
.cookie-option__info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Toggle switch ── */
.cookie-toggle {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  display: inline-block;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__track {
  display: block;
  width: 46px;
  height: 26px;
  background: var(--cream-dark);
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.cookie-toggle__track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(44,24,16,0.2);
}

.cookie-toggle input:checked + .cookie-toggle__track {
  background: var(--green);
}
.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(20px);
}

.cookie-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.cookie-toggle--disabled .cookie-toggle__track {
  background: var(--ochre-light);
}

/* ── Animaciones ── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: translate(-50%, -48%) scale(0.96); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .cookie-banner__inner {
    padding: 20px;
    gap: 16px;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
    padding: 11px 12px;
  }
  .cookie-modal__footer {
    justify-content: stretch;
  }
  .cookie-modal__footer .cookie-btn {
    flex: 1;
    text-align: center;
  }
}