/* ==========================================================================
   Hotel Hacienda Cenote San Ignacio
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --color-primary-dark: #3B2314;
  --color-primary: #5C3A1E;
  --color-cream: #FAF6F0;
  --color-cream-dark: #F0EBE3;
  --color-gold: #C4A265;
  --color-gold-light: #D4B87A;
  --color-gold-dark: #A8893F;
  --color-terracotta: #B56A3A;
  --color-text-dark: #2D2219;
  --color-text-body: #4A3F35;
  --color-text-light: #8B7D6B;
  --color-white: #FFFFFF;
  --color-overlay-dark: rgba(59, 35, 20, 0.55);
  --color-overlay-light: rgba(59, 35, 20, 0.3);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;

  --section-py: 7rem;
  --section-py-mobile: 4rem;

  --transition-base: all 0.3s ease;
  --transition-slow: all 0.6s ease;

  --ls-wide: 0.15em;
  --ls-wider: 0.25em;
  --ls-widest: 0.35em;

  --radius-sm: 4px;
  --radius-md: 8px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

::selection {
  background: var(--color-gold);
  color: var(--color-white);
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-cream);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-weight: 500;
  line-height: 1.15;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition-base);
}
a:hover { color: var(--color-gold-dark); }

/* ---------- Utility ---------- */
.section-padding {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.bg-cream { background-color: var(--color-cream); }
.bg-cream-alt { background-color: var(--color-cream-dark); }
.bg-primary-dark { background-color: var(--color-primary-dark); }
.text-gold { color: var(--color-gold) !important; }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: block;
}

.section-divider {
  width: 50px;
  height: 2px;
  background-color: var(--color-gold);
  border: none;
  margin: 0 auto 1.5rem;
  opacity: 1;
}
.section-divider-left { margin-left: 0; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn-reserve {
  background-color: var(--color-gold);
  color: var(--color-white);
  border: none;
  padding: 15px 44px;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  font-weight: 700;
  font-size: 0.78rem;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.btn-reserve:hover {
  background-color: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 162, 101, 0.4);
}

.btn-outline-luxury {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  padding: 14px 38px;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  font-weight: 700;
  font-size: 0.78rem;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  display: inline-block;
  cursor: pointer;
}
.btn-outline-luxury:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--color-white);
  padding: 14px 38px;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  font-weight: 700;
  font-size: 0.78rem;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  display: inline-block;
}
.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary-dark);
}

/* ---------- Navbar ---------- */
.navbar {
  padding: 1rem 0;
  transition: all 0.6s ease;
  z-index: 1050;
}
.navbar .navbar-brand img {
  height: 50px;
  transition: var(--transition-base);
  filter: brightness(0) invert(1);
}
.navbar .nav-link {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: rgba(255,255,255,0.9) !important;
  padding: 0.5rem 0.9rem !important;
  transition: var(--transition-base);
  position: relative;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: 60%; }
.navbar .nav-link:hover { color: var(--color-gold) !important; }

.navbar-scrolled {
  background: linear-gradient(
    180deg,
    rgba(10, 4, 1, 0.42) 0%,
    rgba(8, 3, 1, 0.30) 100%
  ) !important;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 0.5rem 0;
  box-shadow: 0 1px 0 rgba(196,162,101,0.06), 0 2px 16px rgba(0,0,0,0.06);
}
.navbar-scrolled .navbar-brand img { height: 38px; }
.navbar .btn-reserve { padding: 9px 26px; font-size: 0.7rem; }

/* Navbar transparente — text-shadow para legibilidad sobre imágenes */
.navbar:not(.navbar-scrolled) .nav-link {
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.navbar:not(.navbar-scrolled) .navbar-brand img {
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,0.4));
}

/* ---------- Lang Selector (dropdown escalable) ---------- */
.lang-selector {
  position: relative;
}
.lang-selector-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lang-selector-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.lang-selector-chevron {
  font-size: 0.45rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
  margin-left: 2px;
}
.lang-selector.open .lang-selector-chevron {
  transform: rotate(180deg);
}
.lang-selector-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(30,15,8,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(196,162,101,0.15);
  border-radius: 10px;
  padding: 0.4rem 0;
  min-width: 155px;
  list-style: none;
  margin: 0;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  z-index: 1100;
}
.lang-selector.open .lang-selector-menu {
  display: block;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  text-align: left;
}
.lang-option:hover:not(:disabled) {
  background: rgba(196,162,101,0.1);
  color: var(--color-gold-light);
}
.lang-option.active {
  color: var(--color-gold);
}
.lang-option:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.lang-option small {
  font-size: 0.55rem;
  opacity: 0.5;
  margin-left: auto;
  padding-left: 6px;
}
.lang-flag { font-size: 0.9rem; line-height: 1; }

/* Mobile lang selector */
.lang-selector-mobile .lang-selector-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.75rem;
  padding: 8px 16px;
}
.lang-selector-mobile .lang-selector-menu {
  position: static;
  display: none;
  background: rgba(255,255,255,0.05);
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 8px;
  margin-top: 6px;
  padding: 0.3rem 0;
}
.lang-selector-mobile.open .lang-selector-menu {
  display: block;
}
.lang-selector-mobile .lang-option {
  justify-content: center;
  font-size: 0.8rem;
}

/* ---------- Navbar Backdrop ---------- */
.navbar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,5,2,0.55);
  z-index: 1045;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.navbar-backdrop.show { display: block; }

/* ---------- Mobile menu footer ---------- */
.mobile-menu-footer {
  margin-top: auto;
  padding: 1.25rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
/* ---------- Dropdown chevron (FA icon, right side) ---------- */
.nav-chevron {
  font-size: 0.5rem;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.25s ease;
  opacity: 0.6;
}
.navbar .nav-link[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
/* Suprimir el caret nativo de Bootstrap */
.navbar .dropdown-toggle::after { display: none; }
/* Suprimir outline/focus-ring de Bootstrap en todos los links del navbar */
.navbar .nav-link:focus,
.navbar .nav-link:focus-visible,
.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.park-link {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5) !important;
  letter-spacing: 0.05em;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 1rem !important;
}
.park-link:hover { color: var(--color-gold) !important; }
.park-link i { font-size: 0.6rem; margin-left: 3px; }

/* Hamburger */
.navbar-toggler {
  border: none;
  padding: 0;
  outline: none !important;
  box-shadow: none !important;
}
.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 26px;
}
.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-base);
  border-radius: 2px;
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu — drawer lateral derecho */
@media (max-width: 991.98px) {
  /* Drawer */
  .navbar-collapse {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 82vw);
    background: rgba(30, 12, 3, 0.72);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-left: 1px solid rgba(196,162,101,0.1);
    box-shadow: -12px 0 48px rgba(0,0,0,0.5);
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    padding: 4.5rem 0 2rem;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    pointer-events: none;
  }
  .navbar-collapse.show {
    transform: translateX(0);
    pointer-events: all;
  }

  /* Nav principal */
  .navbar-collapse .navbar-nav {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0 1.5rem;
  }
  .navbar-collapse .nav-item { width: 100%; }

  /* Links principales */
  .navbar-collapse .nav-link {
    font-family: var(--font-body) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.85) !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    outline: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .navbar-collapse .nav-link:focus,
  .navbar-collapse .nav-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
  }
  .navbar-collapse .nav-link::after { display: none !important; }
  .navbar-collapse .nav-item:last-child > .nav-link { border-bottom: none !important; }

  /* Chevron a la derecha en mobile */
  .navbar-collapse .nav-chevron {
    margin-left: auto !important;
    font-size: 0.55rem !important;
    opacity: 0.5;
  }

  /* Dropdown mobile — lista estructurada */
  .navbar .dropdown-menu {
    position: static !important;
    float: none !important;
    background: rgba(255,255,255,0.04);
    border: none;
    border-left: 2px solid rgba(196,162,101,0.25);
    box-shadow: none;
    backdrop-filter: none;
    padding: 0.5rem 0 0.75rem 0;
    margin: 0 0 0.25rem 0;
    min-width: unset;
    width: 100%;
    border-radius: 0 6px 6px 0;
  }
  .navbar .dropdown-item {
    font-family: var(--font-body) !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    color: rgba(255,255,255,0.65) !important;
    padding: 0.55rem 1rem !important;
    background: none !important;
    border-radius: 0 !important;
    line-height: 1.3;
  }
  .navbar .dropdown-item small {
    display: block !important;
    font-size: 0.6rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
    color: rgba(255,255,255,0.28) !important;
    text-transform: uppercase;
    margin-top: 2px;
  }
  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:active {
    color: var(--color-gold-light) !important;
    background: rgba(196,162,101,0.08) !important;
  }
  .navbar .dropdown-item:hover small { color: rgba(196,162,101,0.5) !important; }
  .navbar .dropdown-item.active { color: var(--color-gold) !important; }
  .dropdown-footer-item {
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin-top: 0.25rem !important;
    padding-top: 0.25rem !important;
  }
  .dropdown-item-all {
    font-size: 0.65rem !important;
    color: var(--color-gold) !important;
    opacity: 0.8;
    letter-spacing: 0.1em !important;
  }

  /* Misc */
  .navbar-toggler { z-index: 1060; position: relative; }
  .navbar-nav-cta { display: none !important; }

  /* Navbar siempre transparente en mobile — el drawer tiene su propio fondo */
  .navbar,
  .navbar.navbar-scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }
}

/* ---------- HERO - Scroll Zoom "Entrar por la puerta" ---------- */

/* Wrapper alto para activar el scroll sticky */
.hero-wrapper {
  height: 200vh;
  position: relative;
}

/* Hero pegado mientras se hace scroll dentro del wrapper */
.hero-section {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

/* Capa 1: Exterior de Casa del Patrón */
.hero-bg-exterior {
  position: absolute;
  inset: 0;
  background-image: url('https://cenotesanignacio.com/wp-content/uploads/2024/12/casa-del-patron-1.jpg');
  background-size: cover;
  background-position: center 65%;
  z-index: 0;
  transform-origin: center center;
  will-change: transform, opacity;
}

/* Capa 2: Interior de la habitación (invisible al inicio) */
.hero-bg-interior {
  position: absolute;
  inset: 0;
  background-image: url('https://cenotesanignacio.com/wp-content/uploads/2024/12/casa-del-patron-4-768x768.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  will-change: opacity;
}

/* Overlay oscuro */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,5,2,0.15) 0%,
    rgba(10,5,2,0.28) 60%,
    rgba(10,5,2,0.38) 100%
  );
  z-index: 2;
}

/* Contenido exterior: logo + título + form completo */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  padding: 2rem 1.5rem;
  will-change: opacity;
}

.hero-content-exterior {
  opacity: 1;
}

/* Contenido interior: CTA al "entrar" (invisible al inicio) */
.hero-content-interior {
  opacity: 0;
  pointer-events: none;
}

.hero-content-interior.active {
  pointer-events: auto;
}

.hero-logo {
  max-width: 160px;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1);
  display: block;
  animation: slideDown 1s ease-out;
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: 500;
  color: var(--color-white);
  margin: 0 0 0.5rem;
  line-height: 1.0;
  letter-spacing: -0.04em;
  text-shadow: 2px 4px 16px rgba(0,0,0,0.6);
  animation: fadeUpScale 1.2s ease-out 0.2s both;
}

/* Línea decorativa dorada */
.hero-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  margin: 1rem auto 1.5rem;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.5);
}

/* Texto interior */
.interior-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.interior-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--color-white);
  margin: 0 0 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 2px 4px 16px rgba(0,0,0,0.7);
}

.interior-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

/* Form interior más compacto */
.hero-booking-sm {
  max-width: 700px;
  margin: 0 auto;
}

/* Keyframes del contenido */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUpScale {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes expandWidth {
  from { width: 0; opacity: 0; }
  to   { width: 120px; opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero Booking Widget */
.hero-booking {
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196,162,101,0.15);
  border-radius: 8px;
  padding: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hero-bg {
    background-attachment: scroll;
  }
}

.hero-booking .booking-form {
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-wrap: wrap;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: auto;
}

.hero-booking input,
.hero-booking select {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-white);
  padding: 11px 13px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
  min-width: 140px;
  transition: all 0.3s ease;
}

.hero-booking input::placeholder {
  color: rgba(255,255,255,0.45);
}

.hero-booking input:focus,
.hero-booking select:focus {
  border-color: var(--color-gold);
  background: rgba(0,0,0,0.25);
}

.hero-booking select option {
  color: var(--color-text-dark);
  background: var(--color-white);
}

.hero-booking .btn-reserve {
  padding: 11px 32px;
  font-size: 0.76rem;
  margin-top: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--color-white);
  opacity: 0.6;
  animation: bounce-down 2s infinite;
  font-size: 1.2rem;
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- Subpage Hero — Scroll Zoom (Hospedaje) ---------- */
.page-hero-wrapper {
  height: 200vh;
  position: relative;
}

.page-hero-section {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.page-hero-bg-ext,
.page-hero-bg-int {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform, opacity;
  transform-origin: center center;
}

.page-hero-bg-int {
  opacity: 0;
  z-index: 1;
}

.page-hero-section .hero-overlay {
  z-index: 2;
}

.page-hero-content-ext,
.page-hero-content-int {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  padding: 2rem 1.5rem;
  will-change: opacity;
}

.page-hero-content-int {
  opacity: 0;
  pointer-events: none;
}

.page-hero-content-ext h1,
.page-hero-content-int h2 {
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(59, 35, 20, 0.65), 0 1px 3px rgba(59, 35, 20, 0.5);
}
.page-hero-content-ext h1 a {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
}
.page-hero-content-ext h1 a:hover { color: inherit; text-decoration: none; }

.page-hero-section .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  animation: bounce-down 1.5s ease-in-out infinite;
}

/* ---------- Hero Booking Card (floating, desktop interior phase) ---------- */
.hero-booking-card {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 280px;
  background: rgba(20, 10, 4, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(196, 162, 101, 0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
.hero-booking-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  color: var(--color-white);
  outline: none;
  cursor: pointer;
}
.hero-booking-input::placeholder { color: rgba(255,255,255,0.4); }
.hero-booking-input:focus {
  border-color: rgba(196,162,101,0.5);
  background: rgba(255,255,255,0.12);
}

/* Inputs readonly del date picker */
input[readonly].form-control { cursor: pointer; }
@media (max-width: 1199.98px) {
  .hero-booking-card { right: 2rem; width: 250px; }
}

/* ---------- Experiencias Hero — Parallax ---------- */
.exp-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.exp-hero-bg {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translateY(0);
}

.exp-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10,5,2,0.15) 0%,
    rgba(10,5,2,0.35) 60%,
    rgba(10,5,2,0.50) 100%
  );
}

.exp-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  color: #fff;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  border-bottom: 1px solid rgba(59,35,20,0.06);
}
.trust-item {
  text-align: center;
  padding: 1rem;
}
.trust-item i {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  display: block;
}
.trust-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-body);
  letter-spacing: 0.03em;
}
.trust-badge img { height: 60px; }

/* ---------- Room Showcase (Home - Magazine Layout) ---------- */
.room-showcase {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-bottom: 1px solid rgba(59,35,20,0.06);
}
.room-showcase-img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.room-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
}
.room-showcase:hover .room-showcase-img img {
  transform: scale(1.04);
}
.room-showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
}
.room-showcase-content .room-type {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}
.room-showcase-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}
.room-showcase-content .room-price {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
}
.room-showcase-content .room-price strong {
  color: var(--color-text-dark);
  font-size: 1.1rem;
}
.room-showcase-content .room-brief {
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.room-showcase-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.room-showcase-meta span {
  font-size: 0.8rem;
  color: var(--color-text-body);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.room-showcase-meta i { color: var(--color-gold); font-size: 0.85rem; }

@media (min-width: 992px) {
  .room-showcase-content { padding: 5rem 5rem; }
  .room-showcase-img { min-height: 580px; }
}
@media (max-width: 991.98px) {
  .room-showcase-img { min-height: 360px; }
  .room-showcase-content { padding: 3rem 2.5rem; }
}
@media (max-width: 767.98px) {
  .room-showcase-img { min-height: 300px; }
  .room-showcase-content { padding: 2.5rem 1.5rem; }
}

/* ---------- Cenote Immersive Section ---------- */
.cenote-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0;
}
.cenote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}
.cenote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,10,5,0.82) 0%, rgba(20,10,5,0.45) 60%, rgba(20,10,5,0.1) 100%);
}
.cenote-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 580px;
}
.cenote-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.cenote-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
}
.cenote-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.cenote-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.9;
}
.cenote-features i { color: var(--color-gold); }

@media (max-width: 767.98px) {
  .cenote-bg { background-attachment: scroll; background-position: center; }
  .cenote-section { min-height: auto; padding: 5rem 0; }
  .cenote-overlay { background: rgba(20,10,5,0.65); }
}

/* ---------- Split Cards (Romance/Gastro) ---------- */
.split-card {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.split-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-card:hover img { transform: scale(1.06); }
.split-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,35,20,0.8) 0%, rgba(59,35,20,0.1) 60%);
  transition: background 0.4s ease;
}
.split-card:hover .split-card-overlay {
  background: linear-gradient(to top, rgba(59,35,20,0.9) 0%, rgba(59,35,20,0.3) 60%);
}
.split-card-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 2.5rem;
  width: 100%;
}
.split-card-content h3 {
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.split-card-content p {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

/* ---------- Pet Friendly Banner ---------- */
.pet-banner {
  border-top: 1px solid rgba(59,35,20,0.06);
  border-bottom: 1px solid rgba(59,35,20,0.06);
}
.pet-banner img { border-radius: var(--radius-md); width: 100%; object-fit: cover; }
.pet-banner h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
.pet-banner p { color: var(--color-text-light); line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.95rem; }
.pet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pet-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--color-text-body);
  font-weight: 500;
}
.pet-list li i { color: var(--color-gold); font-size: 0.75rem; flex-shrink: 0; }

/* ---------- Gallery Mosaic ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(59,35,20,0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover::after { background: rgba(59,35,20,0.12); }
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item-large { grid-column: span 2; grid-row: span 2; }

@media (max-width: 991.98px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
}
@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item-wide, .gallery-item-tall, .gallery-item-large {
    grid-column: span 1; grid-row: span 1;
  }
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}
.testimonial-quote-icon {
  font-size: 4rem;
  color: var(--color-gold);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}
.testimonial-card cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-stars { color: var(--color-gold); font-size: 0.85rem; }
.testimonials-section .swiper-pagination-bullet { background: rgba(255,255,255,0.3); opacity: 1; }
.testimonials-section .swiper-pagination-bullet-active { background: var(--color-gold); }

/* ---------- Contact ---------- */
.contact-section { position: relative; }
.contact-section .form-control,
.contact-section .form-select {
  background-color: rgba(255,255,255,0.9);
  border: 1px solid rgba(59,35,20,0.1);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  color: var(--color-text-dark);
  transition: var(--transition-base);
  font-family: var(--font-body);
}
.contact-section .form-control:focus,
.contact-section .form-select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 0.15rem rgba(196,162,101,0.2);
  background-color: var(--color-white);
}
.contact-section .form-floating > label {
  color: var(--color-text-light);
  font-size: 0.86rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.3rem;
}
.contact-info-item i {
  color: var(--color-gold);
  font-size: 1rem;
  margin-top: 0.2rem;
  width: 20px;
  text-align: center;
}
.contact-info-item a { color: var(--color-text-body); }
.contact-info-item a:hover { color: var(--color-gold); }

.social-links { display: flex; gap: 0.8rem; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(59,35,20,0.12);
  color: var(--color-text-light);
  transition: var(--transition-base);
  font-size: 0.95rem;
}
.social-links a:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.park-cross-link {
  background-color: var(--color-primary-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  color: var(--color-white);
}
.park-cross-link h6 {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: 0.5rem;
}
.park-cross-link p { color: rgba(255,255,255,0.75); margin-bottom: 0.8rem; font-size: 0.9rem; }
.park-cross-link a { color: var(--color-gold); font-size: 0.82rem; font-weight: 600; }

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59,35,20,0.08);
}
.map-container iframe { width: 100%; height: 280px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--color-primary-dark);
  color: rgba(255,255,255,0.65);
  font-size: 0.86rem;
}
.site-footer h6 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}
.site-footer .footer-brand img { height: 65px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.site-footer .footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: rgba(255,255,255,0.45);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  transition: var(--transition-base);
}
.site-footer ul li a:hover { color: var(--color-gold); padding-left: 3px; }
.site-footer .social-links a {
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
}
.site-footer .social-links a:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); margin-bottom: 0.2rem; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--color-gold); }

/* ---------- WhatsApp Widget — Hotel Cenote San Ignacio ---------- */

/* ── Sticky bar ── */
.hcsi-wa-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hcsi-wa-sticky--show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hcsi-wa-sticky--hide {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.hcsi-wa-sticky--minimized .hcsi-wa-sticky__bar {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}
.hcsi-wa-sticky__bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
  max-width: 310px;
}
.hcsi-wa-sticky__bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}
.hcsi-wa-sticky__pulse {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: #fff;
}
.hcsi-wa-sticky__dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
}
.hcsi-wa-sticky__dot--on  { background: #4ade80; }
.hcsi-wa-sticky__dot--off { background: #9ca3af; }
@keyframes hcsi-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.hcsi-wa-sticky__dot--on { animation: hcsi-pulse-ring 2.2s infinite; }
.hcsi-wa-sticky__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
}
.hcsi-wa-sticky__msg {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.hcsi-wa-sticky__reply {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.hcsi-wa-sticky__close {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #555;
  color: #fff;
  border: none;
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 2;
}
.hcsi-wa-sticky__close:hover { opacity: 1; }

/* ── Chat panel ── */
.hcsi-wa__panel {
  position: fixed;
  bottom: 82px;
  right: 20px;
  z-index: 1049;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.hcsi-wa__panel--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.hcsi-wa__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: #25D366;
}
.hcsi-wa__header-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.hcsi-wa__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}
.hcsi-wa__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hcsi-wa__status {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.85);
}
.hcsi-wa__panel-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.hcsi-wa__panel-close:hover { color: #fff; }
.hcsi-wa__body {
  padding: 1rem;
  background: #ece5dd;
}
.hcsi-wa__welcome {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 0.7rem 0.85rem;
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 0.85rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  line-height: 1.45;
}
.hcsi-wa__actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.hcsi-wa__action {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  background: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #128C7E;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: background 0.2s, transform 0.15s;
}
.hcsi-wa__action:hover {
  background: #f0fdf4;
  transform: translateX(2px);
  color: #075E54;
  text-decoration: none;
}
.hcsi-wa__action i { font-size: 0.85rem; color: #25D366; flex-shrink: 0; }

/* ── WhatsApp widget mobile: botón circular flotante ── */
@media (max-width: 991.98px) {
  /* Colapsa la barra pill a un botón circular flotante */
  .hcsi-wa-sticky {
    bottom: 76px; /* por encima de booking-bar-mobile por defecto */
    right: 16px;
    width: auto;
  }
  .hcsi-wa-sticky__bar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    background: #25D366;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  }
  .hcsi-wa-sticky__bar:hover { transform: scale(1.08); }
  /* Ocultar texto — solo ícono en mobile */
  .hcsi-wa-sticky__text { display: none; }
  /* Ícono WA más grande */
  .hcsi-wa-sticky__pulse { width: 52px; height: 52px; background: transparent; font-size: 1.5rem; }
  /* Botón cerrar: esquina superior izquierda del círculo */
  .hcsi-wa-sticky__close {
    top: -5px;
    left: -5px;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }

  /* Páginas sin room-sticky: WA sobre booking-bar-mobile */
  body.hcsi-wa-active .booking-bar-mobile { bottom: 0; } /* booking-bar no se mueve */

  /* Páginas con room-sticky-bar */
  body.has-room-sticky .booking-bar-mobile { display: none !important; }
  body.has-room-sticky .room-booking-sticky-bar { bottom: 0; }
  /* WA sube un poco más para no tapar el botón "Reservar" */
  body.has-room-sticky .hcsi-wa-sticky { bottom: 88px; }

  /* Panel: full-width hoja desde abajo, z-index sobre todo */
  .hcsi-wa__panel {
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%) scale(1);
    z-index: 1055; /* por encima de sticky bars (z 1050) pero bajo el sheet (1061) */
  }
  .hcsi-wa__panel--open {
    transform: translateY(0) scale(1);
  }
}

/* ---------- Mobile Booking Bar ---------- */
.booking-bar-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background-color: var(--color-primary-dark);
  border-top: 2px solid var(--color-gold);
  padding: 0;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.booking-bar-mobile.visible { transform: translateY(0); }
.booking-bar-mobile a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background: var(--color-gold);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}
@media (max-width: 991.98px) {
  .booking-bar-mobile { display: block; }
  body { padding-bottom: 55px; }
}

/* ---------- Rooms Page ---------- */
.room-nav {
  position: sticky;
  top: 58px;
  z-index: 1020;
  background: var(--color-white);
  border-bottom: 1px solid rgba(59,35,20,0.06);
  padding: 0.7rem 0;
}
.room-nav-link {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-text-light);
  padding: 0.5rem 1rem;
  transition: var(--transition-base);
  white-space: nowrap;
}
.room-nav-link:hover, .room-nav-link.active { color: var(--color-gold); }
@media (max-width: 767.98px) {
  .room-nav .d-flex {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .room-nav .d-flex::-webkit-scrollbar { display: none; }
}

/* Room gallery swiper */
.room-gallery-swiper {
  height: 70vh;
  max-height: 650px;
}
.room-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-gallery-swiper .swiper-button-prev,
.room-gallery-swiper .swiper-button-next {
  color: var(--color-white);
  background: rgba(59,35,20,0.35);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: var(--transition-base);
}
.room-gallery-swiper .swiper-button-prev:hover,
.room-gallery-swiper .swiper-button-next:hover { background: rgba(59,35,20,0.6); }
.room-gallery-swiper .swiper-button-prev::after,
.room-gallery-swiper .swiper-button-next::after { font-size: 1rem; }
.room-gallery-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.4); opacity: 1; }
.room-gallery-swiper .swiper-pagination-bullet-active { background: var(--color-gold); }

@media (max-width: 991.98px) {
  .room-gallery-swiper { height: 50vh; max-height: 400px; }
}

/* Room detail panel */
.room-detail-panel { padding: 3rem 0; }
.room-detail-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.6rem;
}
.room-detail-panel .room-description {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.room-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-text-body);
  padding: 0.35rem 0;
}
.room-highlight-item i {
  color: var(--color-gold);
  width: 18px;
  text-align: center;
}
.amenity-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(59,35,20,0.1);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  transition: var(--transition-base);
  margin-bottom: 6px;
}
.amenity-tag:hover { border-color: var(--color-gold); color: var(--color-gold); }

/* Room separator */
.room-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

/* Tabs for Casita del Peon */
.room-tabs .nav-link {
  color: var(--color-text-light) !important;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.8rem 1.5rem;
  background: none;
}
.room-tabs .nav-link.active {
  color: var(--color-gold) !important;
  border-bottom-color: var(--color-gold);
  background: none;
}

/* Comparison cards */
.comparison-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59,35,20,0.06);
  transition: var(--transition-base);
  text-align: center;
}
.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(59,35,20,0.1);
}
.comparison-card img { width: 100%; height: 200px; object-fit: cover; }
.comparison-card-body { padding: 1.5rem; }
.comparison-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.comparison-card-body .room-type-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  display: block;
}
.comparison-card-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  color: var(--color-text-light);
}
.comparison-card-meta i { color: var(--color-gold); margin-right: 0.2rem; }

/* Comparison card — wide variant for grouped Suite card */
.comparison-card--wide { background: rgba(255,255,255,0.06); border: 1px solid rgba(var(--color-gold-rgb, 200,160,80),0.25); }
.comparison-card--wide .comparison-card-body h4 { color: var(--color-white); }
.comparison-card--wide .comparison-card-meta { color: rgba(255,255,255,0.6); }
.comparison-card-suite-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 150px;
  overflow: hidden;
}
.comparison-card-suite-imgs img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 0;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 7rem 0;
}
.cta-banner .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,35,20,0.55);
}
.cta-banner .cta-content { position: relative; z-index: 2; }
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .cta-banner { background-attachment: scroll; min-height: auto; padding: 5rem 0; }
}

/* Booking widget horizontal (rooms page) */
.booking-widget-sticky {
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(59,35,20,0.08);
  padding: 1rem 0;
  position: sticky;
  top: 58px;
  z-index: 1019;
}
.booking-widget-sticky .form-control {
  border: 1px solid rgba(59,35,20,0.12);
  font-size: 0.85rem;
  padding: 0.6rem 0.8rem;
}
.booking-widget-sticky .form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(196,162,101,0.15);
}

/* ==========================================================================
   RESPONSIVE — Mobile First
   xs: <576px  |  sm: 576–767px  |  md: 768–991px  |  lg: 992–1199px
   xl: 1200–1399px  |  xxl: 1400–1799px  |  tv: ≥1800px
   ========================================================================== */

/* ---------- Tablet + ---------- */
@media (max-width: 991.98px) {
  .section-padding {
    padding-top: var(--section-py-mobile);
    padding-bottom: var(--section-py-mobile);
  }
  .hero-booking .booking-form {
    gap: 0.75rem !important;
  }
}

/* ---------- Mobile (≤767px): efecto simplificado — solo fades, sin zoom ---------- */
@media (max-width: 767.98px) {

  /* Wrapper mantiene la altura para el scroll — más compacto en móvil */
  .hero-wrapper {
    height: 160vh;
  }

  /* Hero sticky funciona igual pero con altura del viewport móvil */
  .hero-section {
    height: 100svh; /* evita el bug de iOS con la barra del browser */
    min-height: 560px;
  }

  /* Sin zoom en móvil — la GPU no aguanta scale grandes */
  .hero-bg-exterior {
    background-position: center 65%;
    transform-origin: center center;
  }

  /* Interior sí visible — el JS lo controla */
  .hero-bg-interior {
    display: block;
  }

  /* Ambos contenidos controlados por JS */
  .hero-content-exterior,
  .hero-content-interior {
    display: flex;
  }

  /* Logo más pequeño */
  .hero-logo {
    max-width: 100px;
    margin-bottom: 0.75rem;
  }

  /* Título principal — tamaño apropiado para móvil */
  .hero-main-title {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    margin-bottom: 0.3rem;
    letter-spacing: -0.03em;
  }

  /* Subtitle */
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  /* Ambos contenidos anclados al fondo */
  .hero-content {
    padding: 1rem;
    align-items: flex-end;
    padding-bottom: 2rem;
  }

  /* Interior más compacto en móvil */
  .interior-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    margin-bottom: 0.25rem;
  }
  .interior-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
  }
  .interior-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .hero-booking {
    padding: 1rem;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .hero-booking .booking-form {
    flex-direction: column !important;
    gap: 0.6rem !important;
    align-items: stretch !important;
  }

  .booking-field {
    width: 100%;
  }

  .hero-booking input,
  .hero-booking select {
    width: 100%;
    min-width: auto;
    font-size: 1rem; /* previene zoom automático en iOS (mínimo 16px) */
    padding: 12px 14px;
  }

  .hero-booking .btn-reserve {
    width: 100%;
    padding: 14px;
    font-size: 0.85rem;
    margin-top: 0.3rem;
  }

  /* Trust bar — 2 columnas en móvil */
  .trust-item {
    padding: 0.5rem;
  }
  .trust-item i {
    font-size: 1.2rem;
  }
  .trust-item span {
    font-size: 0.72rem;
  }

  /* Room showcase — apila imagen encima del texto */
  .room-showcase-img {
    min-height: 280px;
  }
  .room-showcase-content {
    padding: 2rem 1.25rem;
  }
  .room-showcase-content h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* Split cards */
  .split-card {
    min-height: auto;
  }
  .split-card-content {
    padding: 2rem 1.25rem;
  }

  /* Subpage hero — scroll zoom (mobile) */
  .page-hero-wrapper {
    height: 160vh;
  }

  .page-hero-section {
    height: 100svh;
    min-height: 560px;
  }

  /* Experiencias hero (mobile) */
  .exp-hero {
    min-height: 55vh;
  }

  /* Footer */
  .site-footer {
    text-align: center;
  }
  .site-footer .col-lg-3,
  .site-footer .col-md-3 {
    margin-bottom: 1.5rem;
  }
}

/* ---------- Small mobile (≤575px): ajustes adicionales ---------- */
@media (max-width: 575.98px) {

  .hero-main-title {
    font-size: clamp(2rem, 10.5vw, 2.8rem);
  }

  .hero-logo {
    max-width: 90px;
  }

  /* Cenote section */
  .cenote-content h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  /* Gallery: 1 columna en teléfonos muy pequeños */
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  /* Navbar brand */
  .navbar-logo-white {
    height: 36px;
  }

  /* Trust badge */
  .trust-badge img {
    height: 44px;
  }

  /* CTA sections */
  .cta-content h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  /* Reduce section padding further */
  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* ---------- Tablet puro (576–991px): formulario en 2 filas ---------- */
@media (min-width: 576px) and (max-width: 991.98px) {

  .hero-main-title {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }

  .hero-logo {
    max-width: 130px;
  }

  .hero-booking .booking-form {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .booking-field {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
  }

  .hero-booking .btn-reserve {
    flex: 1 1 100%;
    width: 100%;
    margin-top: 0.25rem;
  }
}

/* ---------- TV / Pantallas grandes (≥1800px) ---------- */
@media (min-width: 1800px) {

  :root {
    --section-py: 9rem;
  }

  /* Límite de ancho para evitar líneas muy largas en TV */
  .container {
    max-width: 1600px;
  }

  .hero-main-title {
    font-size: 9rem;
  }

  .hero-logo {
    max-width: 220px;
  }

  .hero-subtitle {
    font-size: 1.75rem;
  }

  /* Room showcase content más generoso */
  .room-showcase-content {
    padding: 5rem 5rem;
  }
  .room-showcase-content h2 {
    font-size: 3.2rem;
  }

  /* Tipografía secciones */
  .section-heading {
    font-size: 3rem;
  }
}

/* ---------- Navbar Dropdown ---------- */
.navbar .dropdown-menu {
  background-color: rgba(30, 15, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(196,162,101,0.12);
  border-radius: 10px;
  padding: 0.6rem 0;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
  margin-top: 0;
  position: relative;
}
/* Bridge invisible — evita que el dropdown se cierre al cruzar el gap */
.navbar .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.navbar .dropdown-item {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 0.65rem 1.25rem;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, color 0.15s ease;
  border-radius: 0;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: rgba(196,162,101,0.1);
  color: var(--color-gold-light);
}
.navbar .dropdown-item.active {
  background-color: rgba(196,162,101,0.15);
  color: var(--color-gold);
}
.navbar .dropdown-item small {
  display: block;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
  font-weight: 600;
}
/* "Ver todas" separado sutilmente */
.dropdown-footer-item {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.3rem;
  padding-top: 0.3rem;
}
.dropdown-item-all {
  font-size: 0.72rem !important;
  color: var(--color-gold) !important;
  opacity: 0.8;
}
.dropdown-item-all:hover { opacity: 1; }

/* Dropdown en mobile — flujo estático dentro del drawer */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    position: static !important;
    float: none !important;
    background-color: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0.2rem 0 0.6rem 1rem;
    margin: 0;
    min-width: unset;
    width: 100%;
    /* Bootstrap añade display:none y display:block — lo dejamos funcionar */
  }
  .navbar .dropdown-item {
    font-size: 0.82rem;
    padding: 0.35rem 0;
    color: rgba(255,255,255,0.4);
    text-align: left;
    letter-spacing: 0.03em;
    white-space: normal;
  }
  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:active { color: rgba(255,255,255,0.75); background: none !important; }
  .navbar .dropdown-item small { display: none; }
  .dropdown-footer-item { border-top: none; margin-top: 0; padding-top: 0; }
  .dropdown-item-all { font-size: 0.78rem !important; color: var(--color-gold) !important; opacity: 0.7; }
}

/* ---------- Booking Field Labels ---------- */
.booking-field { display: flex; flex-direction: column; gap: 0.3rem; }
.booking-field label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: rgba(255,255,255,0.7);
}
.booking-form .form-control,
.booking-form .form-select {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  min-width: 150px;
}
.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.2);
  box-shadow: none;
  color: var(--color-white);
}
.booking-form .form-select option { color: var(--color-text-dark); background: var(--color-white); }

/* Room actions in showcases */
.room-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ---------- Room Booking Sidebar ---------- */
.room-booking-col {
  position: sticky;
  top: 90px;
  align-self: flex-start;
  height: fit-content;
}
.room-booking-sidebar {}
.room-booking-card {
  background: var(--color-cream-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(59,35,20,0.06);
}
.room-booking-card .form-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
}
.room-booking-card .form-control,
.room-booking-card .form-select {
  border: 1px solid rgba(59,35,20,0.12);
  font-size: 0.85rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
}
.room-booking-card .form-control:focus,
.room-booking-card .form-select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(196,162,101,0.15);
}
.room-booking-card .room-price-big {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text-dark);
  font-weight: 600;
}
.room-booking-card .room-price-label {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ---------- Experience Card ---------- */
.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.experience-card:hover img { transform: scale(1.06); }
.experience-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  color: var(--color-white);
  width: 100%;
  background: linear-gradient(to top, rgba(59,35,20,0.85) 0%, transparent 100%);
}
.experience-card-content h3 { color: var(--color-white); font-size: 1.5rem; margin-bottom: 0.5rem; }
.experience-card-content p { opacity: 0.85; font-size: 0.88rem; margin-bottom: 0; }

/* Experience card — card/body variant (experiencias.html) */
.experience-card-img {
  height: 220px;
  overflow: hidden;
}
.experience-card-img img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-card-body {
  padding: 1.5rem;
  background: var(--color-white);
  flex: 1;
}
.experience-card-body h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}
.experience-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}
.experience-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--color-gold);
  border: 1px solid rgba(180,144,84,0.4);
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
}
.experience-tag--adventure { color: #c0392b; border-color: rgba(192,57,43,0.4); }
.experience-tag--night { color: #2c3e6f; border-color: rgba(44,62,111,0.4); }

/* ---------- Pass Cards ---------- */
.pass-card {
  background: var(--color-white);
  border: 1px solid rgba(59,35,20,0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(59,35,20,0.05);
  transition: var(--transition-base);
}
.pass-card:hover {
  box-shadow: 0 8px 30px rgba(59,35,20,0.1);
  transform: translateY(-4px);
}
.pass-card--featured {
  border-color: var(--color-gold);
  background: linear-gradient(160deg, #fff 70%, rgba(180,144,84,0.05) 100%);
}
.pass-card-header { text-align: center; margin-bottom: 1.5rem; }
.pass-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(180,144,84,0.1);
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.pass-card-header h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}
.pass-card-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.pass-card-price small { font-size: 0.8rem; font-weight: 400; }
.pass-card-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.pass-card-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(59,35,20,0.06);
}
.pass-card-includes li:last-child { border-bottom: none; }

/* ---------- Romance Package ---------- */
.romance-package {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59,35,20,0.06);
  transition: var(--transition-base);
}
.romance-package:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(59,35,20,0.12);
}
.romance-package-img { height: 280px; overflow: hidden; }
.romance-package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.romance-package:hover .romance-package-img img { transform: scale(1.06); }
.romance-package-body { padding: 2rem; }
.romance-package-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.romance-package-body p { color: var(--color-text-light); font-size: 0.9rem; }

/* ---------- Romance Menu Cards ---------- */
.romance-menu-card {
  background: var(--color-white);
  border: 1px solid rgba(59,35,20,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  height: 100%;
}
.romance-menu-card--featured {
  border-color: var(--color-gold);
  background: rgba(180,144,84,0.05);
}
.romance-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.romance-menu-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-dark);
}
.romance-menu-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}
.romance-menu-price small { font-size: 0.65rem; }
.romance-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.romance-menu-items li {
  font-size: 0.82rem;
  color: var(--color-text-light);
  padding: 0.15rem 0;
}
.romance-menu-items li::before {
  content: '—';
  color: var(--color-gold);
  margin-right: 0.4rem;
}

/* ---------- Romance Pricing Table ---------- */
.romance-pricing-table {
  border: 1px solid rgba(59,35,20,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.romance-pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(59,35,20,0.07);
}
.romance-pricing-row:last-child { border-bottom: none; }
.romance-pricing-row--featured { background: rgba(180,144,84,0.06); }
/* 3-column layout when there are 3 children (suite + 2 prices) */
.romance-pricing-row:has(.romance-pricing-price + .romance-pricing-price) {
  grid-template-columns: 1fr auto auto;
}
.romance-pricing-suite {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}
.romance-pricing-suite span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-right: 0.5rem;
}
.romance-pricing-suite small {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  display: block;
  width: 100%;
  margin-left: 1.6rem;
}
.romance-pricing-price {
  font-size: 0.82rem;
  color: var(--color-text-light);
  white-space: nowrap;
  text-align: right;
  min-width: 80px;
}
.romance-pricing-price strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-gold);
}

/* ---------- Romance Ceremony Cards ---------- */
.romance-ceremony-card {
  background: var(--color-white);
  border: 1px solid rgba(59,35,20,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
}
.romance-ceremony-card--featured {
  border-color: var(--color-gold);
  background: rgba(180,144,84,0.04);
}
.romance-ceremony-card h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.4rem;
}
.romance-ceremony-scale { display: flex; flex-direction: column; gap: 0.4rem; }
.romance-ceremony-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(59,35,20,0.06);
}
.romance-ceremony-tier:last-child { border-bottom: none; }
.romance-ceremony-tier span { color: var(--color-text-light); }
.romance-ceremony-tier strong { color: var(--color-gold); }

/* ---------- Romance V2 — Subpages & Inquiry Sidebar ---------- */
.romance-package-price {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
}
.romance-package-price strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-gold);
}
.romance-package-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: color 0.2s;
}
.romance-package-link:hover { color: var(--color-gold-dark); }

/* Inquiry card */
.romance-inquiry-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}
.romance-inquiry-subtitle {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.romance-inquiry-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(59,35,20,0.08);
}
.romance-inquiry-contacts a {
  font-size: 0.82rem;
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.2s;
}
.romance-inquiry-contacts a:hover { color: var(--color-gold-dark); }

/* Textarea in booking card */
.room-booking-card textarea.form-control {
  border: 1px solid rgba(59,35,20,0.12);
  font-size: 0.85rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  resize: vertical;
}
.room-booking-card textarea.form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(196,162,101,0.15);
}

/* Menu detail cards (subpages) */
.romance-menu-detail {
  background: var(--color-white);
  border: 1px solid rgba(59,35,20,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.romance-menu-detail--featured {
  border-color: var(--color-gold);
  background: rgba(180,144,84,0.04);
}
.romance-menu-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.romance-menu-detail-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.2rem;
}
.romance-menu-detail-includes {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.romance-menu-detail-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}
.romance-menu-detail-price small { font-size: 0.65rem; }
.romance-menu-courses { display: flex; flex-direction: column; gap: 0.75rem; }
.romance-menu-course strong {
  font-size: 0.82rem;
  color: var(--color-primary-dark);
}
.romance-menu-course small {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}
.romance-menu-course ul {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
}
.romance-menu-course ul li {
  font-size: 0.82rem;
  color: var(--color-text-light);
  padding: 0.1rem 0 0.1rem 1rem;
  position: relative;
}
.romance-menu-course ul li::before {
  content: '—';
  color: var(--color-gold);
  position: absolute;
  left: 0;
}

/* Note callout */
.romance-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: rgba(180,144,84,0.06);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.romance-note i {
  color: var(--color-gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.romance-note strong {
  display: block;
  font-size: 0.82rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}
.romance-note p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Romance gallery swiper */
.romance-gallery-swiper { border-radius: var(--radius-md); overflow: hidden; }
.romance-gallery-swiper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.romance-gallery-swiper .swiper-pagination { bottom: 10px; }
.romance-gallery-swiper .swiper-pagination-bullet { background: #fff; opacity: 0.6; }
.romance-gallery-swiper .swiper-pagination-bullet-active { opacity: 1; background: var(--color-gold); }

/* Testimonials */
.romance-testimonial {
  background: var(--color-cream-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
}
.romance-testimonial-stars { color: var(--color-gold); font-size: 0.85rem; }
.romance-testimonial p {
  font-size: 0.88rem;
  color: var(--color-text-body);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.romance-testimonial-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

/* Landing form */
.romance-form-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.3rem;
}

/* Pricing header row */
.romance-pricing-row--header {
  background: rgba(59,35,20,0.04);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.romance-pricing-row--header .romance-pricing-price { font-size: 0.75rem; }

@media (max-width: 767.98px) {
  .romance-gallery-swiper img { height: 250px; }
  .romance-menu-detail-header { flex-direction: column; }
  .romance-pricing-suite span { font-size: 0.75rem; }
  .romance-pricing-price { font-size: 0.75rem; min-width: 65px; }
  .romance-pricing-price strong { font-size: 0.82rem; }
  .romance-pricing-row { padding: 0.7rem 0.75rem; gap: 0.4rem; }
  .romance-pricing-suite small { margin-left: 0; }
}

/* ---------- Restaurant Feature ---------- */
.restaurant-feature { position: relative; overflow: hidden; }
.restaurant-feature-img {
  position: relative;
  overflow: hidden;
  min-height: 450px;
}
.restaurant-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
}
.restaurant-feature:hover .restaurant-feature-img img { transform: scale(1.04); }
.restaurant-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3rem;
}
@media (max-width: 991.98px) {
  .restaurant-feature-img { min-height: 300px; }
  .restaurant-feature-content { padding: 2.5rem 1.5rem; }
}

/* ---------- Trust Bar — Premium Stats Design ---------- */
.trust-bar {
  background: var(--color-cream);
  border-bottom: 1px solid rgba(59,35,20,0.07);
  padding: 1.5rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-stat {
  text-align: center;
  padding: 1rem 2rem;
}
.trust-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-text-light);
  line-height: 1.4;
}
.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(59,35,20,0.1);
  flex-shrink: 0;
}
.trust-award {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
}
.trust-award img { height: 50px; }
.trust-award-text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  line-height: 1.5;
}
.trust-award-text strong { color: var(--color-gold); font-size: 0.85rem; }
.trust-amenities {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-amenity {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-body);
}
.trust-amenity i { color: var(--color-gold); font-size: 0.85rem; }

@media (max-width: 991.98px) {
  .trust-stat { padding: 0.5rem 1.5rem; }
  .trust-award { padding: 0.5rem 1.5rem; }
  .trust-amenities { padding: 0.5rem 1.5rem; gap: 1rem; }
  .trust-stat-number { font-size: 1.8rem; }
}
@media (max-width: 767.98px) {
  .trust-bar-inner { gap: 0.5rem; }
  .trust-divider { display: none; }
  .trust-stat, .trust-award, .trust-amenities {
    padding: 0.5rem 1rem;
  }
  .trust-amenities { justify-content: flex-start; }
}

/* ---------- Welcome Section ---------- */
.welcome-heading {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
}
.welcome-accent-line {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 1.25rem;
}
.welcome-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.welcome-body {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.welcome-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.welcome-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.welcome-stat strong {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.welcome-stat span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}
.welcome-img-wrap {
  position: relative;
}
.welcome-img-wrap img {
  width: 100%;
  object-fit: cover;
  min-height: 520px;
  border-radius: var(--radius-md);
  display: block;
}
.welcome-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--color-primary-dark);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  min-width: 170px;
  box-shadow: 0 8px 30px rgba(59,35,20,0.25);
}
.welcome-img-badge .badge-main {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin: 0.15rem 0;
}
.welcome-img-badge .badge-top,
.welcome-img-badge .badge-bottom {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  display: block;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .welcome-heading { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .welcome-img-wrap img { min-height: 380px; }
  .welcome-img-badge { left: 0; bottom: -1rem; padding: 1rem 1.2rem; min-width: 140px; }
  .welcome-img-badge strong { font-size: 1.4rem; }
}
@media (max-width: 767.98px) {
  .welcome-img-wrap { margin-top: 3rem; }
  .welcome-img-badge { bottom: -0.75rem; }
}

/* ---------- Room Number Overlay ---------- */
.room-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  transition: color 0.6s ease;
}
.room-showcase:hover .room-number {
  color: rgba(255,255,255,0.2);
}

/* ---------- Room Highlights Grid ---------- */
.room-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  margin-bottom: 1.8rem;
}
.room-highlight {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--color-text-body);
}
.room-highlight i {
  color: var(--color-gold);
  width: 14px;
  text-align: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.room-highlight span { line-height: 1.3; }

/* ---------- Room CTA Row ---------- */
.room-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.room-price-inline {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin: 0;
}
.room-price-inline strong {
  font-size: 1rem;
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-weight: 500;
}

@media (max-width: 575.98px) {
  .room-highlights { grid-template-columns: 1fr; gap: 0.4rem; }
  .room-cta-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ---------- Cenote — Exclusivity Features ---------- */
.cenote-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-gold);
  border: 1px solid rgba(196,162,101,0.4);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}
.cenote-content h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--color-white);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.cenote-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.cenote-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cenote-feature > i {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.cenote-feature > div { display: flex; flex-direction: column; }
.cenote-feature strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0.1rem;
}
.cenote-feature span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

/* ---------- Split Cards — Fullscreen Grid ---------- */
.split-cards-section {
  overflow: hidden;
}
.split-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-card-tall {
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.split-card-tall img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.split-card-tall:hover img { transform: scale(1.06); }
.split-card-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}
.split-card-tall .split-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  width: 100%;
  background: linear-gradient(to top, rgba(20,10,5,0.9) 0%, rgba(20,10,5,0.2) 70%, transparent 100%);
}
.split-card-tall .split-card-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.split-card-tall .split-card-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.split-card-link {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-gold);
  transition: var(--transition-base);
}
.split-card-tall:hover .split-card-link {
  color: var(--color-gold-light);
  letter-spacing: 0.25em;
}

@media (max-width: 767.98px) {
  .split-cards-grid { grid-template-columns: 1fr; }
  .split-card-tall { min-height: 420px; }
}

/* ---------- CTA Eyebrow ---------- */
.cta-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-gold);
  border: 1px solid rgba(196,162,101,0.4);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.2rem;
}

/* =====================================================
   ROOM PAGE — GALLERY SECTION
   ===================================================== */

/* Section wrapper */
.room-gallery-section {
  padding: var(--section-py) 0;
  background: var(--color-cream);
}
@media (max-width: 991.98px) {
  .room-gallery-section { padding: var(--section-py-mobile) 0; }
}

/* Gallery label */
.room-gallery-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-gold);
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* ---- Desktop grid (≥992px) ---- */
.room-gallery-grid {
  display: none; /* hidden on mobile */
}
@media (min-width: 992px) {
  .room-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 6px;
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .room-gallery-grid .rg-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .room-gallery-grid .rg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
  }
  .room-gallery-grid .rg-item:hover img { transform: scale(1.07); }
  /* Overlay on hover */
  .room-gallery-grid .rg-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30,12,3,0);
    transition: background 0.3s ease;
    pointer-events: none;
  }
  .room-gallery-grid .rg-item:hover::after { background: rgba(30,12,3,0.35); }
  /* Zoom icon */
  .room-gallery-grid .rg-item .rg-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
  }
  .room-gallery-grid .rg-item .rg-zoom i {
    font-size: 1.6rem;
    color: var(--color-white);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  }
  .room-gallery-grid .rg-item:hover .rg-zoom { opacity: 1; }
  /* First image spans 2 rows (hero) */
  .room-gallery-grid .rg-item:first-child { grid-row: span 2; }
}

/* ---- Mobile/tablet swiper (< 992px) ---- */
.room-gallery-swiper-wrap {
  display: block;
}
@media (min-width: 992px) {
  .room-gallery-swiper-wrap { display: none; }
}
.room-gallery-swiper-wrap .room-gallery-swiper {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* =====================================================
   SUITE THUMBNAIL GALLERY
   ===================================================== */
.suite-thumb-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 6px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.suite-thumb-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.suite-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.suite-thumb-item:hover img { transform: scale(1.08); }
.suite-thumb-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,12,3,0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.suite-thumb-item:hover::after { background: rgba(30,12,3,0.3); }
.suite-thumb-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.suite-thumb-zoom i {
  font-size: 1rem;
  color: var(--color-white);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.suite-thumb-item:hover .suite-thumb-zoom { opacity: 1; }

/* Suite separator */
.suite-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.25;
}

/* =====================================================
   ROOM LIGHTBOX
   ===================================================== */
.room-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,4,1,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.room-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.room-lightbox-img-wrap {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-lightbox-img-wrap img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: opacity 0.2s ease;
}
.room-lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  transition: color 0.2s;
  z-index: 10000;
}
.room-lightbox-close:hover { color: var(--color-gold); }
.room-lightbox-prev,
.room-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10000;
}
.room-lightbox-prev { left: 1.25rem; }
.room-lightbox-next { right: 1.25rem; }
.room-lightbox-prev:hover,
.room-lightbox-next:hover {
  background: rgba(196,162,101,0.2);
  border-color: rgba(196,162,101,0.4);
}
.room-lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  z-index: 10000;
}
@media (max-width: 575.98px) {
  .room-lightbox-prev { left: 0.5rem; }
  .room-lightbox-next { right: 0.5rem; }
}

/* =====================================================
   ROOM PAGE — BOOKING BOTTOM SHEET (mobile only)
   ===================================================== */
.rbs-sheet-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1060;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.rbs-sheet-backdrop.rbs-open { display: block; opacity: 1; }

.rbs-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1061;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 0 1.25rem 2rem;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.32,0.72,0,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
}
.rbs-sheet.rbs-open { transform: translateY(0); }

.rbs-sheet__handle {
  width: 40px;
  height: 4px;
  background: rgba(0,0,0,0.12);
  border-radius: 2px;
  margin: 0.85rem auto 0;
}
.rbs-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 1.1rem;
}
.rbs-sheet__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
}
.rbs-sheet__close {
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-text-light);
  padding: 0;
  cursor: pointer;
}
.rbs-sheet__price {
  margin-bottom: 1.1rem;
}
.rbs-sheet__price-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.rbs-sheet__price-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
}
.rbs-sheet__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.rbs-sheet__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: #128C7E;
  text-decoration: none;
  font-weight: 600;
}
.rbs-sheet__wa:hover { color: #075E54; }
.rbs-sheet__wa i { font-size: 1rem; }

/* =====================================================
   ROOM PAGE — BOOKING STICKY BAR (mobile only)
   ===================================================== */
.room-booking-sticky-bar {
  display: none;
}
@media (max-width: 991.98px) {
  .room-booking-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--color-cream-dark);
    border-top: 1px solid rgba(59,35,20,0.1);
    padding: 0.85rem 1.25rem;
    box-shadow: 0 -4px 20px rgba(59,35,20,0.1);
    gap: 1rem;
  }
  .room-booking-sticky-bar .btn-reserve {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
  }
  /* Add bottom padding to main content so sticky bar doesn't cover it */
  body.has-room-sticky { padding-bottom: 80px; }
}

/* =====================================================
   ROOM PAGE — OTRAS HABITACIONES (Sección C)
   ===================================================== */
.other-rooms-section {
  padding: var(--section-py) 0;
  background: var(--color-cream-alt);
}
@media (max-width: 991.98px) {
  .other-rooms-section { padding: var(--section-py-mobile) 0; }
}

/* Horizontal scroll on mobile */
@media (max-width: 767.98px) {
  .other-rooms-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .other-rooms-scroll::-webkit-scrollbar { display: none; }
  .other-rooms-scroll .other-room-card {
    min-width: 270px;
    max-width: 270px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* Other room card */
.other-room-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59,35,20,0.06);
  transition: var(--transition-base);
}
.other-room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(59,35,20,0.11);
}
.other-room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.other-room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.other-room-card:hover .other-room-card-img img { transform: scale(1.06); }
.other-room-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-white);
  background: rgba(30,12,3,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(196,162,101,0.3);
}
.other-room-card-body {
  padding: 1.25rem 1.4rem 1.4rem;
}
.other-room-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--color-text-dark);
}
.other-room-card-meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
}
.other-room-card-meta i {
  color: var(--color-gold);
  margin-right: 0.2rem;
}
.other-room-card-price {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}
.other-room-card-price strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-text-dark);
  font-weight: 500;
}
.other-room-card-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.other-room-card-actions .btn-reserve {
  flex: 1;
  padding: 0.55rem 0.75rem;
  font-size: 0.72rem;
}
.other-room-card-actions .btn-details {
  font-size: 0.72rem;
  color: var(--color-text-light);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.other-room-card-actions .btn-details:hover { color: var(--color-gold); }

/* ---------- Comparador Mini Hero ---------- */
.comparador-mini-hero {
  background: var(--color-primary-dark);
  padding: 6.5rem 1rem 1rem;
}
/* Reduce top padding on comparador section */
.comparador-mini-hero + main > .section-padding:first-child {
  padding-top: 1.5rem;
}

/* ---------- Comparador de Habitaciones ---------- */
.comparador-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.comparador-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(59,35,20,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.45;
  overflow: hidden;
  min-width: 0;
}
.comparador-toggle.active {
  opacity: 1;
  border-color: var(--color-gold);
  box-shadow: 0 6px 24px rgba(196,162,101,0.25);
}
.comparador-toggle:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(59,35,20,0.12); }
.comparador-toggle.active:hover { box-shadow: 0 8px 28px rgba(196,162,101,0.3); }
.comparador-toggle img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.comparador-toggle-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--color-text-dark);
  text-align: center;
  line-height: 1.25;
  padding: 0.6rem 0.5rem 0.2rem;
}
.comparador-toggle-type {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-gold);
  font-weight: 700;
  padding-bottom: 0.6rem;
}
/* Check indicator on active toggles */
.comparador-toggle::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s ease;
}
.comparador-toggle.active::after {
  opacity: 1;
  transform: scale(1);
}

/* Table */
.comparador-table-wrap {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(59,35,20,0.07);
  overflow: hidden;
}
.comparador-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.comparador-table thead th {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 0;
  text-align: center;
  vertical-align: bottom;
  border: none;
}
.comparador-table thead th.comparador-feature-col {
  width: 200px;
  min-width: 160px;
}
.comparador-header-card {
  padding: 1.25rem 0.75rem;
  text-align: center;
}
.comparador-header-card img {
  width: 100%;
  max-width: 140px;
  height: 85px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.6rem;
  border: 2px solid rgba(196,162,101,0.3);
}
.comparador-header-card h4 {
  font-size: 0.85rem;
  margin: 0 0 0.3rem;
  color: var(--color-white);
  line-height: 1.2;
}
.comparador-badge {
  display: inline-block;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.comparador-capacity {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}
.comparador-capacity i {
  color: var(--color-gold);
  margin-right: 0.2rem;
}

/* Table rows */
.comparador-table tbody td {
  padding: 0.65rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(59,35,20,0.06);
  vertical-align: middle;
  transition: background 0.2s, display 0.3s;
}
.comparador-table tbody td.comparador-feature-col {
  text-align: left;
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 0.82rem;
}
.comparador-section-row td {
  background: var(--color-cream, #faf7f2);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: left !important;
  padding: 0.8rem 0.75rem;
  border-bottom: 2px solid rgba(196,162,101,0.2);
}
.comparador-section-row td i { color: var(--color-gold); }
.comparador-row-hover td { background: rgba(196,162,101,0.06); }

/* Check / X icons */
.comparador-yes { color: #2e8b57; font-size: 0.9rem; }
.comparador-no { color: rgba(59,35,20,0.18); font-size: 0.75rem; }

/* Actions row */
.comparador-actions-row td {
  padding: 1.25rem 0.75rem;
  border-bottom: none;
}
.comparador-actions-row .btn-reserve { font-size: 0.72rem; padding: 0.5rem 0.75rem; }

/* Tablet */
@media (max-width: 991.98px) {
  .comparador-selector { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
  .comparador-toggle img { height: 80px; }
  .comparador-toggle-name { font-size: 0.72rem; padding: 0.5rem 0.35rem 0.15rem; }
}
/* Mobile */
@media (max-width: 767.98px) {
  .comparador-selector { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .comparador-toggle img { height: 75px; }
  .comparador-toggle-name { font-size: 0.72rem; }
  .comparador-toggle-type { font-size: 0.55rem; }
  .comparador-table { font-size: 0.75rem; }
  .comparador-table thead th.comparador-feature-col { width: 120px; min-width: 100px; }
  .comparador-header-card { padding: 0.75rem 0.4rem; }
  .comparador-header-card img { max-width: 80px; height: 50px; }
  .comparador-header-card h4 { font-size: 0.7rem; }
  .comparador-table tbody td { padding: 0.5rem 0.4rem; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   PIKADAY — Date Picker — Tema Hotel Cenote San Ignacio
   ========================================================================== */

/* Contenedor principal */
.pika-single {
  font-family: var(--font-body);
  background: #FEFCF8;
  border: none;
  border-radius: 14px;
  box-shadow:
    0 2px 4px rgba(59,35,20,0.04),
    0 8px 24px rgba(59,35,20,0.10),
    0 32px 64px rgba(59,35,20,0.12);
  color: var(--color-text-body);
  overflow: hidden;
  min-width: 0;
  width: 252px;
}

/* Línea dorada superior */
.pika-single::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Header */
.pika-title {
  background: #FEFCF8;
  padding: 0.75rem 2.6rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  position: relative;
  border-bottom: 1px solid rgba(196,162,101,0.15);
}

/* Mes y año — tipografía serif elegante */
.pika-label {
  font-family: var(--font-heading) !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: var(--color-primary-dark) !important;
  background: transparent !important;
  letter-spacing: 0.02em;
  border: none !important;
  padding: 0 0.1rem !important;
  cursor: default;
}
.pika-label.pika-year-label {
  color: var(--color-text-light) !important;
  font-size: 0.78rem !important;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
}
.pika-label select { display: none; }

/* Flechas de navegación — delicadas */
.pika-prev,
.pika-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent !important;
  border: 1px solid rgba(196,162,101,0.3) !important;
  opacity: 1 !important;
  text-indent: -9999px; /* oculta el texto nativo */
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pika-prev { left: 0.75rem; }
.pika-next { right: 0.75rem; }
/* Flecha SVG via pseudo-elemento */
.pika-prev::before,
.pika-next::before {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pika-prev::after,
.pika-next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--color-gold);
  border-right: 1.5px solid var(--color-gold);
  transition: border-color 0.2s ease;
}
.pika-prev::after {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.pika-next::after {
  transform: translate(-70%, -50%) rotate(45deg);
}
.pika-prev:hover,
.pika-next:hover {
  background: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
}
.pika-prev:hover::after,
.pika-next:hover::after {
  border-color: #fff;
}

/* Tabla de días */
.pika-table {
  border-collapse: separate;
  border-spacing: 1px;
  padding: 0.5rem 0.7rem 0.7rem;
  width: 100%;
  table-layout: fixed;
}

/* Nombres de días de la semana */
.pika-table th {
  padding: 0.25rem 0;
  text-align: center;
}
.pika-table th abbr {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-decoration: none;
}

/* Separador bajo los nombres de día */
.pika-table thead tr:first-child th {
  padding-bottom: 0.5rem;
}

/* Celdas */
.pika-table td {
  padding: 1px;
  text-align: center;
}
.pika-single .pika-button {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--color-text-body);
  background: transparent;
  text-align: center;
  width: 28px;
  height: 28px;
  line-height: 28px;
  padding: 0;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}
.pika-single .pika-button:hover,
.pika-single .pika-button:focus {
  background: rgba(196,162,101,0.12) !important;
  color: var(--color-primary-dark) !important;
  transform: scale(1.08);
  outline: none;
}

/* Día seleccionado */
.pika-single .is-selected .pika-button,
.pika-single .is-selected .pika-button:hover {
  background: var(--color-primary-dark) !important;
  color: #fff !important;
  font-weight: 600;
  transform: scale(1) !important;
  box-shadow: 0 4px 14px rgba(59,35,20,0.28);
}

/* Día de hoy — punto dorado discreto */
.pika-single .is-today .pika-button {
  color: var(--color-gold) !important;
  font-weight: 600;
  position: relative;
}
.pika-single .is-today .pika-button::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* Días deshabilitados / fuera del mes */
.pika-single .is-disabled .pika-button {
  color: rgba(139,125,107,0.22) !important;
  cursor: not-allowed;
  transform: none !important;
  background: transparent !important;
}
.pika-single .is-outside-current-month .pika-button {
  color: rgba(139,125,107,0.18) !important;
}

/* Rango checkin→checkout */
.pika-single .is-inrange .pika-button {
  background: rgba(196,162,101,0.1) !important;
  color: var(--color-primary-dark) !important;
  border-radius: 0 !important;
  transform: none !important;
}
.pika-single .is-startrange .pika-button {
  background: var(--color-gold) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 50% 0 0 50% !important;
  box-shadow: 0 4px 12px rgba(196,162,101,0.38);
}
.pika-single .is-endrange .pika-button {
  background: var(--color-gold) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 0 50% 50% 0 !important;
  box-shadow: 0 4px 12px rgba(196,162,101,0.38);
}

/* Footer y elementos innecesarios */
.pika-footer,
.pika-select { display: none !important; }

/* Z-index sobre todo */
.pika-single { z-index: 9999 !important; }

/* Alineación derecha — para cards en el lado derecho de la pantalla */
.pika-single.pika-align-right {
  right: 0;
  left: auto !important;
}

/* ==========================================================================
   RESTAURANT SWIPER (Gastronomía page)
   ========================================================================== */
.restaurant-feature-img .restaurant-swiper {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 8px;
  overflow: hidden;
}
.restaurant-feature-img .restaurant-swiper img {
  position: static;
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: none;
}
.restaurant-swiper .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 0.5;
}
.restaurant-swiper .swiper-pagination-bullet-active {
  background: var(--color-gold);
  opacity: 1;
}
@media (max-width: 991.98px) {
  .restaurant-feature-img .restaurant-swiper,
  .restaurant-feature-img .restaurant-swiper img { min-height: 300px; height: 300px; }
}

/* ---------- Breakfast Grid ---------- */
.gastro-breakfast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  aspect-ratio: 1;
}
.gastro-breakfast-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.gastro-breakfast-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  height: 100%;
}
.gastro-breakfast-item strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-gold-light);
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}
.gastro-breakfast-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
@media (max-width: 575.98px) {
  .gastro-breakfast-grid { aspect-ratio: auto; }
  .gastro-breakfast-img { height: 150px; }
}

/* ---------- Gastro Gallery & Restaurant Details ---------- */
.gastro-gallery-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.gastro-swiper-standalone {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gastro-swiper-standalone img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.gastro-swiper-standalone .swiper-pagination {
  bottom: 12px;
}
.gastro-swiper-standalone .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  width: 8px;
  height: 8px;
}
.gastro-swiper-standalone .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-gold);
}
.gastro-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.gastro-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.gastro-detail-item i {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.gastro-detail-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.15rem;
}
.gastro-detail-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
@media (max-width: 991.98px) {
  .gastro-swiper-standalone img { height: 320px; }
}
@media (max-width: 575.98px) {
  .gastro-swiper-standalone img { height: 250px; }
}

/* ==========================================================================
   CENOTE PAGE
   ========================================================================== */

/* ---------- Cenote Hero ---------- */
.cenote-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}
.cenote-hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cenote-hero-swiper .swiper-slide {
  overflow: hidden;
}
.cenote-hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}
.cenote-hero-swiper .swiper-slide-active .cenote-hero-bg {
  transform: scale(1);
}
.cenote-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
  pointer-events: none;
}
.cenote-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.cenote-hero-content .hero-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-gold);
}
.cenote-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--color-white);
  margin: 0.5rem 0;
  font-weight: 700;
}
.cenote-hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- Included Bar ---------- */
.cenote-included-bar {
  background: var(--color-primary-dark);
  padding: 1.2rem 0;
  position: sticky;
  top: 56px;
  z-index: 90;
}
.cenote-included-label {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}
.cenote-included-item {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.cenote-included-item i {
  color: var(--color-gold);
  margin-right: 0.3rem;
}

/* ---------- Water Body Number ---------- */
.cenote-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.3rem;
}

/* ---------- Activity Tags ---------- */
.cenote-act-tag {
  display: inline-block;
  background: rgba(196,162,101,0.12);
  color: var(--color-gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* ---------- Activity Cards (Dark Section) ---------- */
.cenote-activity-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  border: 1px solid rgba(255,255,255,0.08);
}
.cenote-activity-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,162,101,0.3);
}
.cenote-activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cenote-activity-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cenote-activity-body h5 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.cenote-activity-body p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  flex: 1;
}

/* ---------- Pass Tags ---------- */
.cenote-pass-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}
.cenote-pass-aventura {
  background: rgba(255,165,0,0.15);
  color: #f5a623;
}
.cenote-pass-nocturno {
  background: rgba(100,100,255,0.15);
  color: #8b9cf7;
}

/* ---------- Facilities Grid ---------- */
.cenote-facility {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.cenote-facility i {
  font-size: 1.8rem;
  color: var(--color-gold);
}
.cenote-facility span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-dark);
}
.cenote-facility small {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* ---------- Pass Cards ---------- */
.cenote-pass-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--color-white);
  transition: var(--transition-base);
}
.cenote-pass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.cenote-pass-header {
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.cenote-pass-header i {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  display: block;
}
.cenote-pass-header h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.cenote-pass-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.cenote-pass-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-light);
  display: block;
  margin-top: 0.3rem;
}
.cenote-pass-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.cenote-pass-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  flex: 1;
}
.cenote-pass-body ul li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--color-text-body);
}
.cenote-pass-body ul li i {
  color: var(--color-gold);
  width: 1.2rem;
  margin-right: 0.4rem;
}
.cenote-pass-note {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

/* Included variant */
.cenote-pass-card--included .cenote-pass-header {
  background: var(--color-primary-dark);
  color: var(--color-white);
}
.cenote-pass-card--included .cenote-pass-header i { color: var(--color-gold); }
.cenote-pass-card--included .cenote-pass-header h4 { color: var(--color-white); }
.cenote-pass-card--included .cenote-pass-price { color: var(--color-gold); }

/* Aventura variant */
.cenote-pass-card--aventura .cenote-pass-header {
  background: linear-gradient(135deg, #5C3A1E 0%, #8B5E3C 100%);
  color: var(--color-white);
}
.cenote-pass-card--aventura .cenote-pass-header i { color: #f5a623; }
.cenote-pass-card--aventura .cenote-pass-header h4 { color: var(--color-white); }
.cenote-pass-card--aventura .cenote-pass-price { color: var(--color-gold-light); }

/* Nocturno variant */
.cenote-pass-card--nocturno .cenote-pass-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
  color: var(--color-white);
}
.cenote-pass-card--nocturno .cenote-pass-header i { color: #8b9cf7; }
.cenote-pass-card--nocturno .cenote-pass-header h4 { color: var(--color-white); }
.cenote-pass-card--nocturno .cenote-pass-price { color: #c4b5fd; }

/* ---------- Public Note ---------- */
.cenote-public-note {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.cenote-public-note h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text-dark);
}
.cenote-public-note h5 i {
  color: var(--color-gold);
}
.cenote-public-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.5rem;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  min-width: 180px;
}
.cenote-public-price strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-primary-dark);
}
.cenote-public-price span {
  font-size: 0.82rem;
  color: var(--color-text-body);
}
.cenote-public-price small {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* ---------- Cenote Gallery ---------- */
.cenote-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.cenote-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cenote-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cenote-gallery-item:hover img {
  transform: scale(1.05);
}
.cenote-gallery-wide {
  grid-column: span 2;
}
.cenote-gallery-wide img {
  height: 300px;
}

/* ---------- Cenote Responsive ---------- */
@media (max-width: 991.98px) {
  .cenote-hero { height: 70vh; min-height: 400px; }
  .cenote-included-bar { position: static; }
  .cenote-gallery { grid-template-columns: repeat(2, 1fr); }
  .cenote-gallery-wide { grid-column: span 2; }
  .cenote-gallery-wide img { height: 240px; }
}
@media (max-width: 575.98px) {
  .cenote-hero { height: 60vh; min-height: 350px; }
  .cenote-included-item { font-size: 0.72rem; }
  .cenote-included-label { font-size: 0.68rem; }
  .cenote-gallery { grid-template-columns: 1fr 1fr; }
  .cenote-gallery-wide { grid-column: span 1; }
  .cenote-gallery-item img,
  .cenote-gallery-wide img { height: 180px; }
  .cenote-pass-price { font-size: 1.6rem; }
  .cenote-public-price { min-width: auto; padding: 0.8rem 1rem; }
}

/* ================================================================
   HOME V2 — EDITORIAL REDESIGN
   ================================================================ */

/* ---------- Editorial Intro ---------- */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.editorial-split-left {
  position: sticky;
  top: 120px;
}
.editorial-split-left .section-subtitle {
  display: block;
  margin-bottom: 1.5rem;
}
.editorial-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
}
.editorial-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold);
  margin: 0;
  letter-spacing: 0.02em;
}
.editorial-accent-line {
  width: 50px;
  height: 2px;
  background: var(--color-gold);
  margin: 1.5rem auto;
}
.editorial-accent-line--left {
  margin: 0 0 1.5rem 0;
}
.editorial-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
}
.editorial-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59,35,20,0.1);
}
.editorial-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--color-text-body);
  font-weight: 500;
}
.editorial-highlight-item i {
  color: var(--color-gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .editorial-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .editorial-split-left {
    position: static;
    text-align: center;
  }
  .editorial-accent-line--left {
    margin: 0 auto 1.5rem auto;
  }
  .editorial-heading {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
  .editorial-highlights {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .editorial-highlights {
    grid-template-columns: 1fr;
  }
}

/* ---------- Location Band ---------- */
.location-band {
  background: var(--color-primary-dark);
  padding: 2.2rem 0;
  color: #fff;
}
.location-band-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.location-band-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.location-band-item i {
  font-size: 1.2rem;
  color: var(--color-gold);
  flex-shrink: 0;
}
.location-band-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.location-band-item span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.1rem;
}
.location-band-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .location-band-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .location-band-item { flex-direction: column; gap: 0.35rem; }
  .location-band-divider { width: 40px; height: 1px; }
}

/* ---------- Room Navigation Grid ---------- */
.rooms-grid-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--color-text-dark);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.room-grid-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 20px rgba(59,35,20,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
}
.room-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(59,35,20,0.12);
  color: inherit;
  text-decoration: none;
}
.room-grid-card--featured {
  grid-column: span 2;
  flex-direction: row;
}
.room-grid-card--featured .room-grid-card-img {
  flex: 0 0 60%;
  max-width: 60%;
  aspect-ratio: auto;
  min-height: 380px;
}
.room-grid-card--featured .room-grid-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.room-grid-card--reverse {
  flex-direction: row-reverse;
}
.room-grid-card--reverse .room-grid-card-img {
  flex: 0 0 60%;
  max-width: 60%;
}
.room-grid-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.room-grid-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.room-grid-card:hover .room-grid-card-img img {
  transform: scale(1.04);
}
.room-grid-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary-dark);
  color: var(--color-gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
}
.room-grid-card-body {
  padding: 1.5rem;
}
.room-grid-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
}
.room-grid-capacity {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
}
.room-grid-capacity i {
  color: var(--color-gold);
  margin-right: 0.4rem;
  font-size: 0.72rem;
}
.room-grid-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.room-grid-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.room-grid-card:hover .room-grid-link {
  color: var(--color-gold-dark);
}

/* Comparator CTA */
.rooms-comparator-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-cream-dark);
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(59,35,20,0.08);
}
.rooms-comparator-cta-inner > i {
  font-size: 1.8rem;
  color: var(--color-gold);
  flex-shrink: 0;
}
.rooms-comparator-cta-inner > div {
  flex: 1;
  text-align: left;
}
.rooms-comparator-cta-inner strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin-bottom: 0.2rem;
}
.rooms-comparator-cta-inner span {
  font-size: 0.82rem;
  color: var(--color-text-light);
}
.rooms-comparator-cta-inner .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .room-grid-card--featured,
  .room-grid-card--reverse {
    grid-column: span 2;
    flex-direction: column;
  }
  .room-grid-card--featured .room-grid-card-img,
  .room-grid-card--reverse .room-grid-card-img {
    flex: none;
    max-width: 100%;
    min-height: 260px;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 767.98px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .room-grid-card--featured,
  .room-grid-card--reverse { grid-column: span 1; }
  .rooms-comparator-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .rooms-comparator-cta-inner > div { text-align: center; }
}

/* ---------- Experiences Triptych ---------- */
.experiences-triptych { overflow: hidden; }
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.experience-tall-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
}
.experience-tall-card:hover { color: #fff; text-decoration: none; }
.experience-tall-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.experience-tall-card:hover img {
  transform: scale(1.05);
}
.experience-tall-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  z-index: 1;
}
.experience-tall-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
}
.experience-tall-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin: 0.75rem 0 0.5rem;
  line-height: 1.3;
}
.experience-tall-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
}
@media (max-width: 991.98px) {
  .experience-tall-card { min-height: 450px; }
}
@media (max-width: 767.98px) {
  .experiences-grid { grid-template-columns: 1fr; }
  .experience-tall-card { min-height: 400px; }
}

/* ---------- Awards Band ---------- */
.awards-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.award-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.award-item img {
  height: 60px;
  object-fit: contain;
}
.award-item strong {
  font-size: 0.9rem;
  color: var(--color-text-dark);
}
.award-item > span {
  font-size: 0.72rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.award-score {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-gold);
  font-weight: 500;
  line-height: 1;
}
.award-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
}
@media (max-width: 575.98px) {
  .awards-row { gap: 2.5rem; }
  .award-score { font-size: 2.5rem; }
}

/* ---------- Pet Friendly Section V2 ---------- */
.pet-section-icon {
  display: inline-block;
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.pet-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}
.pet-desc {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.pet-section-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}
.pet-section-list li {
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.pet-section-list li i {
  color: var(--color-gold);
  margin-right: 0.5rem;
  font-size: 0.75rem;
}
.pet-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.75rem;
  height: 100%;
}
.pet-gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pet-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.pet-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pet-gallery-side img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  min-height: 0;
}
@media (max-width: 767.98px) {
  .pet-gallery { grid-template-columns: 1fr 1fr; }
  .pet-gallery-main { grid-column: span 2; }
  .pet-gallery-main img { min-height: 220px; max-height: 260px; }
  .pet-gallery-side { flex-direction: row; grid-column: span 2; }
  .pet-gallery-side img { height: 150px; }
}

/* Rooms Background Section — Home */
.rooms-bg-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.rooms-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.rooms-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 10, 0.75);
}
.rooms-bg-section .container-fluid {
  position: relative;
  z-index: 1;
}
.rooms-bg-section .section-subtitle {
  color: var(--color-gold);
}
.rooms-bg-section h2 {
  color: #fff;
}
.rooms-bg-section .section-divider {
  background-color: rgba(255,255,255,0.3);
}
.rooms-bg-section .text-muted {
  color: rgba(255,255,255,0.8) !important;
}
.rooms-bg-section .rooms-comparator-cta-inner {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.rooms-bg-section .rooms-comparator-cta-inner strong {
  color: #fff;
}
.rooms-bg-section .rooms-comparator-cta-inner span {
  color: rgba(255,255,255,0.8);
}
.rooms-bg-section .rooms-comparator-cta-inner .btn-outline-luxury {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.rooms-bg-section .rooms-comparator-cta-inner .btn-outline-luxury:hover {
  background: var(--color-gold);
  color: #fff;
}
@media (max-width: 991.98px) {
  .rooms-bg-image {
    background-attachment: scroll;
  }
}
