@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes hero-zoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

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

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
  color: var(--color-ink);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: var(--line-height-tight);
}

.text-lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-muted);
}

.text-muted {
  color: var(--color-muted);
}

.text-display {
  font-family: var(--font-display);
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.03em;
  line-height: var(--line-height-tight);
}

:root {
  /* ── Palette cálida oscura (inspirado en sitio anterior) ── */
  --color-indigo-ink: #2c2a1c;          /* antes: #2c2a1c → oliva oscuro cálido */
  --color-indigo-100: #ede8d8;          /* antes: #ede8d8 → crema cálida */
  --color-indigo-200: #e0d8c0;          /* antes: #e0d8c0 → crema media */
  --color-sky:        #8a7a5a;          /* antes: #8a7a5a → tostado cálido */
  --color-cream:      #ece8dc;          /* antes: #ece8dc → crema más cálida */
  --color-sand:       #e4dcc8;          /* antes: #f4f4f6 */
  --color-olive:      #4a4830;          /* antes: #4a5d3f */
  --color-olive-light: #e0dcc8;         /* antes: #ededef */
  --color-white:      #ffffff;
  --color-ink:        #1f1e14;          /* antes: #1f1e14 → tinta muy oscura cálida */
  --color-muted:      #6a6250;          /* antes: #6a6250 → gris cálido */
  --color-stroke:     #c8c0a8;          /* antes: #d0d0d5 → trazo cálido */
  --color-accent:     #2c2a1c;          /* antes: #2c2a1c */
  --color-basic-base: #ece8dc;
  --color-basic-stroke: #c8c0a8;
  --color-accent-indigo-100: #ede8d8;
  --color-accent-indigo-200: #e0d8c0;
  --font-display: Fraunces, Georgia, serif;
  --font-body: DM Sans, system-ui, sans-serif;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-hero: clamp(2.5rem, 6vw, 4.5rem);
  --font-size-2xl: clamp(1.75rem, 4vw, 2.75rem);
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --line-height-tight: 1.1;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.65;
  --spacing-16: 1rem;
  --spacing-24: 1.5rem;
  --spacing-32: 2rem;
  --spacing-48: 3rem;
  --spacing-64: 4rem;
  --spacing-80: 5rem;
  --spacing-96: 6rem;
  --header-height: 4.5rem;
  --container-max: 75rem;
  --border-radius-button: 999px;
  --border-radius-card: 1rem;
  --motion-ease-natural: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-duration-natural: 300ms;
  --motion-duration-slow: 500ms;
  --shadow-md: 0 8px 24px rgba(31, 30, 20, 0.14);
}

body {
  background-color: #1f1e14;   /* fondo oscuro oliva — paleta sitio anterior */
}

::selection {
  background-color: var(--color-indigo-200);
  color: var(--color-indigo-ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-container {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
}

.u-container--narrow {
  width: min(100% - 2rem, 42rem);
  margin-inline: auto;
}

.u-text-center {
  text-align: center;
}

.u-stack-24 > * + * {
  margin-top: var(--spacing-24);
}

.u-stack-32 > * + * {
  margin-top: var(--spacing-32);
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-gap-16 {
  gap: var(--spacing-16);
}

.u-gap-24 {
  gap: var(--spacing-24);
}

.u-hidden {
  display: none !important;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 48rem) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 36rem) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid--auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.flex {
  display: flex;
  gap: 1rem;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--between {
  justify-content: space-between;
  align-items: center;
}
.flex--center {
  align-items: center;
  justify-content: center;
}

.section {
  padding-block: 4rem;
}
@media (min-width: 64rem) {
  .section {
    padding-block: 6rem;
  }
}
.section--flush-top {
  padding-top: 0;
}
.section--sand {
  background-color: #f4f4f6;
}
.section--indigo {
  background-color: #2c2a1c;
  color: #ffffff;
}
.section--indigo .section__title,
.section--indigo .intro-block__title {
  color: #ffffff;
}
.section--indigo .intro-block__content {
  color: rgba(255, 255, 255, 0.85);
}
.section--indigo .intro-block__annotation,
.section--indigo .intro-block__subtitle {
  color: #e0d8c0;
}
.section--indigo .intro-block__title em {
  color: #e4dcc8;
}
.section--indigo .annotation {
  color: #e0d8c0;
}

/* ── Sección sobre fondo oscuro: solo texto claro, sin cambiar bg ── */
.section--dark-text .intro-block__annotation,
.section--dark-text .intro-block__subtitle {
  color: rgba(255, 255, 255, 0.65);
}
.section--dark-text .intro-block__title {
  color: #ffffff;
}
.section--dark-text .intro-block__title em {
  color: #e4dcc8;
}
.section--dark-text .intro-block__content {
  color: rgba(255, 255, 255, 0.80);
}
.section--olive {
  background-color: #ededef;
}
.section__inner {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
}

.intro-block {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.intro-block--left {
  margin-inline: 0;
  text-align: left;
}
.intro-block__annotation {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2c2a1c;
  display: block;
  margin-bottom: 0.75rem;
}
.intro-block__subtitle {
  display: block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2c2a1c;
  margin-bottom: 0.5rem;
}
.intro-block__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  color: #1f1e14;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.intro-block__title em {
  font-style: italic;
  color: #2c2a1c;
}
.intro-block__content {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #6a6250;
  max-width: 38rem;
  margin-inline: auto;
}
.intro-block--left .intro-block__content {
  margin-inline: 0;
}

/* ── Reveal de elementos ────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reveal de secciones completas (fade-up suave) ──────────── */
[data-section-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-section-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Línea divisora entre secciones ────────────────────────── */
.section + .section,
.feat-cards + .section,
.section + .feat-cards,
.feat-cards + .events-wrapper,
.section + .events-wrapper {
  border-top: 1px solid rgba(31, 30, 20, 0.09);
}

.sticky-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 800;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-block: 1px solid #d0d0d5;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-nav.is-scrolled {
  box-shadow: 0 2px 8px rgba(31, 30, 20, 0.06);
}
.sticky-nav__list {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-block: 0.75rem;
  scrollbar-width: none;
}
.sticky-nav__list::-webkit-scrollbar {
  display: none;
}
.sticky-nav__link {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1),
              color 300ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-nav__link.is-active {
  background-color: #2c2a1c;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(44, 42, 28, 0.30);
}
.sticky-nav__link:hover:not(.is-active) {
  background-color: #ede8d8;
  color: #2c2a1c;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:focus-visible {
  outline: 2px solid #8a7a5a;
  outline-offset: 2px;
}
@media (hover: hover) {
  .btn:hover {
    transform: translateY(-1px);
  }
}
.btn--primary {
  background-color: #2c2a1c;
  color: #ffffff;
}
@media (hover: hover) {
  .btn--primary:hover {
    background-color: #3a3820;
  }
}
.btn--secondary {
  background-color: #ede8d8;
  color: #2c2a1c;
  border-color: #d0d0d5;
}
@media (hover: hover) {
  .btn--secondary:hover {
    background-color: #e0d8c0;
  }
}
.btn--ghost {
  background-color: transparent;
  color: #2c2a1c;
  border-color: #d0d0d5;
}
@media (hover: hover) {
  .btn--ghost:hover {
    background-color: #ffffff;
  }
}
.btn--light {
  background-color: #ffffff;
  color: #2c2a1c;
}
@media (hover: hover) {
  .btn--light:hover {
    background-color: #ede8d8;
  }
}
.btn--glass {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (hover: hover) {
  .btn--glass:hover {
    background-color: rgba(255, 255, 255, 0.92);
    color: #2c2a1c;
    border-color: rgba(255, 255, 255, 0.92);
  }
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #d0d0d5;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(31, 30, 20, 0.12);
  }
}
.card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ede8d8;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .card:hover .card__media img {
    transform: scale(1.04);
  }
}
.card__body {
  padding: 1.5rem;
}
.card__tag {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2c2a1c;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.card__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.card__text {
  font-size: 0.875rem;
  color: #6a6250;
  line-height: 1.65;
}
@media (min-width: 48rem) {
  .card--horizontal {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
  }
}
.card--horizontal .card__media {
  aspect-ratio: auto;
  min-height: 14rem;
}
@media (min-width: 48rem) {
  .card--horizontal .card__media {
    min-height: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════════
   REVIEWS — Reseñas de Huéspedes
══════════════════════════════════════════════════════════════════ */

/* Puntuaciones por plataforma */
.rv-scores {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(31, 30, 20, 0.08);
  margin-top: var(--spacing-48);
  overflow: hidden;
}
.rv-scores__sep {
  width: 1px;
  background: #e8e4de;
  flex-shrink: 0;
}
.rv-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  flex: 1;
  min-width: 0;
}
.rv-score__icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 0.625rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rv-score__icon svg { width: 100%; height: 100%; display: block; }
.rv-score__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}
.rv-score__platform {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6a6250;
}
.rv-score__row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.rv-score__num {
  font-family: "Fraunces", serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f1e14;
  line-height: 1;
}
.rv-score__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2c2a1c;
}
.rv-score__bar {
  height: 4px;
  background: #e8e4de;
  border-radius: 999px;
  overflow: hidden;
  margin-block: 0.35rem;
}
.rv-score__fill {
  height: 100%;
  background: #2c2a1c;
  border-radius: 999px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.rv-score__fill--google      { background: #4285F4; }
.rv-score__fill--tripadvisor { background: #00AA6C; }
.rv-score__count {
  font-size: 0.75rem;
  color: #8a8070;
}

/* Grid de tarjetas */
/* ── Carrusel de reseñas ─────────────────────────────────────────── */
.rv-carousel {
  position: relative;
  margin-top: var(--spacing-48);
}

/* Viewport con overflow hidden para ocultar tarjetas fuera */
.rv-carousel__viewport {
  overflow: hidden;
  border-radius: 1rem;
}

/* Track horizontal */
.rv-grid {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Ancho de cada tarjeta según breakpoint */
.rv-card {
  flex: 0 0 calc((100% - 3rem) / 3); /* 3 tarjetas visible en desktop */
  min-width: 0;
}
@media (max-width: 63.9375rem) {   /* tablet */
  .rv-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
  .rv-scores { flex-direction: column; }
  .rv-scores__sep { width: 100%; height: 1px; }
  .rv-score { padding: 1.25rem 1.5rem; }
}
@media (max-width: 47.9375rem) {   /* móvil */
  .rv-card { flex: 0 0 100%; }
}

/* ── Flechas de navegación ─────────────────────────────────────── */
.rv-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 2px 12px rgba(26,26,46,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2c2a1c;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.rv-carousel__arrow:hover {
  background: #2c2a1c;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(44,42,28,0.25);
}
.rv-carousel__arrow--prev { left: -1.375rem; }
.rv-carousel__arrow--next { right: -1.375rem; }
.rv-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 47.9375rem) {
  .rv-carousel__arrow--prev { left: 0; }
  .rv-carousel__arrow--next { right: 0; }
}

/* ── Dots ────────────────────────────────────────────────────────── */
.rv-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.rv-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(44,42,28,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}
.rv-dot.is-active {
  background: #2c2a1c;
  width: 1.5rem;
  border-radius: 999px;
}

/* Tarjeta de reseña */
.rv-card {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(31, 30, 20, 0.06), 0 8px 32px rgba(31, 30, 20, 0.06);
  transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 360ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .rv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(31, 30, 20, 0.08), 0 20px 56px rgba(31, 30, 20, 0.14);
  }
}
.rv-card--featured {
  box-shadow: 0 4px 12px rgba(44, 42, 28, 0.12), 0 16px 48px rgba(44, 42, 28, 0.12);
}

/* Foto superior de la tarjeta */
.rv-card__photo {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.rv-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .rv-card:hover .rv-card__photo img {
    transform: scale(1.05);
  }
}
.rv-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 30, 0.55) 100%);
}

/* Badge de plataforma sobre la foto */
.rv-card__platform-pill {
  position: absolute;
  bottom: 0.75rem;
  left: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.rv-card__platform-pill--booking {
  background: rgba(0, 53, 128, 0.88);
  color: #ffffff;
}
.rv-card__platform-pill--google {
  background: rgba(255, 255, 255, 0.92);
  color: #1f1e14;
}
.rv-card__platform-pill--tripadvisor {
  background: rgba(52, 224, 161, 0.92);
  color: #004a2e;
}

/* Badge destacada */
.rv-card__featured-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.875rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* Cuerpo de la tarjeta */
.rv-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

/* Reviewer info */
.rv-card__reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rv-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e8e4de;
}
.rv-card__avatar--couple {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2c2a1c, #4a4830);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.rv-card__reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}
.rv-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1f1e14;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rv-card__origin {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #6a6250;
}
.rv-card__score {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
}
.rv-card__score--booking     { background: #003580; }
.rv-card__score--google      { background: #4285F4; }
.rv-card__score--tripadvisor { background: #00AA6C; }

/* Estrellas */
.rv-card__stars svg {
  width: 5rem;
  height: 0.875rem;
  display: block;
}

/* Cita */
.rv-card__quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #3a3828;
  font-style: italic;
  margin: 0;
  flex: 1;
  position: relative;
  padding-left: 1rem;
}
.rv-card__quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 3px;
  background: linear-gradient(180deg, #2c2a1c, #4a4830);
  border-radius: 999px;
}

/* Footer de la tarjeta */
.rv-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  border-top: 1px solid #f0ede8;
  margin-top: auto;
}
.rv-card__date {
  font-size: 0.78rem;
  color: #8a8070;
  font-weight: 500;
}
.rv-card__suite-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2c2a1c;
  background: #ede8d8;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.rv-card__suite-tag--special {
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  color: #9d174d;
}

/* Trust strip */
.rv-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  margin-top: var(--spacing-48);
  padding-top: var(--spacing-32);
  border-top: 1px solid #d0d0d5;
  text-align: center;
}
.rv-trust__text {
  font-size: 0.875rem;
  color: #6a6250;
}
.rv-trust__logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.rv-trust__sep { color: #c0bbb4; }
.rv-trust__logo { font-weight: 700; font-size: 0.9375rem; }
.rv-trust__logo--booking     { color: #003580; letter-spacing: -0.01em; }
.rv-trust__logo--tripadvisor { color: #00AA6C; }
.rv-trust__logo--google svg  { display: block; }

/* ── Destination cards ─────────────────────────────────────────── */
.destination-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(31, 30, 20, 0.22);
  }
}
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1),
              filter 600ms ease;
  will-change: transform, filter;
}
@media (hover: hover) {
  .destination-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.72);
  }
}
.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 10, 30, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
  transition: background 600ms ease;
}
@media (hover: hover) {
  .destination-card:hover .destination-card__overlay {
    background: linear-gradient(180deg, rgba(10, 10, 30, 0.08) 0%, rgba(10, 10, 30, 0.92) 100%);
  }
}
.destination-card__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.destination-card__name {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}
.destination-card__preview {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.6rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity 380ms cubic-bezier(0.4, 0, 0.2, 1) 60ms,
              transform 380ms cubic-bezier(0.4, 0, 0.2, 1) 60ms,
              max-height 420ms ease 40ms;
}
@media (hover: hover) {
  .destination-card:hover .destination-card__preview {
    opacity: 1;
    max-height: 6rem;
    transform: translateY(0);
  }
}
.destination-card__cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 360ms ease 160ms,
              transform 360ms cubic-bezier(0.4, 0, 0.2, 1) 160ms,
              color 200ms ease;
}
@media (hover: hover) {
  .destination-card:hover .destination-card__cta {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255, 255, 255, 1);
  }
}
.destination-card__meta {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ── Destination modal ─────────────────────────────────────────── */
.dest-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(8, 8, 20, 0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: destOverlayIn 280ms ease both;
}
.dest-overlay.is-closing {
  animation: destOverlayOut 240ms ease both;
}
@keyframes destOverlayIn  { from { opacity: 0 } to { opacity: 1 } }
@keyframes destOverlayOut { from { opacity: 1 } to { opacity: 0 } }

.dest-box {
  background: #ffffff;
  border-radius: 1.75rem;
  width: min(780px, 95vw);
  max-height: 90svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: destBoxIn 380ms cubic-bezier(0.34, 1.42, 0.64, 1) both;
  box-shadow: 0 32px 80px rgba(8, 8, 20, 0.3);
}
.dest-overlay.is-closing .dest-box {
  animation: destBoxOut 240ms cubic-bezier(0.4, 0, 0.6, 1) both;
}
@keyframes destBoxIn  { from { opacity: 0; transform: scale(0.93) translateY(18px) } to { opacity: 1; transform: scale(1) translateY(0) } }
@keyframes destBoxOut { from { opacity: 1; transform: scale(1) } to { opacity: 0; transform: scale(0.95) translateY(10px) } }

.dest-hero {
  position: relative;
  height: clamp(200px, 30vh, 300px);
  flex-shrink: 0;
}
.dest-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dest-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,20,0.1) 0%, rgba(8,8,20,0.72) 100%);
}
.dest-hero__titles {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  right: 4rem;
  color: #ffffff;
  z-index: 1;
}
.dest-hero__subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.3rem;
}
.dest-hero__name {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
}
.dest-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #1f1e14;
  transition: background 200ms, transform 200ms;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
@media (hover: hover) {
  .dest-close:hover {
    background: #ffffff;
    transform: scale(1.1);
  }
}
.dest-body {
  overflow-y: auto;
  padding: 1.75rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dest-distance {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #ede8d8;
  color: #2c2a1c;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.dest-description {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: #3a3828;
  margin-bottom: 1.5rem;
}
.dest-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a6250;
  margin-bottom: 0.875rem;
}
.dest-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.dest-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #ece8dc;
  border-radius: 0.875rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f1e14;
}
.dest-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #2c2a1c;
}
.dest-chip__icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.dest-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 0.25rem;
}

.hero {
  position: relative;
  min-height: clamp(28rem, 85vh, 42rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__slide.is-active {
  opacity: 1;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Capa base: oscurece el centro y parte inferior */
  background: linear-gradient(180deg,
    rgba(31, 30, 20, 0.0)  0%,
    rgba(31, 30, 20, 0.45) 100%
  );
}
/* Capa de protección del navbar: gradiente fuerte solo en el top */
.hero__bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(180deg,
    rgba(10, 10, 30, 0.58) 0%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 4rem 5rem;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__eyebrow {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 0.75rem;
  max-width: 28rem;
}
.hero__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 1rem;
}
.hero__title em {
  font-style: italic;
}
.hero__subtitle {
  font-size: 1.125rem;
  max-width: 32rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 30, 0.25) 0%,
    rgba(10, 10, 30, 0.40) 60%,
    rgba(10, 10, 30, 0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero__title,
.hero__subtitle,
.hero__ctas {
  transition: opacity 200ms ease;
}
/* ── Hero search — base compartida ──────────────────────────────── */
.hero__search {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 10;
  background: #ffffff;
  box-shadow: 0 8px 40px rgba(31, 30, 20, 0.18);
  color: #1f1e14;
  transition: box-shadow 250ms ease;
}
@media (hover: hover) {
  .hero__search:hover {
    box-shadow: 0 14px 50px rgba(31, 30, 20, 0.24);
  }
}

/* ── MÓVIL: pill compacta (oculta en desktop) ───────────────────── */
.hero__search--pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(88%, 40rem);
  padding: 0.875rem 0.875rem 0.875rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: left;
}
.hero__search__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  overflow: hidden;
}
.hero__search__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f1e14;
  white-space: nowrap;
}
.hero__search__sub {
  font-size: 0.8rem;
  color: #6a6250;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__search__icon {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background: #2c2a1c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 200ms;
}
.hero__search__icon svg { width: 1.125rem; height: 1.125rem; }
@media (hover: hover) {
  .hero__search--pill:hover .hero__search__icon { background: #1a180a; }
}

/* ── DESKTOP: form con campos completos (oculto en móvil) ────────── */
.hero__search--form {
  display: none; /* oculto en móvil */
  width: min(92%, 68rem);
  min-width: 38rem;
  padding: 0.5rem;
  border-radius: 1.5rem;
  gap: 0;
}
@media (min-width: 48rem) {
  /* Mostrar form, ocultar pill */
  .hero__search--form {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto;
    align-items: stretch;
  }
  .hero__search--pill {
    display: none;
  }
}

/* Campos del form desktop */
.hero__field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6a6250;
  margin-bottom: 0.25rem;
}
.hero__field input {
  width: 100%;
  padding: 0.45rem 0.875rem;
  border: 1px solid #d0d0d5;
  border-radius: 0.75rem;
  background: #ede8d8;
  transition: border-color 300ms, background 300ms;
  font-size: 0.875rem;
  color: #1f1e14;
  outline: none;
}
.hero__field input:focus {
  border-color: #2c2a1c;
  background: #ffffff;
}
/* ── Tab panels ────────────────────────────────────────────────── */
.tab-panel {
  display: none;
  /* margin-top negativo: sube el bg del panel para cubrir la franja
     oscura (body #1f1e14) que queda entre el hero y la barra de reservas */
  margin-top: -3.5rem;
  padding-top: 7rem; /* 3.5rem original + 3.5rem de compensación */
}
.tab-panel.is-active {
  display: block;
  animation: tab-fade-in 380ms cubic-bezier(0.4, 0, 0.2, 1) both;
}
/* Cada tab-panel toma el color de fondo de su primera sección */
[data-tab-panel="home"],
[data-tab-panel="resenias"] {
  background-color: #f4f4f6; /* section--sand */
}
[data-tab-panel="destinos"],
[data-tab-panel="eventos"] {
  background-color: #1f1e14; /* secciones oscuras — coincide con el body */
}
[data-tab-panel="amenidades"] {
  background-color: #ededef; /* section--olive */
}
@keyframes tab-fade-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ── /Tab panels ────────────────────────────────────────────────── */

/* Sticky — aplica a ambos (pill y form) */
.hero__search.is-sticky {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  box-shadow: 0 8px 32px rgba(31, 30, 20, 0.22);
  animation: search-dock 280ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
/* En sticky el form también restaura su ancho */
.hero__search--form.is-sticky {
  width: min(92%, 68rem);
  min-width: 38rem;
}
@keyframes search-dock {
  from { opacity: 0; transform: translateX(-50%) translateY(1.25rem); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero__search.is-sticky-leaving {
  animation: search-undock 240ms cubic-bezier(0.4, 0, 0.6, 1) both;
}
@keyframes search-undock {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to   { opacity: 0; transform: translateX(-50%) translateY(1.25rem); }
}

/* ── Barras del carrusel (horizontal) ───────────────────────────── */
.hero__dots {
  position: absolute;
  bottom: 4rem;   /* sube para no quedar bajo la barra flotante */
  left: 0; right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
}
.hero__dot {
  display: block;
  width: 2rem;
  height: 0.1875rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 300ms ease, width 300ms ease;
}
.hero__dot.is-active {
  background: rgba(255, 255, 255, 0.92);
  width: 2.75rem;
}
@media (hover: hover) {
  .hero__dot:not(.is-active):hover {
    background: rgba(255, 255, 255, 0.6);
  }
}

/* ════════════════════════════════════════════════════════════════
   SEARCH MODAL
════════════════════════════════════════════════════════════════ */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.search-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.search-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 38rem;
  background: #ffffff;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 1.75rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
  transform: translateY(24px);
  transition: transform 380ms cubic-bezier(0.34, 1.2, 0.64, 1);
  max-height: 92svh;
  overflow-y: auto;
}
.search-modal.is-open .search-modal__panel {
  transform: translateY(0);
}
@media (min-width: 48rem) {
  .search-modal { align-items: center; }
  .search-modal__panel {
    border-radius: 1.5rem;
    padding-bottom: 1.75rem;
    max-width: 40rem;
  }
}

.search-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.search-modal__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f1e14;
}
.search-modal__close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid #d0d0d5;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f1e14;
  padding: 0;
  transition: background 200ms, border-color 200ms;
}
.search-modal__close svg { width: 0.9rem; height: 0.9rem; }
@media (hover: hover) {
  .search-modal__close:hover {
    background: #ece8dc;
    border-color: #9a9288;
  }
}

.search-modal__field { margin-bottom: 0.75rem; }
.search-modal__field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a6250;
  margin-bottom: 0.375rem;
  padding-left: 0.25rem;
}
.search-modal__input-wrap {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1.5px solid #d0d0d5;
  border-radius: 999px;
  background: #ece8dc;
  padding: 0 1.25rem;
  transition: border-color 250ms, background 250ms;
}
.search-modal__input-wrap:focus-within {
  border-color: #2c2a1c;
  background: #ffffff;
}
.search-modal__field-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: #6a6250;
  flex-shrink: 0;
}
.search-modal__field-chevron {
  width: 1rem;
  height: 1rem;
  color: #6a6250;
  flex-shrink: 0;
}
.search-modal__input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.875rem 0.5rem;
  font-size: 0.9375rem;
  color: #1f1e14;
  outline: none;
  min-width: 0;
}
.search-modal__input-wrap input::placeholder { color: #8a7a6a; }

.search-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #d0d0d5;
}
.search-modal__summary {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.search-modal__summary strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f1e14;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-modal__summary span {
  font-size: 0.8rem;
  color: #6a6250;
}

.animate-fade-in {
  animation: fade-in 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-up {
  animation: fade-in-up 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stagger-children > *:nth-child(1) {
  transition-delay: 80ms;
}
.stagger-children > *:nth-child(2) {
  transition-delay: 160ms;
}
.stagger-children > *:nth-child(3) {
  transition-delay: 240ms;
}
.stagger-children > *:nth-child(4) {
  transition-delay: 320ms;
}
.stagger-children > *:nth-child(5) {
  transition-delay: 400ms;
}
.stagger-children > *:nth-child(6) {
  transition-delay: 480ms;
}
.stagger-children > *:nth-child(7) {
  transition-delay: 560ms;
}
.stagger-children > *:nth-child(8) {
  transition-delay: 640ms;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: #ece8dc;
  transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1), visibility 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__logo {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #2c2a1c;
  letter-spacing: -0.02em;
}
.loader__spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid #e0d8c0;
  border-top-color: #2c2a1c;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-height);
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.is-solid {
  background-color: transparent;
  box-shadow: 0 2px 8px rgba(31, 30, 20, 0.06);
}
.navbar.is-solid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar.is-transparent {
  background-color: transparent;
}
.navbar__inner {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

/* ── Imágenes del logo ──────────────────────────────────────────── */
.navbar__logo-img {
  height: 58px;
  width: auto;
  display: block;
  transition: opacity .2s ease;
}

/* Header transparente (sobre hero): logo BLANCO visible, oscuro oculto */
.navbar:not(.is-solid) .navbar__logo-img--light { display: block; }
.navbar:not(.is-solid) .navbar__logo-img--dark  { display: none; }

/* Header sólido (con scroll): logo OSCURO visible, blanco oculto */
.navbar.is-solid .navbar__logo-img--light { display: none; }
.navbar.is-solid .navbar__logo-img--dark  { display: block; }

/* Megamenu abierto (fondo claro aparece sobre header transparente) */
body.is-megamenu-open .navbar.is-transparent .navbar__logo-img--light { display: none; }
body.is-megamenu-open .navbar.is-transparent .navbar__logo-img--dark  { display: block; }
.navbar__nav {
  display: none;
}
@media (min-width: 64rem) {
  .navbar__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}
.navbar__link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 999px;
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar:not(.is-solid) .navbar__link {
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.navbar__link.is-active {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}
.navbar.is-solid .navbar__link.is-active {
  background-color: #2c2a1c;
  color: #ffffff;
  border-radius: 999px;
}
@media (hover: hover) {
  .navbar__link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
  }
  .navbar.is-solid .navbar__link:hover {
    background-color: #ede8d8;
    color: #2c2a1c;
  }
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── Language switcher ─────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 1px;
}
.lang-switcher__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 6px;
  border-radius: 4px;
  color: inherit;
  opacity: 0.45;
  transition: opacity 0.2s;
  line-height: 1;
}
.lang-switcher__btn:hover { opacity: 0.75; }
.lang-switcher__btn.is-active { opacity: 1; }
.lang-switcher__sep {
  font-size: 9px;
  opacity: 0.25;
  pointer-events: none;
  line-height: 1;
}
.lang-switcher--mobile {
  padding: 0.5rem 0;
}
.mobile-lang {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  list-style: none;
}
.navbar__account {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 48rem) {
  .navbar__account {
    display: flex;
  }
}
.navbar:not(.is-solid) .navbar__account {
  color: #ffffff;
}
.navbar.is-solid .navbar__account {
  color: #2c2a1c;
}
@media (hover: hover) {
  .navbar__account:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .navbar.is-solid .navbar__account:hover {
    background-color: #ede8d8;
  }
}
.navbar__account:focus-visible {
  outline: 2px solid #8a7a5a;
  outline-offset: 2px;
}
.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
}
@media (min-width: 64rem) {
  .navbar__toggle {
    display: none;
  }
}
.navbar__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #2c2a1c;
  border-radius: 1px;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar:not(.is-solid) .navbar__toggle span {
  background: #ffffff;
}
.navbar__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.navbar__mobile {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: #ece8dc;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar__mobile.is-open {
  transform: translateX(0);
}
@media (min-width: 64rem) {
  .navbar__mobile {
    display: none;
  }
}
.navbar__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.navbar__mobile a {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.75rem;
}
.navbar__mobile a:hover {
  background: #ede8d8;
}
.navbar__mobile .navbar__mobile-mega {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.75rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
.navbar__mobile .navbar__mobile-mega:hover {
  background: #ede8d8;
}
.navbar__mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.navbar__mega-trigger[aria-expanded=true] {
  color: #2c2a1c;
}
.navbar:not(.is-solid) .navbar__mega-trigger[aria-expanded=true] {
  color: #2c2a1c;
  background-color: rgba(255, 255, 255, 0.92);
}
.navbar__mega-trigger[aria-expanded=true] .navbar__mega-chevron,
.navbar__mega-trigger[aria-expanded=true] .navbar__chevron {
  transform: rotate(180deg);
}
.navbar__mega-chevron, .navbar__chevron {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(31, 30, 20, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1), visibility 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.megamenu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
.megamenu-backdrop.is-visible--locations {
  display: none;
}

.megamenu {
  position: fixed;
  top: var(--megamenu-top, var(--header-height));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(900 - 1);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1), visibility 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.megamenu.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
.megamenu__inner {
  display: flex;
  height: 100%;
  width: 100%;
  background: transparent;
}
.megamenu__panel {
  flex: 0 0 min(22rem, 88vw);
  display: flex;
  flex-direction: column;
  background-color: #eaeaec;
  padding: 2rem 1.5rem 1.5rem;
  overflow: hidden;
  border-right: 1px solid rgba(31, 30, 20, 0.06);
}
.megamenu__view-all {
  display: block;
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f1e14;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .megamenu__view-all:hover {
    color: #2c2a1c;
  }
}
.megamenu__countries {
  flex: 1;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  scrollbar-width: thin;
}
.megamenu__country-item {
  border-bottom: 1px solid rgba(31, 30, 20, 0.08);
}
.megamenu__country-item:last-child {
  border-bottom: none;
}
.megamenu__country-item.is-open .megamenu__chevron {
  transform: rotate(180deg);
}
.megamenu__country {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f1e14;
  text-align: left;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .megamenu__country:hover {
    color: #2c2a1c;
  }
}
.megamenu__chevron {
  flex-shrink: 0;
  opacity: 0.55;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.megamenu__cities {
  margin: 0;
  padding: 0 0 0.75rem 0.25rem;
  list-style: none;
}
.megamenu__cities[hidden] {
  display: none;
}
.megamenu__cities a {
  display: block;
  padding: 0.5rem 0 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: rgba(31, 30, 20, 0.72);
  border-left: 1px solid rgba(31, 30, 20, 0.12);
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .megamenu__cities a:hover {
    color: #2c2a1c;
  }
}
.megamenu__panel-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 30, 20, 0.1);
}
.megamenu__footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.megamenu__footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(31, 30, 20, 0.85);
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .megamenu__footer-links a:hover {
    color: #2c2a1c;
  }
}
.megamenu__social {
  display: flex;
  gap: 1rem;
}
.megamenu__social a {
  display: flex;
  color: #1f1e14;
  opacity: 0.85;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .megamenu__social a:hover {
    opacity: 1;
    color: #2c2a1c;
  }
}
.megamenu__overlay {
  flex: 1;
  min-width: 0;
  cursor: pointer;
  background: rgba(234, 234, 236, 0.14);
  pointer-events: auto;
}
.megamenu__visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.megamenu__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(10px);
}
.megamenu__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 30, 20, 0.55) 0%, rgba(31, 30, 20, 0.35) 40%, rgba(31, 30, 20, 0.25) 100%);
  pointer-events: none;
}
.megamenu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #2c2a1c;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .megamenu__close:hover {
    background-color: #1c1a0c;
    transform: scale(1.05);
  }
}
.megamenu__close--top {
  position: fixed;
  top: calc(var(--megamenu-top, var(--header-height)) + 1.5rem);
  right: 1.5rem;
  z-index: calc(900 + 1);
}
.megamenu--locations, .megamenu--ways, .megamenu--bob {
  --mega-panel-w: clamp(17rem, 22vw, 23rem);
}
.megamenu--locations .megamenu__close:not(.megamenu__close--top), .megamenu--ways .megamenu__close:not(.megamenu__close--top), .megamenu--bob .megamenu__close:not(.megamenu__close--top) {
  display: none;
}
.megamenu--locations .megamenu__panel, .megamenu--ways .megamenu__panel, .megamenu--bob .megamenu__panel {
  position: relative;
  z-index: 2;
  flex: 0 0 var(--mega-panel-w);
  height: 100%;
  background: #eaeaec;
  border-right: none;
  box-shadow: none;
  padding: 2.5rem 2rem 2rem;
}
.megamenu--locations .megamenu__overlay, .megamenu--ways .megamenu__overlay, .megamenu--bob .megamenu__overlay {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  background: rgba(234, 234, 236, 0.1);
}
.megamenu--locations .megamenu__close--top, .megamenu--ways .megamenu__close--top, .megamenu--bob .megamenu__close--top {
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  background-color: #241f0e;
}
@media (hover: hover) {
  .megamenu--locations .megamenu__close--top:hover, .megamenu--ways .megamenu__close--top:hover, .megamenu--bob .megamenu__close--top:hover {
    background-color: #201d0e;
  }
}
.megamenu--locations .megamenu__view-all, .megamenu--ways .megamenu__view-all, .megamenu--bob .megamenu__view-all {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.megamenu--locations .megamenu__country, .megamenu--ways .megamenu__country, .megamenu--bob .megamenu__country {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 400;
}
.megamenu--locations .megamenu__chevron, .megamenu--ways .megamenu__chevron, .megamenu--bob .megamenu__chevron {
  opacity: 0.4;
  color: #6a6250;
}
.megamenu--locations .megamenu__country-item, .megamenu--ways .megamenu__country-item, .megamenu--bob .megamenu__country-item {
  border-bottom-color: rgba(31, 30, 20, 0.06);
}
.megamenu--locations .megamenu__panel-footer, .megamenu--ways .megamenu__panel-footer, .megamenu--bob .megamenu__panel-footer {
  border-top-color: rgba(31, 30, 20, 0.08);
  padding-top: 1.5rem;
}
.megamenu--locations .megamenu__panel {
  border-right: 1px solid rgba(31, 30, 20, 0.1);
}
.megamenu--locations .megamenu__view-all {
  font-weight: 600;
  color: #1f1e14;
  margin-bottom: 1.5rem;
}
.megamenu--locations .megamenu__countries--locations {
  scrollbar-color: rgba(31, 30, 20, 0.25) transparent;
}
.megamenu--locations .megamenu__countries--locations .megamenu__country-item {
  border-bottom: none;
  margin-bottom: 0.25rem;
}
.megamenu--locations .megamenu__countries--locations .megamenu__country-item:last-child {
  margin-bottom: 0;
}
.megamenu--locations .megamenu__countries--locations .megamenu__country {
  padding: 0.5rem 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #241f0e;
}
@media (hover: hover) {
  .megamenu--locations .megamenu__countries--locations .megamenu__country:hover {
    color: #201d0e;
  }
}
.megamenu--locations .megamenu__countries--locations .megamenu__chevron {
  opacity: 1;
  color: #241f0e;
}
.megamenu--locations .megamenu__countries--locations .megamenu__cities {
  margin: 0;
  padding: 0 0 1rem 0.75rem;
}
.megamenu--locations .megamenu__countries--locations .megamenu__cities a {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(31, 30, 20, 0.5);
  border-left: none;
}
@media (hover: hover) {
  .megamenu--locations .megamenu__countries--locations .megamenu__cities a:hover {
    color: rgba(31, 30, 20, 0.75);
  }
}
.megamenu--ways .megamenu__ways, .megamenu--bob .megamenu__ways {
  flex: 1;
  min-height: 0;
}
.megamenu--bob .megamenu__panel {
  flex: 0 0 min(26rem, 28vw);
  background-color: #f8f8fa;
  padding: 2.5rem 2rem 1.5rem;
}
.megamenu--bob .megamenu__ways--bob {
  padding-top: 0.5rem;
}
.megamenu--bob .megamenu__way {
  padding: 1.25rem 0;
  border-bottom-color: rgba(31, 30, 20, 0.06);
}
.megamenu--bob .megamenu__way-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.megamenu--bob .megamenu__way-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(31, 30, 20, 0.62);
}
.megamenu__ways {
  flex: 1;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.megamenu__way {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(31, 30, 20, 0.08);
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .megamenu__way:hover .megamenu__way-title {
    color: #2c2a1c;
  }
}
.megamenu__way-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f1e14;
  margin-bottom: 0.25rem;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.megamenu__way-desc {
  display: block;
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(31, 30, 20, 0.65);
}

body.is-megamenu-open {
  overflow: hidden;
}
body.is-megamenu-open > #main {
  filter: blur(40px) saturate(0.9);
  -webkit-filter: blur(40px) saturate(0.9);
  transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: filter;
}
body.is-megamenu-open .navbar {
  z-index: calc(900 + 2);
}
body.is-megamenu-open .navbar.is-transparent::before {
  background-color: rgba(234, 234, 236, 0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.is-megamenu-open .navbar.is-transparent .navbar__logo, body.is-megamenu-open .navbar.is-transparent .navbar__link, body.is-megamenu-open .navbar.is-transparent .navbar__account {
  color: #2c2a1c;
}
body.is-megamenu-open .navbar.is-transparent .navbar__toggle span {
  background: #2c2a1c;
}
body.is-megamenu-open [data-mega-trigger][aria-expanded=true] {
  color: #2c2a1c !important;
  background: transparent !important;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.page-rewards .megamenu {
  top: var(--megamenu-top, calc(var(--promo-height) + var(--header-height)));
  z-index: calc(900 - 1);
}
.page-rewards .megamenu .megamenu__close--top {
  top: calc(var(--megamenu-top, calc(var(--promo-height) + var(--header-height))) + 1.5rem);
}
body.is-promo-hidden .page-rewards .megamenu {
  top: var(--megamenu-top, var(--header-height));
}
body.is-promo-hidden .page-rewards .megamenu .megamenu__close--top {
  top: calc(var(--megamenu-top, var(--header-height)) + 1.5rem);
}

body.page-booking.is-megamenu-open > #main {
  filter: none;
}
body.page-booking.is-megamenu-open .booking-main {
  filter: blur(40px) saturate(0.9);
  -webkit-filter: blur(40px) saturate(0.9);
  transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-booking .megamenu--locations,
.page-booking .megamenu--ways,
.page-booking .megamenu--bob {
  z-index: calc(900 + 1);
}
.page-booking .megamenu--locations .megamenu__close--top,
.page-booking .megamenu--ways .megamenu__close--top,
.page-booking .megamenu--bob .megamenu__close--top {
  z-index: calc(900 + 2);
}

body.is-locations-megamenu-open.page-booking .booking-header,
body.is-ways-megamenu-open.page-booking .booking-header,
body.is-bob-megamenu-open.page-booking .booking-header {
  z-index: calc(900 + 2);
}

.page-rewards.is-megamenu-open .navbar--rewards {
  z-index: calc(900 + 2);
}

@media (max-width: 48rem) {
  .megamenu--locations .megamenu__overlay,
  .megamenu--ways .megamenu__overlay,
  .megamenu--bob .megamenu__overlay {
    display: none;
  }
  .megamenu--locations .megamenu__panel,
  .megamenu--ways .megamenu__panel,
  .megamenu--bob .megamenu__panel {
    flex: 1 1 auto;
  }
  .megamenu--locations .megamenu__close--top,
  .megamenu--ways .megamenu__close--top,
  .megamenu--bob .megamenu__close--top {
    top: 1rem;
    right: 1rem;
  }
}
.footer {
  position: relative;
  width: 100%;
  background-color: #d8d8dc;
  color: #1f1e14;
  font-family: "DM Sans", system-ui, sans-serif;
}
.footer a {
  color: inherit;
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .footer a:hover {
    color: #2c2a1c;
  }
}
.footer__back-top {
  position: absolute;
  top: 2.5rem;
  right: max(1.5rem, (100vw - 75rem) / 2 + 1.5rem);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1.5px solid #2c2a1c;
  border-radius: 50%;
  background: transparent;
  color: #2c2a1c;
  cursor: pointer;
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .footer__back-top:hover {
    background-color: #2c2a1c;
    color: #ffffff;
    transform: translateY(-2px);
  }
}
.footer__back-top:focus-visible {
  outline: 2px solid #2c2a1c;
  outline-offset: 3px;
}
.footer__main {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
  padding-block: 4rem 2.5rem;
}
.footer__inner {
  width: 100%;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3rem 2.5rem;
  width: 100%;
}
.footer__brand {
  flex: 0 0 14rem;
  max-width: 100%;
}
.footer__logo {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 1.5rem;
  color: #1f1e14;
}
.footer__logo-img {
  height: 90px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
}
.footer__reviews {
  margin-bottom: 1.25rem;
}
.footer__stars {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  line-height: 1;
  color: #1f1e14;
  margin-bottom: 0.75rem;
}
.footer__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(31, 30, 20, 0.85);
}
.footer__rating-sep {
  color: rgba(31, 30, 20, 0.45);
}
.footer__divider {
  border: none;
  border-top: 1px solid rgba(31, 30, 20, 0.18);
  margin: 1.25rem 0;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-block: 0.25rem;
}
.footer__social-link {
  display: flex;
  color: #1f1e14;
  opacity: 0.9;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .footer__social-link:hover {
    opacity: 1;
    color: #2c2a1c;
    transform: translateY(-1px);
  }
}
.footer__social-link--facebook svg, .footer__social-link--linkedin svg {
  width: 1.125rem;
  height: 1.125rem;
}
.footer__nav {
  flex: 1 1 20rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 2rem;
  min-width: min(100%, 20rem);
}
@media (min-width: 48rem) {
  .footer__nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}
.footer__column-title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.125rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  color: #1f1e14;
}
.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__column a {
  font-size: 0.875rem;
  color: rgba(31, 30, 20, 0.82);
  line-height: 1.5;
}
.footer__eco-badge {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  width: 100%;
  margin-top: 3rem;
}
.footer__eco-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #c8e6c0;
  color: #3d6b35;
}
.footer__eco-text {
  margin: 0;
  max-width: 11rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: #1f1e14;
}
.footer__bar {
  border-top: 1px solid rgba(31, 30, 20, 0.14);
}
.footer__bar-inner {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-block: 1.5rem 2.5rem;
}
@media (min-width: 64rem) {
  .footer__bar-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
  }
}
.footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.footer__payments-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(31, 30, 20, 0.65);
  white-space: nowrap;
}
.footer__payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.footer__payment-icon {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(31, 30, 20, 0.55);
  white-space: nowrap;
}
.footer__payment-icon--mc {
  display: inline-block;
  width: 1.75rem;
  height: 1.125rem;
  background: radial-gradient(circle at 38% 50%, #eb001b 0 42%, transparent 43%), radial-gradient(circle at 62% 50%, #f79e1b 0 42%, transparent 43%);
  vertical-align: middle;
}
.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (min-width: 64rem) {
  .footer__legal {
    align-items: flex-end;
    text-align: right;
  }
}
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
@media (min-width: 64rem) {
  .footer__legal-links {
    justify-content: flex-end;
  }
}
.footer__legal-links a {
  font-size: 0.75rem;
  color: rgba(31, 30, 20, 0.6);
  white-space: nowrap;
}
.footer__copyright {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(31, 30, 20, 0.5);
  line-height: 1.5;
}

.meet-banner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .meet-banner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.meet-banner__media {
  overflow: visible;
  background: transparent;
}
.meet-banner__media img {
  width: 110%;
  height: auto;
  display: block;
  object-fit: contain;
}
.meet-banner__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: #1f1e14;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-align: justify;
  text-align-last: left;
  hyphens: none;
}
.meet-banner__title em {
  font-style: italic;
  color: #2c2a1c;
}
.meet-banner__text {
  font-size: 1.05rem;
  color: #6a6250;
  line-height: 1.65;
  margin-bottom: 2rem;
  text-align: justify;
  text-align-last: left;
  hyphens: none;
}

.usp-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.usp-grid__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 1.125rem;
  border: 1px solid #d0d0d5;
  text-align: left;
  transition: box-shadow 280ms ease, transform 280ms ease, border-color 280ms ease;
}
@media (hover: hover) {
  .usp-grid__item:hover {
    box-shadow: 0 10px 32px rgba(26, 24, 68, 0.1);
    transform: translateY(-2px);
    border-color: #c0c0cc;
  }
}
.usp-grid__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  background: rgba(26, 24, 68, 0.07);
  border-radius: 0.75rem;
  flex-shrink: 0;
}
.usp-grid__icon {
  width: 1.375rem;
  height: 1.375rem;
  color: #1a1844;
  flex-shrink: 0;
}
.usp-grid__body h3 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1f1e14;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.usp-grid__body p {
  font-size: 0.8125rem;
  color: #6a6867;
  line-height: 1.7;
  margin: 0;
}

.gallery-zones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
}
.gallery-zones__item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}
.gallery-zones__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-zones__item:hover img {
  transform: scale(1.04);
}
@media (max-width: 47.99rem) {
  .gallery-zones__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #d0d0d5;
}
.signup-form__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .signup-form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.signup-form__checkbox {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #6a6250;
  align-items: flex-start;
  cursor: pointer;
}
.signup-form__checkbox input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.offers-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}
.offers-track > * {
  flex: 0 0 min(85%, 22rem);
  scroll-snap-align: start;
}
@media (min-width: 48rem) {
  .offers-track > * {
    flex-basis: 22rem;
  }
}

.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: calc(900 + 1);
  background-color: #2c2a1c;
  color: #ffffff;
  transform: translateY(0);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
body.is-promo-hidden .promo-bar {
  transform: translateY(-100%);
}
.promo-bar__inner {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--promo-height);
  padding-block: 0.5rem;
  padding-inline-end: 3rem;
  position: relative;
}
.promo-bar__text {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
}
.promo-bar__link {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (hover: hover) {
  .promo-bar__link:hover {
    opacity: 0.85;
  }
}
.promo-bar__close {
  position: absolute;
  right: max(1rem, (100vw - 75rem) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 1.35rem;
  line-height: 1;
  color: #ffffff;
  opacity: 0.9;
}
@media (hover: hover) {
  .promo-bar__close:hover {
    opacity: 1;
  }
}

.navbar--rewards {
  top: var(--promo-height);
  height: var(--header-height);
}
body.is-promo-hidden .navbar--rewards {
  top: 0;
}
.navbar--rewards.is-transparent {
  background: transparent;
  box-shadow: none;
}
.navbar--rewards .navbar__logo--wordmark {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}
.navbar--rewards .navbar__link {
  color: #ffffff;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar--rewards button.navbar__link {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  padding: 0.5rem 1rem;
}
.navbar--rewards .navbar__link--has-chevron {
  padding-inline-end: 0.75rem;
}
.navbar--rewards .navbar__chevron {
  opacity: 0.9;
  margin-top: 2px;
}
.navbar--rewards .navbar__account {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
}
@media (min-width: 48rem) {
  .navbar--rewards .navbar__account {
    display: flex;
  }
}
.navbar--rewards.is-solid {
  background-color: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(31, 30, 20, 0.06);
}
.navbar--rewards.is-solid .navbar__logo--wordmark,
.navbar--rewards.is-solid .navbar__link,
.navbar--rewards.is-solid .navbar__account {
  color: #2c2a1c;
}
.navbar--rewards.is-solid .btn--outline-light {
  color: #2c2a1c;
  border-color: #2c2a1c;
}

.btn--outline-light {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}
@media (hover: hover) {
  .btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
  }
}

.btn--join {
  background: #ffffff;
  color: #2c2a1c;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 999px;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
@media (hover: hover) {
  .btn--join:hover {
    background: #ede8d8;
    transform: translateY(-1px);
  }
}

.rewards-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}
.rewards-hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.rewards-hero__slides {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  position: relative;
}
.rewards-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.rewards-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.rewards-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.rewards-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rewards-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.rewards-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(31, 30, 20, 0.4) 0%, rgba(31, 30, 20, 0.2) 45%, rgba(31, 30, 20, 0.5) 100%);
}
.rewards-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--promo-height) + var(--header-height));
}
.rewards-hero__content .rewards-hero__bottom {
  margin-top: auto;
}
body.is-promo-hidden .rewards-hero__content {
  padding-top: var(--header-height);
}
.rewards-hero__breadcrumbs {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
  padding-top: 1rem;
}
.rewards-hero__breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.rewards-hero__breadcrumbs li + li::before {
  content: ">";
  margin-right: 0.5rem;
  opacity: 0.7;
}
.rewards-hero__breadcrumbs a {
  opacity: 0.9;
}
@media (hover: hover) {
  .rewards-hero__breadcrumbs a:hover {
    text-decoration: underline;
  }
}
.rewards-hero__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 5rem;
  max-width: 52rem;
  margin-inline: auto;
}
.rewards-hero__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.rewards-hero__eyebrow {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.rewards-hero__title-sans {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.rewards-hero__title-serif {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}
.rewards-hero__bottom {
  width: min(100% - 2rem, 75rem);
  margin-inline: auto;
  padding-bottom: 2rem;
  margin-top: auto;
}
.rewards-hero__reviews {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.95;
}
.rewards-hero__reviews--bottom .rewards-hero__stars {
  flex-basis: 100%;
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  text-align: center;
}
.rewards-hero__stars {
  letter-spacing: 0.12em;
  color: #ffffff;
}
.rewards-hero__reviews-sep {
  opacity: 0.85;
}

.rewards-section-head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.rewards-section-head__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2c2a1c;
  margin: 0 0 1rem;
}
.rewards-section-head__eyebrow--left {
  justify-content: flex-start;
  text-align: left;
}
.rewards-section-head__eyebrow .circle-pen__svg {
  color: #8a7a5a;
}
.rewards-section-head__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: #1f1e14;
  margin: 0;
}

.rewards-benefits {
  padding-block: 5rem;
}
@media (min-width: 64rem) {
  .rewards-benefits {
    padding-block: 6rem;
  }
}
.rewards-benefits__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .rewards-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.rewards-benefit-card {
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(31, 30, 20, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rewards-benefit-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.rewards-benefit-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rewards-benefit-card__body {
  padding: 1.5rem 1.5rem 2rem;
  flex: 1;
}
.rewards-benefit-card__body h3 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f1e14;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.rewards-benefit-card__body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #6a6250;
  margin: 0;
}

.rewards-collectable {
  background: #ece8dc;
  padding-block: 5rem;
}
@media (min-width: 64rem) {
  .rewards-collectable {
    padding-block: 6rem;
  }
}
.rewards-collectable__grid {
  display: grid;
  gap: 1.5rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 48rem) {
  .rewards-collectable__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.rewards-perk-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(31, 30, 20, 0.06);
  height: 100%;
}
.rewards-perk-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  color: #2c2a1c;
  background: #ede8d8;
  border-radius: 50%;
}
.rewards-perk-card h3 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f1e14;
  margin: 0 0 0.75rem;
}
.rewards-perk-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #6a6250;
  margin: 0;
}

.rewards-cta {
  padding-block: 5rem;
  overflow: hidden;
}
@media (min-width: 64rem) {
  .rewards-cta {
    padding-block: 6rem;
  }
}
.rewards-cta__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .rewards-cta__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.rewards-cta__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: #1f1e14;
  margin: 0 0 1.5rem;
}
.rewards-cta__text {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #6a6250;
  margin: 0 0 1rem;
  max-width: 36rem;
}
.rewards-cta__text--secondary {
  font-size: 1rem;
  font-weight: 500;
  color: #1f1e14;
  margin-bottom: 0.5rem;
}
.rewards-cta__bullets {
  font-size: 1rem;
  font-weight: 600;
  color: #1f1e14;
  margin: 0 0 2rem;
  line-height: 1.65;
}
.rewards-cta__visual {
  position: relative;
  min-height: 22rem;
}
@media (min-width: 64rem) {
  .rewards-cta__visual {
    min-height: 28rem;
  }
}
.rewards-cta__image {
  position: absolute;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(31, 30, 20, 0.12);
}
.rewards-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rewards-cta__image--back {
  width: 72%;
  right: 0;
  top: 8%;
  aspect-ratio: 4/5;
  z-index: 1;
}
.rewards-cta__image--front {
  width: 62%;
  left: 0;
  bottom: 0;
  aspect-ratio: 4/5;
  z-index: 2;
}

.rewards-signup {
  background: #2c2a1c;
  color: #ffffff;
  padding-block: 4rem 3rem;
}
.rewards-signup__inner {
  max-width: 36rem;
  margin-inline: auto;
}
.rewards-signup__header {
  text-align: center;
  margin-bottom: 2rem;
}
.rewards-signup__icon {
  display: block;
  margin: 0 auto 1rem;
  opacity: 0.95;
}
.rewards-signup__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.rewards-signup__title em {
  font-style: italic;
}
.rewards-signup__form {
  margin-top: 0;
  background: transparent;
  border: none;
  padding: 0;
  gap: 1rem;
}
.rewards-signup__form .hero__field label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.rewards-signup__form .hero__field input {
  background: #ffffff;
  border-color: transparent;
  color: #1f1e14;
}
.rewards-signup__form .hero__field input::placeholder {
  color: rgba(31, 30, 20, 0.45);
}
.rewards-signup__note {
  font-size: 0.875rem;
  opacity: 0.85;
  margin: 0;
}
.rewards-signup .signup-form__checkbox {
  color: rgba(255, 255, 255, 0.9);
}
.rewards-signup__reviews {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  opacity: 0.95;
}
.rewards-signup__stars {
  display: block;
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.page-rewards .footer {
  margin-top: 0;
}

.circle-pen {
  position: relative;
  display: inline-block;
  padding: 0 0.25rem 0.5rem;
}
.circle-pen__text {
  position: relative;
  z-index: 1;
}
.circle-pen__svg {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: 0;
  width: 112%;
  height: 140%;
  color: #8a7a5a;
  pointer-events: none;
}

.rewards-intro {
  background-color: #ece8dc;
  padding-block: 5rem;
}
@media (min-width: 64rem) {
  .rewards-intro {
    padding-block: 6rem;
  }
}
.rewards-intro__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: #1f1e14;
  text-align: center;
  max-width: 28ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.rewards-intro__text {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #6a6250;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.page-rewards {
  --promo-height: 2.75rem;
}

.page-booking {
  background: #2c2a1c;
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: #1f1e14;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.booking-layout {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.booking-header {
  position: sticky;
  top: 0;
  z-index: 900;
  color: #ffffff;
}
.booking-header__bg {
  position: absolute;
  inset: 0;
  background: #2c2a1c;
  z-index: -1;
}
.booking-header__inner {
  padding-block: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.booking-header__logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.booking-header__logo {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.booking-header__nav {
  display: none;
}
@media (min-width: 64rem) {
  .booking-header__nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
  }
}
.booking-header__nav-link {
  padding: 0.45rem 0.6rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  white-space: nowrap;
}
.booking-header__nav-link.is-active, .booking-header__nav-link[aria-current=page] {
  background: rgba(255, 255, 255, 0.15);
}
@media (hover: hover) {
  .booking-header__nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
  }
}
.booking-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.booking-header__voucher {
  display: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 48rem) {
  .booking-header__voucher {
    display: inline;
  }
}
.booking-header__account {
  display: none;
  color: #ffffff;
  padding: 0.5rem;
}
@media (min-width: 48rem) {
  .booking-header__account {
    display: flex;
  }
}
.booking-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
}
@media (min-width: 64rem) {
  .booking-header__toggle {
    display: none;
  }
}
.booking-header__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 1px;
}
.booking-header__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.booking-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.booking-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.booking-header__mobile {
  position: fixed;
  inset: 0 0 0 0;
  top: 10rem;
  background: #2c2a1c;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 899;
}
.booking-header__mobile.is-open {
  transform: translateX(0);
}
@media (min-width: 64rem) {
  .booking-header__mobile {
    display: none;
  }
}
.booking-header__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.booking-header__mobile a,
.booking-header__mobile button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem;
  color: #ffffff;
  font-weight: 500;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
}
.booking-header__mobile a:hover,
.booking-header__mobile button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.booking-header__nav-link--trigger {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
  text-decoration: none;
}
.booking-header__nav-link--trigger:hover {
  opacity: 0.9;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.booking-search {
  display: grid;
  gap: 0;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 0.5rem;
  color: #1f1e14;
  box-shadow: 0 16px 48px rgba(31, 30, 20, 0.12);
}
@media (min-width: 48rem) {
  .booking-search {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto;
    align-items: stretch;
  }
}
.booking-search__field {
  position: relative;
  padding: 0.5rem 0.6rem;
  min-width: 0;
}
.booking-search__field input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f1e14;
  padding: 0;
}
.booking-search__field input::placeholder {
  color: #6a6250;
  font-weight: 400;
}
.booking-search__field input:focus {
  outline: none;
}
.booking-search__label {
  display: block;
  font-size: 0.75rem;
  color: #6a6250;
  margin-bottom: 0.125rem;
}
.booking-search__divider {
  display: none;
  width: 1px;
  background: #d0d0d5;
  margin-block: 0.5rem;
}
@media (min-width: 48rem) {
  .booking-search__divider {
    display: block;
  }
}
.booking-search__submit {
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  min-width: 3rem;
}
@media (min-width: 48rem) {
  .booking-search__submit {
    align-self: center;
  }
}

/* ── Booking header — pill móvil ────────────────────────────────── */
.booking-header__search-pill {
  display: none; /* oculta en desktop, visible en móvil vía media query */
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 1.25rem;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(31, 30, 20, 0.12);
  cursor: pointer;
  text-align: left;
  color: #1f1e14;
}
.bsp-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  overflow: hidden;
}
.bsp-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f1e14;
  white-space: nowrap;
}
.bsp-sub {
  font-size: 0.75rem;
  color: #6a6250;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bsp-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #2c2a1c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 200ms;
}
.bsp-icon svg { width: 1rem; height: 1rem; }
@media (hover: hover) {
  .booking-header__search-pill:hover .bsp-icon { background: #1a180a; }
}

/* Móvil: pill visible, form oculto (se expande al hacer clic) */
@media (max-width: 47.99rem) {
  .booking-header__search-pill { display: flex; }

  /* Ocultar el form por defecto en móvil */
  .booking-search { display: none; }

  /* Form expandido — card limpia debajo de la pill */
  .booking-search.is-expanded {
    display: grid;
    grid-template-columns: 1fr;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(31, 30, 20, 0.09);
    margin-top: 0.5rem;
    padding: 0;
    box-shadow: 0 4px 24px rgba(31, 30, 20, 0.12);
    animation: bs-expand 180ms ease both;
    overflow: hidden;
  }

  /* Campos: padding compacto + separador horizontal entre ellos */
  .booking-search.is-expanded .booking-search__field {
    padding: 0.75rem 1.125rem 0.625rem;
  }
  .booking-search.is-expanded .booking-search__field:not(:last-of-type) {
    border-bottom: 1px solid rgba(31, 30, 20, 0.07);
  }
  /* Inputs: tipografía más visible en móvil */
  .booking-search.is-expanded .booking-search__field input {
    font-size: 0.95rem;
    font-weight: 500;
  }

  /* Botón: ancho completo, texto "Buscar" visible */
  .booking-search.is-expanded .booking-search__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: calc(100% - 1.25rem);
    margin: 0.5rem 0.625rem 0.625rem;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
  }
  /* Mostrar texto "Buscar" (era sr-only en desktop) */
  .booking-search.is-expanded .booking-search__submit .sr-only {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    font-size: 0.9rem;
    font-weight: 600;
  }
}
@keyframes bs-expand {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.booking-main {
  background: #ece8dc;
  border-radius: 0 0 2rem 2rem;
  min-height: 90vh;
  scroll-margin-top: 5rem;
  padding-bottom: 3rem;
}

.booking-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid #d0d0d5;
  position: sticky;
  top: 7.5rem;
  z-index: 2;
  background: #ece8dc;
}
@media (min-width: 64rem) {
  .booking-toolbar {
    top: 8.5rem;
  }
}
.booking-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
}
.booking-toolbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #d0d0d5;
  border-radius: 999px;
  background: #ffffff;
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .booking-toolbar__btn:hover {
    background: #ede8d8;
  }
}
.booking-toolbar__quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.booking-toolbar__quick-filters[hidden] {
  display: none;
}
.booking-toolbar__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.booking-toolbar__count {
  font-size: 0.875rem;
  color: #6a6250;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.booking-toolbar__count strong {
  font-size: 1.125rem;
  color: #1f1e14;
  font-weight: 700;
}
.booking-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.booking-toolbar__sort-label {
  color: #6a6250;
  font-weight: 500;
}
.booking-toolbar__select {
  border: none;
  background: transparent;
  font-weight: 600;
  color: #1f1e14;
  cursor: pointer;
  padding-right: 1rem;
}
.booking-toolbar__map {
  display: none;
}
@media (min-width: 64rem) {
  .booking-toolbar__map {
    display: inline-flex;
  }
}

.booking-chip {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #d0d0d5;
  border-radius: 999px;
  background: #ffffff;
  white-space: nowrap;
}
@media (hover: hover) {
  .booking-chip:hover {
    border-color: #2c2a1c;
    color: #2c2a1c;
  }
}
.booking-chip.is-active {
  background: #2c2a1c;
  border-color: #2c2a1c;
  color: #ffffff;
}
.booking-chip {
  transition: background 180ms, border-color 180ms, color 180ms;
}

.booking-content {
  padding-block: 1.5rem 3rem;
}

.booking-listings {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.property-group__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.property-group__name {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: #1f1e14;
  margin-bottom: 0.25rem;
}
.property-group__address {
  font-size: 0.875rem;
  color: #6a6250;
}
.property-group__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #1f1e14;
  white-space: nowrap;
}
.property-group__stars {
  color: #2c2a1c;
  font-size: 1.125rem;
}

.unit-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) {
  .unit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.unit-card {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid transparent;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .unit-card:hover {
    box-shadow: 0 8px 24px rgba(31, 30, 20, 0.1);
    transform: translateY(-2px);
  }
}
.unit-card__link {
  display: flex;
  flex-direction: row;
  height: 100%;
  color: inherit;
}
.unit-card__media {
  width: 44%;
  flex-shrink: 0;
  overflow: hidden;
  background: #ede8d8;
  min-height: 180px;
}
.unit-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.unit-card:hover .unit-card__media img {
  transform: scale(1.03);
}

/* ── Mini carrusel en tarjeta de habitación ──────────────────────── */
.ucard-carousel {
  position: relative;
  width: 100%; height: 100%;
  min-height: inherit;
}
.ucard-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.unit-card:hover .ucard-img { transform: scale(1.03); }
.ucard-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.88);
  border: none; border-radius: 50%;
  cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  color: #2c2a1c;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  opacity: 0; transition: opacity .18s;
}
.unit-card:hover .ucard-arrow { opacity: 1; }
.ucard-arrow:hover { background: #fff; }
.ucard-arrow--prev { left: 7px; }
.ucard-arrow--next { right: 7px; }
.ucard-dots {
  position: absolute; bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 5px;
  pointer-events: none;
}
.ucard-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: background .2s, transform .2s;
}
.ucard-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}
.unit-card__body {
  padding: 1rem 1.125rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  min-width: 0;
}
.unit-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}
.unit-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  font-size: 0.875rem;
  color: #6a6250;
}
.unit-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: auto;
}
.unit-card__tags li {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  background: #ede8d8;
  color: #2c2a1c;
  border-radius: 0.5rem;
}

/* ═══════════════════════════════════════════════════════
   BOOKING SEARCH PICKERS (date + guest)
═══════════════════════════════════════════════════════ */

/* Popup base */
.bs-popup {
  position: absolute;
  z-index: 8000;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 16px 48px rgba(10,10,30,0.18);
  padding: 1.25rem;
  min-width: 300px;
  animation: bsPopupIn 180ms cubic-bezier(0.16,1,0.3,1);
}
@keyframes bsPopupIn {
  from { opacity:0; transform: translateY(-6px) scale(0.98); }
  to   { opacity:1; transform: translateY(0)   scale(1);    }
}

/* ── Date Picker ── */
.dp-popup { width: 320px; }
.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.dp-month-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f1e14;
  text-transform: capitalize;
}
.dp-nav {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: #f0ece0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms;
}
.dp-nav:hover { background: #e0d8c0; }
.dp-nav svg { width: 1rem; height: 1rem; color: #2c2a1c; }
.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dp-weekday {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #887868;
  padding-bottom: 0.25rem;
  text-transform: uppercase;
}
.dp-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: #1f1e14;
  transition: background 120ms, color 120ms;
}
.dp-cell--empty { pointer-events: none; }
.dp-cell--past  { color: #c0b898; cursor: not-allowed; }
.dp-cell--today { font-weight: 700; color: #2c2a1c; }
.dp-cell:not(.dp-cell--past):not(.dp-cell--empty):hover {
  background: #e8e0c8;
}
.dp-cell--inrange {
  background: #ddd4b8;
  border-radius: 0;
  color: #2c2a1c;
}
.dp-cell--selected {
  background: #2c2a1c !important;
  color: #fff !important;
  border-radius: 50% !important;
}
.dp-cell--checkin.dp-cell--inrange,
.dp-cell--checkout.dp-cell--inrange {
  border-radius: 50%;
}
.dp-hint {
  font-size: 0.78rem;
  color: #887868;
  text-align: center;
  margin: 0.75rem 0 0;
}
.dp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}
.dp-clear {
  font-size: 0.8rem;
  color: #887868;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}
.dp-clear:hover { color: #2c2a1c; }

/* ── Guest Picker ── */
.gp-popup { width: 300px; }
.gp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}
.gp-row__info { display: flex; flex-direction: column; gap: 0.1rem; }
.gp-row__label { font-size: 0.9rem; font-weight: 600; color: #1f1e14; }
.gp-row__sub   { font-size: 0.72rem; color: #887868; }
.gp-counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gp-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1.5px solid #d0c8b0;
  background: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: #1f1e14;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 150ms, background 150ms;
}
.gp-btn:not(:disabled):hover {
  border-color: #2c2a1c;
  color: #2c2a1c;
}
.gp-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.gp-count {
  font-size: 0.95rem;
  font-weight: 600;
  min-width: 1.5rem;
  text-align: center;
  color: #1f1e14;
}
.gp-divider {
  border: none;
  border-top: 1px solid #ede8da;
  margin: 0.25rem 0;
}
.gp-footer {
  margin-top: 1rem;
  text-align: right;
}
.gp-apply { width: 100%; justify-content: center; }

/* Inputs del picker — cursor pointer */
#booking-dates, #booking-guests,
#hero-dates, #hero-guests {
  cursor: pointer;
  user-select: none;
  caret-color: transparent;
}

/* ═══════════════════════════════════════════════════════
   SUITE MODAL — premium redesign
═══════════════════════════════════════════════════════ */

/* Overlay */
.sm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 10, 30, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 300ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sm-overlay.is-open { opacity: 1; }

/* Box */
.sm-box {
  position: relative;
  background: #fcfbf8;
  border-radius: 1.75rem;
  width: 100%;
  max-width: 1000px;
  height: 88svh;          /* altura fija — activa el scroll en el panel */
  max-height: 88svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr; /* fuerza que la fila ocupe exactamente la altura del box */
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 100px rgba(10, 10, 30, 0.4);
}
.sm-overlay.is-open .sm-box { transform: translateY(0) scale(1); }

/* ── Carousel ── */
.sm-carousel {
  position: relative;
  overflow: hidden;
  background: #e8e8e8;
  min-height: 0;
  align-self: stretch;
}
.sm-slides {
  position: absolute;
  inset: 0;
}
.sm-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 450ms ease;
}
.sm-slide.is-active { opacity: 1; }
.sm-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sm-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.22) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* Counter */
.sm-counter {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* Arrows */
.sm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 180ms, transform 180ms;
}
.sm-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.sm-arrow svg { width: 1.2rem; height: 1.2rem; color: #1f1e14; }
.sm-arrow--prev { left: 1.25rem; }
.sm-arrow--next { right: 1.25rem; }

/* Dots — pill style */
.sm-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.sm-dot {
  height: 0.55rem;
  width: 0.55rem;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: width 280ms cubic-bezier(0.16,1,0.3,1), background 200ms;
}
.sm-dot.is-active { width: 1.75rem; background: #fff; }

/* ── Info panel ── */
.sm-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0; /* necesario para que grid respete max-height y active el scroll */
}
.sm-info__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem 2.25rem 1rem;
  -webkit-overflow-scrolling: touch;
}

/* Close btn — top-right of info panel */
.sm-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: background 180ms, transform 180ms;
}
.sm-close:hover { background: #fff; transform: scale(1.08); }
.sm-close svg { width: 1rem; height: 1rem; color: #1f1e14; }

/* Category */
.sm-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2c2a1c;
  margin: 0 0 0.75rem;
}

/* Title */
.sm-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: #1e1e1e;
  margin: 0 0 1rem;
}

/* Specs row */
.sm-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #666;
  font-size: 0.82rem;
  margin-bottom: 1.1rem;
}
.sm-specs span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.sm-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  color: #444;
}
.sm-icon svg { width: 100%; height: 100%; }

/* Description */
.sm-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #565656;
  margin: 0 0 1.1rem;
}

/* Amenity cards grid */
.sm-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.sm-amenity-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid #eceae5;
  border-radius: 0.875rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  color: #333;
}
.sm-amenity-card .sm-icon { color: #2c2a1c; width: 1rem; height: 1rem; }

/* CTA */
.sm-cta {
  padding: 0.875rem 2.25rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.sm-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #2c2a1c;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.875rem;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 8px 24px rgba(44,42,28,0.3);
  transition: background 200ms, box-shadow 200ms, transform 150ms;
}
.sm-cta__btn:hover {
  background: #201e10;
  box-shadow: 0 12px 32px rgba(44,42,28,0.4);
  transform: translateY(-1px);
}
.sm-cta__icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; color: #fff; }
.sm-cta__sub {
  margin: 0.4rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: #888;
}

/* ── Mobile ── */
@media (max-width: 700px) {
  .sm-overlay { padding: 0; align-items: flex-end; }
  .sm-box {
    grid-template-columns: 1fr;
    grid-template-rows: 48svh 1fr;
    border-radius: 1.5rem 1.5rem 0 0;
    height: 94svh;
    max-height: 94svh;
  }
  .sm-carousel { min-height: unset; height: 100%; }
  .sm-info__scroll { padding: 1.75rem 1.5rem 1rem; }
  .sm-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .sm-desc { font-size: 0.9rem; }
  .sm-amenities { grid-template-columns: 1fr; }
  .sm-cta { padding: 1rem 1.5rem 2rem; }
}

/* ─────────────────────────────────────────────────────── */

.page-check-in {
  background: #f9f3e9;
  min-height: 100vh;
  color: #1f1e14;
}

.check-in {
  max-width: 30rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-height: 100vh;
}
@media (min-width: 48rem) {
  .check-in {
    padding-top: 3rem;
    max-width: 34rem;
  }
}
.check-in__logo {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1f1e14;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.check-in__logo:focus-visible {
  outline: 2px solid #8a7a5a;
  outline-offset: 2px;
}
.check-in__greeting {
  font-family: "Caveat", cursive;
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 600;
  color: #8a7a5a;
  transform: rotate(-4deg);
  margin: 0 0 1rem;
  align-self: flex-start;
  margin-left: 0.5rem;
  line-height: 1;
}
.check-in__card {
  width: 100%;
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(31, 30, 20, 0.06);
}
@media (min-width: 48rem) {
  .check-in__card {
    padding: 2.5rem 2rem;
  }
}
.check-in__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: #1f1e14;
}
.check-in__tagline {
  text-align: center;
  font-size: 0.75rem;
  color: #6a6250;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.check-in__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.check-in__field {
  display: block;
}
.check-in__field input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  color: #1f1e14;
  background: #f0ece0;
  border: 1px solid transparent;
  border-radius: 1rem;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.check-in__field input::placeholder {
  color: rgba(92, 92, 111, 0.85);
}
.check-in__field input:focus {
  outline: none;
  border-color: rgba(44, 42, 28, 0.35);
  box-shadow: 0 0 0 3px rgba(44, 42, 28, 0.12);
}
.check-in__submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 1rem;
  background: #2c2a1c;
  color: #ffffff;
  border: none;
  cursor: pointer;
}
@media (hover: hover) {
  .check-in__submit:hover {
    background: #3a3820;
    transform: none;
  }
}
.check-in__help {
  margin-top: 1rem;
  padding: 0;
  overflow: hidden;
}

.check-in-accordion__item {
  border-bottom: 1px solid rgba(216, 212, 204, 0.6);
}
.check-in-accordion__item:last-child {
  border-bottom: none;
}
.check-in-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
}
.check-in-accordion__trigger::-webkit-details-marker {
  display: none;
}
.check-in-accordion__trigger::marker {
  content: "";
}
.check-in-accordion__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}
.check-in-accordion__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1f1e14;
}
.check-in-accordion__desc {
  font-size: 0.75rem;
  color: #6a6250;
  font-weight: 400;
}
.check-in-accordion__chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%231832b2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.check-in-accordion__item[open] .check-in-accordion__chevron {
  transform: rotate(180deg);
}
.check-in-accordion__panel {
  padding: 0 1.5rem 1.25rem;
}
.check-in-accordion__panel p {
  margin: 0;
  font-size: 0.875rem;
  color: #6a6250;
  line-height: 1.65;
}
.check-in-accordion__panel a {
  color: #2c2a1c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.check-in-accordion__panel a:hover {
  color: #3a3820;
}

.page-login {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Poppins", "DM Sans", system-ui, sans-serif;
  color: #141414;
  background: #eaeaec;
  overflow-x: hidden;
}

.login {
  --login-panel-w: clamp(19rem, 34vw, 27rem);
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}
@media (min-width: 64rem) {
  .login {
    display: flex;
    align-items: stretch;
  }
}
.login__hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 64rem) {
  .login__hero {
    position: absolute;
    inset: 0;
  }
}
.login__hero-img {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  filter: blur(28px) saturate(0.92);
  transform: scale(1.06);
}
@media (min-width: 64rem) {
  .login__hero-img {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    filter: none;
    transform: none;
    object-position: 58% center;
  }
}
.login__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(234, 234, 236, 0.94) 0%, rgba(234, 234, 236, 0.9) 50%, rgba(234, 234, 236, 0.95) 100%);
}
@media (min-width: 64rem) {
  .login__hero-overlay {
    background: linear-gradient(90deg, rgba(234, 234, 236, 0.35) 0%, rgba(234, 234, 236, 0.08) 28%, transparent 42%);
  }
}
.login__hero-copy {
  display: none;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: var(--login-panel-w);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 5rem 4rem 2.5rem;
  color: #ffffff;
  pointer-events: none;
}
@media (min-width: 64rem) {
  .login__hero-copy {
    display: flex;
  }
}
.login__hero-title {
  margin: 0 0 1rem;
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.5rem, 4.8vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 4px 32px rgba(20, 20, 20, 0.35);
}
.login__hero-subtitle {
  margin: 0;
  max-width: 18rem;
  font-family: "Poppins", "DM Sans", system-ui, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 20px rgba(20, 20, 20, 0.4);
}
.login__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(3rem + env(safe-area-inset-top, 0px)) 1.5rem calc(2.5rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 64rem) {
  .login__panel {
    flex: 0 0 var(--login-panel-w);
    width: var(--login-panel-w);
    min-height: 100vh;
    max-height: none;
    margin: 0;
    padding: 3rem 2.5rem 2rem;
    background: rgba(234, 234, 236, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0 4.5rem 4.5rem 0;
    box-shadow: 12px 0 48px rgba(20, 20, 20, 0.08);
  }
}
.login__brand {
  flex-shrink: 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 64rem) {
  .login__brand {
    padding-top: 0.5rem;
  }
}
.login__logo {
  display: inline-block;
  font-family: "Poppins", "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.5rem, 5.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #141414;
  text-decoration: none;
  line-height: 1;
}
.login__logo:focus-visible {
  outline: 2px solid #8a7a5a;
  outline-offset: 2px;
}
.login__spacer {
  flex: 1 1 auto;
  min-height: clamp(10rem, 34vh, 24rem);
  width: 100%;
}
@media (min-width: 64rem) {
  .login__spacer {
    min-height: clamp(6rem, 20vh, 11rem);
  }
}
.login__body {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
@media (min-width: 64rem) {
  .login__body {
    flex: 1;
    min-height: 0;
  }
}
.login__title {
  width: 100%;
  max-width: 18rem;
  margin: 0 0 2rem;
  font-family: "Poppins", "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.5rem, 4.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #141414;
  line-height: 1.15;
}
.login__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 18rem;
}
.login__options {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.login__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: "Poppins", "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.16, 1, 0.3, 1);
}
.login__btn:focus-visible {
  outline: 2px solid #8a7a5a;
  outline-offset: 2px;
}
.login__btn--google {
  background: #241f0e;
  color: #ffffff;
  border-color: #241f0e;
  box-shadow: 0 8px 24px rgba(44, 42, 28, 0.26);
}
@media (hover: hover) {
  .login__btn--google:hover {
    background: #201d0e;
    border-color: #201d0e;
    box-shadow: 0 12px 32px rgba(44, 42, 28, 0.32);
    transform: translateY(-2px);
  }
}
.login__btn--google:active {
  transform: translateY(0);
}
.login__btn--email {
  background: rgba(255, 255, 255, 0.45);
  color: #241f0e;
  border-color: #241f0e;
}
@media (min-width: 64rem) {
  .login__btn--email {
    background: transparent;
  }
}
@media (hover: hover) {
  .login__btn--email:hover {
    background: rgba(44, 42, 28, 0.05);
    transform: translateY(-1px);
  }
}
.login__btn--submit {
  margin-top: 0.5rem;
  background: #241f0e;
  color: #ffffff;
  border-color: #241f0e;
  box-shadow: 0 8px 24px rgba(44, 42, 28, 0.22);
}
@media (hover: hover) {
  .login__btn--submit:hover {
    background: #201d0e;
    transform: translateY(-1px);
  }
}
.login__google-icon {
  flex-shrink: 0;
}
.login__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin: 1.5rem 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(107, 107, 107, 0.85);
  text-align: center;
}
.login__divider::before, .login__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(20, 20, 20, 0.1);
}
.login__divider span {
  flex-shrink: 0;
}
.login__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 0.5rem;
}
.login__form[hidden] {
  display: none;
}
.login__field {
  display: block;
  width: 100%;
}
.login__field input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: "Poppins", "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  color: #141414;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 1.5rem;
}
@media (min-width: 64rem) {
  .login__field input {
    background: rgba(255, 255, 255, 0.85);
  }
}
.login__field input:focus {
  outline: none;
  border-color: rgba(44, 42, 28, 0.4);
  box-shadow: 0 0 0 3px rgba(44, 42, 28, 0.1);
  background: #ffffff;
}
.login__back {
  margin-top: 0.5rem;
  padding: 0.5rem;
  font-family: "Poppins", "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b6b6b;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.login__back:hover {
  color: #241f0e;
}
.login__footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 18rem;
  margin-top: 2rem;
}
@media (min-width: 64rem) {
  .login__footer {
    margin-top: auto;
    padding-top: 2rem;
  }
}
.login__signup {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.65;
  text-align: center;
}
.login__signup a {
  font-weight: 600;
  color: #141414;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.login__signup a:hover {
  color: #241f0e;
}
.login__legal {
  margin: 0;
  font-size: 0.625rem;
  line-height: 1.5;
  color: rgba(107, 107, 107, 0.9);
  text-align: center;
  max-width: 15rem;
}
@media (min-width: 64rem) {
  .login__legal {
    max-width: 13.5rem;
  }
}
.login__legal a {
  color: #6b6b6b;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.login__legal a:hover {
  color: #141414;
}

/* ══════════════════════════════════════════════════════════════════
   EVENTS SHOWCASE — Carrusel horizontal paginado
   ══════════════════════════════════════════════════════════════════ */

.events-wrapper {
  position: relative;
}

.events-showcase {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--color-cream, #ece8dc);
}

/* ── Cada slide ──────────────────────────────────────────────────── */
.event-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  transition: transform 600ms cubic-bezier(0.77, 0, 0.175, 1),
              opacity 600ms ease;
  /* Por defecto: fuera por la derecha */
  transform: translateX(100%);
  opacity: 0;
}
.event-slide.is-active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
/* Slide saliente: sale por la izquierda */
.event-slide.is-leaving {
  transform: translateX(-100%);
  opacity: 0;
}
/* Slide entrante desde la izquierda (navegación hacia atrás) */
.event-slide.is-from-left {
  transform: translateX(-100%);
}
.event-slide.is-from-left.is-active {
  transform: translateX(0);
}

/* Área principal: dos columnas */
.event-slide__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 3rem 5rem 1rem 4rem;
  position: relative;
  overflow: hidden;
}

/* ── Contenido izquierdo ─────────────────────────────────────────── */
.event-slide__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2c2a1c;
  margin-bottom: 0.875rem;
}
.event-slide__brand-rule {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: #2c2a1c;
  flex-shrink: 0;
}
.event-slide__brand-rule::before {
  content: '◆';
  display: block;
  font-size: 0.4rem;
  color: #2c2a1c;
  text-align: center;
  line-height: 0;
  margin-top: -1px;
}

.event-slide__category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2c2a1c;
  margin-bottom: 1.125rem;
}

.event-slide__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.875rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: #1f1e14;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.event-slide__divider {
  width: 3rem;
  height: 2px;
  background: #1f1e14;
  margin-bottom: 1.25rem;
}

.event-slide__desc {
  font-size: 0.9rem;
  color: #6a6250;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 38ch;
}

/* 3 características con separadores */
.event-slide__features {
  display: flex;
  margin-bottom: 2rem;
}
.event-slide__feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem;
  border-right: 1px solid #d0d0d5;
}
.event-slide__feature:first-child { padding-left: 0; }
.event-slide__feature:last-child  { border-right: none; }

.event-slide__feat-icon {
  width: 1.875rem;
  height: 1.875rem;
  color: #2c2a1c;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
.event-slide__feat-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2c2a1c;
  text-align: center;
  line-height: 1.4;
}

/* ── Galería apilada (derecha) ───────────────────────────────────── */
/* ── Collage gallery ─────────────────────────────────────────────── */
.event-slide__gallery {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: visible;
}

/* Soft glow backdrop behind the photos */
.event-slide__gallery::before {
  content: "";
  position: absolute;
  inset: -8% -12%;
  background: radial-gradient(ellipse 70% 60% at 60% 45%,
    rgba(44, 42, 28, 0.10) 0%,
    rgba(44, 42, 28, 0.04) 50%,
    transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.event-slide__photo {
  position: absolute;
  /* White photo-frame effect */
  padding: 9px;
  background: #ffffff;
  border-radius: 1rem;
  overflow: visible;
  box-shadow:
    0 2px 6px rgba(31, 30, 20, 0.08),
    0 18px 50px rgba(31, 30, 20, 0.18),
    0 40px 90px rgba(31, 30, 20, 0.10);
  transition: opacity 550ms cubic-bezier(0.34, 1.4, 0.64, 1),
              transform 550ms cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 300ms ease;
}
.event-slide__photo > img,
.event-slide__photo > .photo-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
}
.event-slide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5rem;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Collage positions (portrait atrás · landscape medio · retrato novia al frente) ── */
.event-slide__photo--1 {
  width: 42%;
  aspect-ratio: 3/4;
  top: 2%;
  left: 0%;
  z-index: 1;
  transform: rotate(-6deg);
}
.event-slide__photo--2 {
  width: 55%;
  aspect-ratio: 4/3;
  top: 6%;
  right: 0%;
  z-index: 2;
  transform: rotate(3.5deg);
}
.event-slide__photo--3 {
  width: 44%;
  aspect-ratio: 2/3;
  bottom: 0%;
  left: 22%;
  z-index: 3;
  transform: rotate(-2deg);
}

/* ── Entrada: fotos flotan desde abajo con opacidad ── */
.event-slide:not(.is-active) .event-slide__photo {
  opacity: 0;
  transform: translateY(48px) scale(0.88) rotate(0deg) !important;
}
.event-slide.is-active .event-slide__photo--1 { transition-delay: 80ms; }
.event-slide.is-active .event-slide__photo--2 { transition-delay: 200ms; }
.event-slide.is-active .event-slide__photo--3 { transition-delay: 320ms; }

/* ── Hover: la foto sube al frente, imagen hace zoom ── */
.event-slide.is-active .event-slide__photo { cursor: pointer; }

@media (hover: hover) {
  .event-slide.is-active .event-slide__photo--1:hover {
    z-index: 10;
    transform: rotate(-5.5deg) translateY(-12px) scale(1.04);
    box-shadow: 0 2px 6px rgba(31, 30, 20, 0.08), 0 32px 80px rgba(31, 30, 20, 0.30);
    transition-delay: 0ms;
  }
  .event-slide.is-active .event-slide__photo--2:hover {
    z-index: 10;
    transform: rotate(3deg) translateY(-12px) scale(1.04);
    box-shadow: 0 2px 6px rgba(31, 30, 20, 0.08), 0 32px 80px rgba(31, 30, 20, 0.30);
    transition-delay: 0ms;
  }
  .event-slide.is-active .event-slide__photo--3:hover {
    z-index: 10;
    transform: rotate(-2deg) translateY(-14px) scale(1.03);
    box-shadow: 0 2px 6px rgba(31, 30, 20, 0.08), 0 36px 90px rgba(31, 30, 20, 0.32);
    transition-delay: 0ms;
  }
  .event-slide.is-active .event-slide__photo:hover img {
    transform: scale(1.06);
  }
}

/* ── Barra de stats inferior ─────────────────────────────────────── */
.event-slide__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d0d0d5;
  padding: 1.125rem 4rem;
  background: var(--color-cream, #ece8dc);
  flex-shrink: 0;
}
.event-slide__stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-right: 2rem;
  border-right: 1px solid #d0d0d5;
}
.event-slide__stat:last-child {
  border-right: none;
  padding-right: 0;
}
.event-slide__stat + .event-slide__stat {
  padding-left: 2rem;
}
.event-slide__stat-num {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #d0d0d5;
  line-height: 1;
  flex-shrink: 0;
}
.event-slide__stat-body strong {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f1e14;
  display: block;
  margin-bottom: 0.2rem;
}
.event-slide__stat-body p {
  font-size: 0.8rem;
  color: #6a6250;
  line-height: 1.45;
  margin: 0;
}

/* ── Flechas de navegación ───────────────────────────────────────── */
.events-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1.5px solid #d0d0d5;
  background: rgba(247, 244, 239, 0.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f1e14;
  transition: background 250ms, border-color 250ms, transform 250ms;
  padding: 0;
}
.events-arrow svg { width: 1.1rem; height: 1.1rem; }
.events-arrow--prev { left: 1.25rem; }
.events-arrow--next { right: 1.25rem; }
.events-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
@media (hover: hover) {
  .events-arrow:not(:disabled):hover {
    background: #2c2a1c;
    border-color: #2c2a1c;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
  }
}

/* ── Paginador superior ──────────────────────────────────────────── */
.events-pager {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  z-index: 20;
}
.events-pager__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #d0d0d5;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 300ms ease, transform 300ms ease, width 300ms ease;
}
.events-pager__dot.is-active {
  background: #2c2a1c;
  width: 1.5rem;
  border-radius: 999px;
}
@media (hover: hover) {
  .events-pager__dot:not(.is-active):hover {
    background: #8a8070;
  }
}

/* ── Responsive: tablet/móvil ────────────────────────────────────── */
@media (max-width: 63.9375rem) {
  /* En móvil los slides salen del flujo absoluto para que el contenido
     defina la altura total (no hay límite de 100svh que recorte la galería) */
  .events-wrapper { overflow-x: hidden; }

  .events-showcase {
    height: auto;
    overflow: visible;
  }

  .event-slide {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .event-slide:not(.is-active) { display: none; }
  .event-slide.is-active {
    display: flex;
    flex-direction: column;
  }

  .event-slide__inner {
    flex: none;
    height: auto;
    overflow: visible;
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 1.5rem;
  }
  /* ── Galería móvil: carrusel horizontal con scroll-snap ── */
  .event-slide__gallery {
    height: auto;
    min-height: auto;
    margin-top: 1rem;
    padding-bottom: 0.5rem;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .event-slide__gallery::-webkit-scrollbar { display: none; }

  /* Fotos: sacar del posicionamiento absoluto y meterlas en el flujo flex */
  .event-slide__photo {
    position: relative !important;
    flex: 0 0 80%;
    width: 80% !important;
    height: auto !important;
    aspect-ratio: 4/3;
    top: auto !important;
    right: auto !important;
    z-index: auto !important;
    scroll-snap-align: start;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .event-slide__stats {
    padding: 1rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .event-slide__stat {
    border-right: none;
    border-bottom: 1px solid #d0d0d5;
    padding: 0 0 1rem 0;
  }
  .event-slide__stat:last-child { border-bottom: none; }
  .event-slide__stat + .event-slide__stat { padding-left: 0; }
  .event-slide__desc { max-width: none; }
  .events-arrow { display: none; }
}

/* ── Feature Cards ──────────────────────────────────────────────── */
.feat-cards .card__media {
  aspect-ratio: 4 / 3;
}
.feat-cards .card__body {
  padding: 1rem 1.25rem 1.25rem;
}
.feat-cards .card__title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.feat-cards .card__text {
  font-size: 0.825rem;
  line-height: 1.55;
}

/* ── Expectations / "¡Oh yeah!" ─────────────────────────────────── */
.expect {
  padding: var(--spacing-72, 4.5rem) 0 var(--spacing-80, 5rem);
  background: var(--color-cream, #ece8dc);
}
.expect__inner {
  max-width: var(--max-width, 75rem);
  margin: 0 auto;
  padding: 0 var(--spacing-24, 1.5rem);
  text-align: center;
}
.expect__scribble {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #2c2a1c;
  line-height: 1;
  display: block;
  margin-bottom: 0.125rem;
}
.expect__title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #1f1e14;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}
.expect__title em {
  font-style: italic;
}

/* Pestañas internas */
.expect__tabs {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  border-bottom: 1px solid #d0d0d5;
  margin-bottom: 2.5rem;
}
.expect__tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.625rem 0;
  margin-bottom: -1px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6a6250;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease;
}
.expect__tab-btn.is-active {
  color: #1f1e14;
  font-weight: 600;
  border-bottom-color: #1f1e14;
}
@media (hover: hover) {
  .expect__tab-btn:not(.is-active):hover {
    color: #1f1e14;
  }
}

/* Paneles internos */
.expect__panel {
  display: none;
}
.expect__panel.is-active {
  display: block;
  animation: tab-fade-in 320ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Icon cards */
.icon-card {
  background: #ffffff;
  border: 1px solid #d0d0d5;
  border-radius: 1.125rem;
  padding: 1.75rem;
  text-align: left;
  transition: box-shadow 280ms ease, transform 280ms ease, border-color 280ms ease;
  display: flex;
  flex-direction: column;
}
@media (hover: hover) {
  .icon-card:hover {
    box-shadow: 0 10px 32px rgba(26, 24, 68, 0.1);
    transform: translateY(-2px);
    border-color: #c0c0cc;
  }
}
.icon-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(26, 24, 68, 0.07);
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.icon-card__icon {
  width: 1.375rem;
  height: 1.375rem;
  color: #1a1844;
  flex-shrink: 0;
}
.icon-card__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1f1e14;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.icon-card__text {
  font-size: 0.8125rem;
  color: #6a6867;
  line-height: 1.7;
  margin: 0;
}
.icon-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1844;
  text-decoration: none;
  transition: gap 200ms ease;
}
@media (hover: hover) {
  .icon-card__link:hover {
    gap: 0.55rem;
  }
}

/* ── Lightbox ────────────────────────────────────────────────────── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 10, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  backdrop-filter: blur(6px);
}
.lb-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Imagen */
.lb-img-wrap {
  flex: 1;
  max-width: min(90vw, 72rem);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 1rem;
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transition: opacity 250ms ease, transform 250ms ease;
  display: block;
}
.lb-img--loading {
  opacity: 0.2;
  transform: scale(0.97);
}

/* Botón cerrar */
.lb-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9010;
  transition: background 200ms, border-color 200ms;
  padding: 0;
}
.lb-close svg { width: 1.1rem; height: 1.1rem; }
@media (hover: hover) {
  .lb-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
  }
}

/* Flechas del lightbox */
.lb-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 200ms, border-color 200ms, transform 200ms;
  padding: 0;
}
.lb-arrow svg { width: 1.2rem; height: 1.2rem; }
.lb-arrow:disabled { opacity: 0.2; cursor: default; }
@media (hover: hover) {
  .lb-arrow:not(:disabled):hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.08);
  }
}

/* Dots del lightbox */
.lb-dots {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 9010;
}
.lb-dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 250ms, width 250ms;
}
.lb-dot.is-active {
  background: #ffffff;
  width: 1.25rem;
  border-radius: 999px;
}

/* ══════════════════════════════════════════════════════════════════
   EXPERIENCIAS EXCLUSIVAS — cards + modal con carrusel
══════════════════════════════════════════════════════════════════ */

/* ── Card clickable ──────────────────────────────────────────────── */
.card--exp {
  cursor: pointer;
  user-select: none;
  transition: transform 300ms cubic-bezier(.22,.68,0,1.2),
              box-shadow 300ms ease;
}
.card--exp:hover,
.card--exp:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 42, 28, 0.15);
  outline: none;
}
.card--exp:focus-visible { outline: 3px solid #2c2a1c; outline-offset: 3px; }

/* Tag sobre el título */
.card__exp-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #2c2a1c;
  background: rgba(44, 42, 28, 0.08);
  border-radius: 99px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.5rem;
}

/* Hover overlay sobre la imagen */
.card__exp-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(44,42,28,.72) 0%, rgba(0,0,0,.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 280ms ease;
  border-radius: inherit;
}
.card--exp:hover .card__exp-hover,
.card--exp:focus-visible .card__exp-hover { opacity: 1; }
.card__exp-hover span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 99px;
  padding: 0.6rem 1.25rem;
  backdrop-filter: blur(4px);
}
/* make sure card__media is positioned */
.card--exp .card__media { position: relative; overflow: hidden; }
.card--exp .card__media img {
  transition: transform 450ms cubic-bezier(.22,.68,0,1.1);
  display: block;
  width: 100%;
}
.card--exp:hover .card__media img { transform: scale(1.06); }

/* ── Overlay base ──────────────────────────────────────────────────── */
.exp-overlay {
  position: fixed;
  inset: 0;
  z-index: 9200;
  background: rgba(10, 12, 28, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: expFadeIn 280ms ease forwards;
}
.exp-overlay.is-closing {
  animation: expFadeOut 240ms ease forwards;
}
@keyframes expFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes expFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ── Modal box ─────────────────────────────────────────────────────── */
.exp-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 980px;
  max-height: 90vh;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  animation: expSlideUp 320ms cubic-bezier(.22,.68,0,1.1) forwards;
}
.exp-overlay.is-closing .exp-box {
  animation: expSlideDown 240ms ease forwards;
}
@keyframes expSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes expSlideDown {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(30px); opacity: 0; }
}

/* ── Carrusel (columna izquierda) ───────────────────────────────────── */
.exp-carousel {
  position: relative;
  overflow: hidden;
  background: #1a190f;
  min-height: 420px;
}
.exp-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.exp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 500ms ease;
}
.exp-slide.is-active { opacity: 1; }
.exp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Flechas */
.exp-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  width: 2.375rem;
  height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
  backdrop-filter: blur(4px);
}
.exp-carousel__arrow:hover { background: rgba(255,255,255,.35); }
.exp-carousel__arrow--prev { left: 1rem; }
.exp-carousel__arrow--next { right: 1rem; }
.exp-carousel__arrow svg   { pointer-events: none; }

/* Contador */
.exp-carousel__counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: 99px;
  padding: 0.25rem 0.7rem;
  backdrop-filter: blur(4px);
  z-index: 10;
}

/* Dots */
.exp-carousel__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4375rem;
  z-index: 10;
}
.exp-dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background 200ms, width 200ms;
  padding: 0;
}
.exp-dot.is-active {
  background: #fff;
  width: 1.25rem;
  border-radius: 99px;
}

/* Botón cerrar */
.exp-close {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  z-index: 20;
  background: rgba(0,0,0,.45);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 200ms;
  backdrop-filter: blur(4px);
}
.exp-close:hover { background: rgba(0,0,0,.65); }

/* ── Panel de información (columna derecha) ─────────────────────────── */
.exp-info {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.exp-info__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
/* Scrollbar discreta */
.exp-info__scroll::-webkit-scrollbar { width: 4px; }
.exp-info__scroll::-webkit-scrollbar-track { background: transparent; }
.exp-info__scroll::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

.exp-info__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2c2a1c;
  background: rgba(44,42,28,.10);
  border-radius: 99px;
  padding: 0.25rem 0.75rem;
  align-self: flex-start;
}
.exp-info__title {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  color: #1f1e14;
  line-height: 1.2;
  margin: 0;
}
.exp-info__tagline {
  font-size: 0.9375rem;
  font-style: italic;
  color: #5c5c4e;
  margin: 0;
  line-height: 1.5;
}
.exp-info__desc {
  font-size: 0.9rem;
  color: #4a4838;
  line-height: 1.7;
  margin: 0;
}
.exp-info__section {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9a9288;
  margin: 0.5rem 0 0;
}

/* Includes grid */
.exp-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-top: 0.25rem;
}
.exp-include {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #f8f4ec;
  border: 1px solid #e4dcc8;
  border-radius: 0.625rem;
  padding: 0.6rem 0.75rem;
}
.exp-include__icon {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  color: #2c2a1c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-include__icon svg { width: 1rem; height: 1rem; }
.exp-include__label {
  font-size: 0.8125rem;
  color: #2a2618;
  font-weight: 500;
  line-height: 1.3;
}

/* CTA */
.exp-info__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 0.75rem;
  text-decoration: none;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .exp-box {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 1fr;
    max-height: 92dvh;
  }
  .exp-carousel { min-height: unset; height: 280px; }
  .exp-info__scroll { padding: 1.5rem 1.25rem; }
  .exp-includes { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   POPUP DE ANUNCIO — Modal invasivo configurable
═══════════════════════════════════════════════════════════════════ */


/* ── Overlay ──────────────────────────────────────────────────────── */
.ann-overlay {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.ann-overlay--open { opacity: 1; pointer-events: auto; }

.ann-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,10,30,.72);
  backdrop-filter: blur(6px);
}

/* ── Card horizontal FIJO ────────────────────────────────────────── */
.ann-card {
  position: relative; z-index: 1;
  display: flex; flex-direction: row;
  width: min(640px, 95vw);
  height: min(500px, 85dvh);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  background: #fff;
  transform: translateY(28px) scale(.96);
  transition: transform .4s cubic-bezier(.22,.68,0,1.2);
}
.ann-overlay--open .ann-card {
  transform: translateY(0) scale(1);
}

/* ── Imagen izquierda (ancho natural según aspect ratio) ─────────── */
.ann-image-wrap {
  flex: none;
  max-width: 65%;
  overflow: hidden;
  cursor: pointer;
}
.ann-img {
  height: 100%;
  width: auto;
  display: block;
  transition: transform .35s ease;
}
.ann-image-wrap:hover .ann-img { transform: scale(1.03); }

/* ── Panel derecho ───────────────────────────────────────────────── */
.ann-body {
  flex: 1;
  padding: 1.75rem;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: .65rem;
  overflow: hidden;
  background: linear-gradient(160deg, #f4f0e4 0%, #fff 55%);
  position: relative;
}
.ann-body::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, #2c2a1c, #4a4830, transparent);
}

/* ── Elementos del panel ─────────────────────────────────────────── */
.ann-hotel-name {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #2c2a1c; margin: 0;
  display: flex; align-items: center; gap: .4rem;
}
.ann-hotel-name svg { flex-shrink: 0; }
.ann-divider {
  width: 2.5rem; height: 2px;
  background: #2c2a1c; border: none; margin: 0;
}
.ann-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700; line-height: 1.2;
  color: #1f1e14; margin: 0;
}
.ann-desc {
  font-size: .9rem; color: #6a6250;
  line-height: 1.6; margin: 0;
}
.ann-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.5rem;
  background: #2c2a1c; color: #fff;
  border: none; border-radius: 10px;
  font-size: .9rem; font-weight: 700;
  cursor: pointer; width: fit-content;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.ann-cta:hover { background: #1a180c; transform: translateY(-1px); }
.ann-chips {
  display: flex; flex-wrap: wrap; gap: .4rem;
  list-style: none; padding: 0; margin: 0;
}
.ann-chip {
  font-size: .72rem; font-weight: 600;
  color: #2c2a1c; background: #eee8d8;
  padding: 3px 10px; border-radius: 999px;
}

/* ── Botón cerrar ────────────────────────────────────────────────── */
.ann-close {
  position: absolute; top: .9rem; right: .9rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.88); backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #3a3828; box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: background .15s;
}
.ann-close:hover { background: #fff; }

/* ── Dots carrusel ───────────────────────────────────────────────── */
.ann-dots {
  display: flex; justify-content: center; gap: .4rem;
  margin-top: .75rem;
}
.ann-dot {
  width: 7px; height: 7px; border-radius: 50%; border: none;
  background: rgba(44,42,28,.2); cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.ann-dot.is-active { background: #2c2a1c; transform: scale(1.4); }

/* ── Slide (multi-popup) ─────────────────────────────────────────── */
.ann-slide { display: none; flex-direction: row; width: 100%; height: 100%; }
.ann-slide.is-active { display: flex; }

/* ── Mobile ≤600px ───────────────────────────────────────────────── */
@media (max-width: 600px) {
  .ann-card {
    flex-direction: column;
    height: auto; max-height: 90dvh;
    overflow-y: auto;
  }
  .ann-image-wrap { flex: none; width: 100%; height: 220px; background: #fff; }
  .ann-img { object-fit: cover; background: #fff; }
  .ann-body {
    height: auto; overflow: visible;
    padding: 1.25rem; background: #fff;
  }
  .ann-body::before { display: none; }
  .ann-slide { flex-direction: column; height: auto; }
}

/* ═══════════════════════════════════════════════════════════════════
   BARRA DE RESERVAS
═══════════════════════════════════════════════════════════════════ */

/* ── Sección contenedora — flotante entre hero y siguiente sección ── */
.reservation-bar-section {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
  margin-top: -2.75rem;
}

/* ── Barra principal — desktop ───────────────────────────────────── */
.res-bar {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08), 0 12px 40px rgba(0,0,0,.14);
  width: min(960px, 92vw);
}

/* ── Campos ──────────────────────────────────────────────────────── */
.res-bar__field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex: 1;
  min-width: 150px;
}

.res-bar__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9a9080;
}

.res-bar__input {
  border: 1.5px solid #e0dbd0;
  border-radius: 10px;
  padding: .6rem .85rem;
  font-size: .95rem;
  font-weight: 500;
  color: #1f1e14;
  outline: none;
  width: 100%;
  background: #faf9f7;
  transition: border-color .2s, background .2s, box-shadow .2s;
  font-family: "DM Sans", system-ui, sans-serif;
}
.res-bar__input:focus {
  border-color: #2c2a1c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(44,42,28,.07);
}
.res-bar__input.is-error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.08); }

/* ── Wrapper fecha con ícono ─────────────────────────────────────── */
.res-bar__date-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.res-bar__date-ico {
  position: absolute;
  left: .75rem;
  color: #b0a898;
  pointer-events: none;
  flex-shrink: 0;
  transition: color .2s;
  z-index: 1;
}
.res-bar__date-wrap:focus-within .res-bar__date-ico { color: #2c2a1c; }

.res-bar__input--date {
  padding-left: 2.5rem;
  padding-right: .5rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
}
/* Ícono nativo del date: empujar a la derecha y atenuar */
.res-bar__input--date::-webkit-calendar-picker-indicator {
  opacity: .35;
  cursor: pointer;
  filter: invert(0.3);
}
.res-bar__date-wrap:focus-within .res-bar__input--date::-webkit-calendar-picker-indicator {
  opacity: .7;
}

/* ── Wrapper contadores (display:contents en desktop → hijos son flex items directos) */
.res-bar__counters-row { display: contents; }

/* ── Contadores ──────────────────────────────────────────────────── */
.res-bar__field--counter { flex: 0 0 auto; min-width: 120px; }

.res-bar__counter {
  display: flex;
  align-items: center;
  gap: .35rem;
  border: 1.5px solid #d8d0b8;
  border-radius: 8px;
  padding: .4rem .6rem;
  background: #fff;
}

.res-bar__counter-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1.5px solid #d8d0b8;
  background: #f5f1e8;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a6250;
  flex-shrink: 0;
  transition: border-color .15s, background .15s, color .15s;
  font-family: "DM Sans", system-ui, sans-serif;
}
.res-bar__counter-btn:hover { border-color: #2c2a1c; color: #2c2a1c; background: #eee8d8; }

.res-bar__counter-val {
  flex: 1;
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  color: #1f1e14;
  min-width: 1.5rem;
  pointer-events: none;
}

/* ── Botón Reservar ──────────────────────────────────────────────── */
.res-bar__btn {
  padding: .65rem 1.75rem;
  border-radius: 10px;
  border: none;
  background: #2c2a1c;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  white-space: nowrap;
  align-self: flex-end;
  flex-shrink: 0;
  transition: background .15s, transform .1s;
  font-family: "DM Sans", system-ui, sans-serif;
}
.res-bar__btn:hover { background: #1a180c; transform: translateY(-1px); }

/* ── Mensajes de error ───────────────────────────────────────────── */
.res-bar__error {
  font-size: .75rem;
  color: #ef4444;
  margin-top: .1rem;
  display: none;
}
.res-bar__error.is-visible { display: block; }

/* ── Sticky — común ──────────────────────────────────────────────── */
.res-bar-sticky {
  position: fixed;
  top: var(--header-height);   /* debajo del navbar — nunca entra en su zona */
  left: 0;
  right: 0;
  z-index: 850;                /* navbar=900, sticky=850 */
  background: #2c2a1c;
  padding: .6rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  /* Oculto: invisible + ligeramente subido (dentro de su propia zona) */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease;
}
.res-bar-sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ── Sticky desktop — barra completa ─────────────────────────────── */
@media (min-width: 768px) {
  .res-bar-sticky .res-bar {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: .75rem;
  }
  .res-bar-sticky .res-bar__label { color: rgba(255,255,255,.7); }
  .res-bar-sticky .res-bar__input {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.25);
    color: #fff;
  }
  .res-bar-sticky .res-bar__input::placeholder { color: rgba(255,255,255,.5); }
  .res-bar-sticky .res-bar__counter {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.25);
  }
  .res-bar-sticky .res-bar__counter-btn {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.2);
    color: #fff;
  }
  .res-bar-sticky .res-bar__counter-btn:hover { background: rgba(255,255,255,.22); }
  .res-bar-sticky .res-bar__counter-val { color: #fff; }
  .res-bar-sticky .res-bar__btn { background: #fff; color: #2c2a1c; }
  .res-bar-sticky .res-bar__btn:hover { background: #f0ece0; transform: translateY(-1px); }
}

/* ── Sticky mobile — resumen compacto ────────────────────────────── */
.res-bar-sticky__mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.res-bar-sticky__summary {
  font-size: .85rem;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.res-bar-sticky__btn {
  flex-shrink: 0;
  padding: .5rem 1.35rem;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: #2c2a1c;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .15s;
  font-family: "DM Sans", system-ui, sans-serif;
}
.res-bar-sticky__btn:hover { background: #f0ece0; }

/* ── Mobile ≤767px — pastilla compacta ──────────────────────────── */
@media (max-width: 767px) {

  .reservation-bar-section {
    margin-top: 0;
    padding: .75rem 1rem;
  }

  /* La .res-bar normal NO aparece en mobile; solo vive dentro del sheet */
  .reservation-bar-section .res-bar { display: none; }
}

/* ══ Pastilla trigger ═══════════════════════════════════════════════ */
.res-bar-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 14px;
  padding: .9rem 1rem .9rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08), 0 12px 40px rgba(0,0,0,.14);
  cursor: pointer;
  text-align: left;
  font-family: "DM Sans", system-ui, sans-serif;
  gap: .75rem;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow .2s ease;
}
.res-bar-trigger:active { box-shadow: 0 2px 10px rgba(0,0,0,.1); }

.res-bar-trigger__info {
  display: flex;
  flex-direction: column;
  gap: .18rem;
  flex: 1;
  min-width: 0;
}

.res-bar-trigger__dates {
  font-size: .92rem;
  font-weight: 600;
  color: #1f1e14;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.res-bar-trigger__guests {
  font-size: .75rem;
  color: #6a6250;
}

.res-bar-trigger__cta {
  flex-shrink: 0;
  padding: .6rem 1.3rem;
  background: #2c2a1c;
  color: #fff;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1;
}

/* ══ Bottom sheet ═══════════════════════════════════════════════════ */
.res-bar-sheet {
  position: fixed;
  inset: 0;
  z-index: 980;
  pointer-events: none;
  visibility: hidden;
}
.res-bar-sheet.is-open {
  pointer-events: auto;
  visibility: visible;
}

.res-bar-sheet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .3s ease;
}
.res-bar-sheet.is-open .res-bar-sheet__overlay { opacity: 1; }

.res-bar-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 0 1.25rem calc(env(safe-area-inset-bottom, 0px) + 1.75rem);
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.res-bar-sheet.is-open .res-bar-sheet__panel { transform: translateY(0); }

.res-bar-sheet__handle {
  width: 2.75rem;
  height: 4px;
  background: #d0d0d5;
  border-radius: 2px;
  margin: .875rem auto .25rem;
}

.res-bar-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 0;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid #ededef;
}

.res-bar-sheet__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f1e14;
  font-family: "DM Sans", system-ui, sans-serif;
}

.res-bar-sheet__close {
  width: 2rem;
  height: 2rem;
  border: none;
  background: #ededef;
  border-radius: 50%;
  cursor: pointer;
  color: #6a6250;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.res-bar-sheet__close:hover { background: #d0d0d5; }

/* ── res-bar dentro del sheet (columna, sin card) ────────────────── */
.res-bar.res-bar--sheet {
  flex-direction: column;
  align-items: stretch;
  gap: .9rem;
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 100%;
  border-radius: 0;
}
.res-bar.res-bar--sheet .res-bar__field      { flex: unset; min-width: unset; }
.res-bar.res-bar--sheet .res-bar__counters-row {
  display: flex;
  gap: .75rem;
}
.res-bar.res-bar--sheet .res-bar__field--counter { flex: 1; }
.res-bar.res-bar--sheet .res-bar__btn {
  width: 100%;
  align-self: stretch;
  padding: .9rem 1rem;
  border-radius: 12px;
  text-align: center;
  margin-top: .25rem;
}

/*# sourceMappingURL=main.css.map */

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE MOBILE — Breakpoints: ≤767px principal, ≤479px pequeño
   Nota: la reservation-bar (.res-bar / .res-bar-sticky) ya tiene sus
   propias reglas más arriba; NO se repiten aquí.
══════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────────
   1. NAVBAR
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Logo ligeramente más pequeño en móvil */
  .navbar__logo-img {
    height: 44px;
  }

  /* Asegurar que el wrapper tenga padding lateral adecuado */
  .navbar__inner {
    padding-inline: 0;
    gap: 0.5rem;
  }

  /* Reservar btn compacto en móvil */
  .navbar__actions .btn--primary {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  /* Menú móvil: mejorar legibilidad y espaciado en pantallas pequeñas */
  .navbar__mobile {
    padding: 1.5rem 1rem;
    overflow-y: auto;
  }
  .navbar__mobile ul {
    gap: 0.25rem;
  }
  .navbar__mobile a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* ──────────────────────────────────────────────────────────────────
   2. HERO
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero {
    min-height: clamp(24rem, 75svh, 36rem);
  }

  .hero__content {
    padding-block: 3rem 5.5rem; /* más espacio abajo para la pill */
    padding-inline: 1.25rem;
  }

  .hero__eyebrow {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }

  /* El título usa clamp(2.5rem,6vw,4.5rem) — en móvil clamp lo reduce,
     pero en teléfonos muy pequeños aún puede ser grande */
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
    max-width: 18ch;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
  }
  .hero__ctas .btn {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
    min-height: 48px;
  }

  /* Dots del carrusel — en móvil bajan más para dejar espacio a la pill */
  .hero__dots {
    bottom: 6rem;
  }

  /* Sticky search pill no debe tener min-width fija en móvil */
  .hero__search--form.is-sticky {
    min-width: 0;
    width: min(92%, 38rem);
  }
}

@media (max-width: 479px) {
  .hero__title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }
}

/* ──────────────────────────────────────────────────────────────────
   3. MEET-BOB (meet-banner)
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .meet-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Corregir desbordamiento: la imagen usa width:110% en desktop
     para el efecto L-shape — en móvil la contenemos */
  .meet-banner__media img {
    width: 100%;
  }

  .meet-banner__title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    text-align: left;
    text-align-last: left;
  }

  .meet-banner__text {
    font-size: 1rem;
    text-align: left;
    text-align-last: left;
  }
}

/* ──────────────────────────────────────────────────────────────────
   4. FEATURES (feat-cards) — grid--3
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* grid--3 ya cae a 1 columna en móvil por defecto (min-width: 48rem
     define las 2 cols). Sólo pulimos padding y tamaños. */
  .feat-cards .card__title {
    font-size: 1rem;
  }
  .feat-cards .card__text {
    font-size: 0.875rem;
  }
}

/* ──────────────────────────────────────────────────────────────────
   5. EXPECTATIONS (expect)
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .expect {
    padding-block: 3rem;
  }

  .expect__inner {
    padding-inline: 1rem;
  }

  .expect__scribble {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .expect__title {
    font-size: clamp(1.375rem, 5vw, 1.875rem);
    margin-bottom: 1.75rem;
  }

  /* Tabs internas: reducir gap y hacerlas full-width scrollable */
  .expect__tabs {
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding-inline: 0.25rem;
  }
  .expect__tabs::-webkit-scrollbar { display: none; }
  .expect__tab-btn {
    font-size: 0.875rem;
    flex-shrink: 0;
    padding: 0.5rem 0.25rem;
    min-height: 44px;
  }

  /* Icon cards: en móvil ocupan 1 columna (grid--4 ya cae a 1 col por defecto) */
  .icon-card {
    padding: 1.25rem;
  }
}

/* ──────────────────────────────────────────────────────────────────
   6. PROMISE / USP GRID
────────────────────────────────────────────────────────────────── */
@media (max-width: 39.99rem) {
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .usp-grid__item {
    padding: 1.5rem;
  }
}

/* ──────────────────────────────────────────────────────────────────
   7. DESTINATIONS (grid--4 + destination-card)
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* El grid--4 cae a 2 cols en ≥576px y 1 col en <576px;
     en 768–576 puede ser 2 cols. En móvil los forzamos a 2 cols
     para aprovechar espacio (con aspect-ratio 3/4 se ven bien). */
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* destination-card: preview siempre visible en móvil
     (no hay hover en táctil) */
  .destination-card__preview {
    opacity: 1;
    max-height: 5rem;
    transform: translateY(0);
  }
  .destination-card__cta {
    opacity: 1;
    transform: translateY(0);
  }

  /* Modal de destino: mejor padding en móvil */
  .dest-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }
  .dest-hero__titles {
    left: 1.25rem;
    bottom: 1rem;
  }
}

@media (max-width: 479px) {
  /* En teléfonos muy pequeños, 1 columna para destination-card */
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .destination-card {
    aspect-ratio: 4/3;
  }
}

/* ──────────────────────────────────────────────────────────────────
   8. REVIEWS (rv-scores + rv-carousel)
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Score cards: ya se aplica flex-direction:column desde 64rem,
     pero debajo de 767px aseguramos padding reducido */
  .rv-scores {
    flex-direction: column;
  }
  .rv-scores__sep {
    width: 100%;
    height: 1px;
  }
  .rv-score {
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
  .rv-score__num {
    font-size: 1.5rem;
  }

  /* Trust strip: logos en fila ajustada */
  .rv-trust__logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 0.5rem;
  }
}

/* ──────────────────────────────────────────────────────────────────
   9. EVENTS SHOWCASE
   (ya tiene @media (max-width: 63.9375rem) arriba)
   Refinamientos adicionales para ≤767px
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .event-slide__inner {
    padding: 2rem 1rem 1rem;
    gap: 1.25rem;
  }

  .event-slide__title {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }

  .event-slide__desc {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  /* Features: 3 iconos en fila con menos padding */
  .event-slide__feature {
    padding: 0 0.75rem;
  }
  .event-slide__feat-label {
    font-size: 0.5875rem;
  }

  /* Stats: menos padding */
  .event-slide__stats {
    padding: 1rem;
  }

  /* Flechas de navegación: más pequeñas y reposicionadas */
  .events-pager {
    top: 0.75rem;
  }
}

/* ──────────────────────────────────────────────────────────────────
   10. FOOTER
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Parte superior: columna única */
  .footer__top {
    flex-direction: column;
    gap: 2rem;
  }

  /* Brand: ancho completo */
  .footer__brand {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .footer__logo-img {
    height: 70px;
  }

  /* Nav: 2 columnas a todo ancho (ya tiene grid-template-columns: repeat(2,1fr)) */
  .footer__nav {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.5rem;
  }

  /* Eco badge: centrado en móvil */
  .footer__eco-badge {
    justify-content: flex-start;
    margin-top: 2rem;
  }

  /* Back-to-top: reposicionar para pantallas pequeñas */
  .footer__back-top {
    top: 1.5rem;
    right: 1rem;
  }

  /* Footer main padding */
  .footer__main {
    width: calc(100% - 2rem);
    padding-block: 2.5rem 1.5rem;
  }

  /* Bar inferior: columna única (ya hay regla para ≥64rem,
     pero abajo de 64rem ya es columna; el padding podría optimizarse) */
  .footer__bar-inner {
    padding-block: 1.25rem 2rem;
    gap: 1rem;
  }

  /* Legal links: wrapping más agresivo */
  .footer__legal-links {
    gap: 0.375rem 0.75rem;
  }
  .footer__legal-links a {
    font-size: 0.6875rem;
  }

  .footer__copyright {
    font-size: 0.6875rem;
  }
}

@media (max-width: 479px) {
  /* Columnas de nav: 1 sola columna en teléfonos muy pequeños */
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ──────────────────────────────────────────────────────────────────
   11. BOOKING HEADER
   (pill + form toggle ya está implementado en @media (max-width: 47.99rem))
   Refinamientos adicionales
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .booking-header__inner {
    padding-block: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .booking-header__logo-img {
    height: 42px;
  }

  /* Botón de reservar en el header: compacto */
  .booking-header__actions .btn--sm {
    padding: 0.45rem 0.875rem;
    font-size: 0.75rem;
  }

  /* Pill de búsqueda: más compacta */
  .booking-header__search-pill {
    padding: 0.625rem 0.75rem 0.625rem 1rem;
  }
  .bsp-label { font-size: 0.8125rem; }
  .bsp-sub   { font-size: 0.6875rem; }

  /* Menú móvil del booking header: empezar desde arriba del header */
  .booking-header__mobile {
    top: 0;
    padding-top: 6rem; /* deja espacio para el header */
  }
}

/* ──────────────────────────────────────────────────────────────────
   12. BOOKING LISTINGS (unit-grid / booking-toolbar)
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Toolbar: compactar en móvil */
  .booking-toolbar {
    top: auto; /* deja de ser sticky para no conflictuar con booking-header */
    position: relative;
    padding-block: 0.75rem;
    gap: 0.75rem;
  }
  .booking-toolbar__filters {
    gap: 0.5rem;
  }
  .booking-toolbar__meta {
    gap: 0.5rem 1rem;
  }

  /* Unit grid: 1 columna en móvil */
  .unit-grid {
    grid-template-columns: 1fr;
  }

  /* Booking content: menor padding */
  .booking-content {
    padding-block: 1rem 2rem;
  }

  /* Booking main: sin border-radius tan agresiva en móvil */
  .booking-main {
    border-radius: 0 0 1rem 1rem;
  }
}

/* ──────────────────────────────────────────────────────────────────
   13. TAB NAVIGATION DOCK (sticky-nav)
   Ya tiene overflow-x:auto. Refinamos para móvil.
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .sticky-nav__list {
    justify-content: flex-start; /* scroll desde la izquierda */
    padding-inline: 1rem;
    gap: 0.375rem;
    padding-block: 0.625rem;
  }
  .sticky-nav__link {
    padding: 0.4375rem 1rem;
    font-size: 0.8125rem;
    min-height: 36px;
  }
}

/* ──────────────────────────────────────────────────────────────────
   14. ANNOUNCEMENT POPUP (ann-card)
   Ya tiene @media (max-width: 600px). Refinamos para ≤479px.
────────────────────────────────────────────────────────────────── */
@media (max-width: 479px) {
  .ann-card {
    border-radius: 16px 16px 0 0;
  }
  .ann-image-wrap {
    height: 180px;
  }
  .ann-body {
    padding: 1rem;
  }
  .ann-title {
    font-size: 1.125rem;
  }
  .ann-desc {
    font-size: 0.8125rem;
  }
  .ann-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ──────────────────────────────────────────────────────────────────
   15. SECCIÓN .section — padding global reducido en móvil
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section {
    padding-block: 2.5rem;
  }
  .section__inner {
    width: calc(100% - 2rem);
  }
  .intro-block__title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }
  .intro-block__content {
    font-size: 1rem;
  }
}

/* ──────────────────────────────────────────────────────────────────
   16. SUITE MODAL (sm-box) — refinamiento adicional para ≤479px
────────────────────────────────────────────────────────────────── */
@media (max-width: 479px) {
  /* Ya hay reglas a 700px. Para teléfonos pequeños refinamos. */
  .sm-box {
    height: 96svh;
    max-height: 96svh;
    border-radius: 1.25rem 1.25rem 0 0;
  }
  .sm-info__scroll {
    padding: 1.25rem 1rem 0.75rem;
  }
  .sm-cta {
    padding: 0.75rem 1rem 1.5rem;
  }
}

/* ──────────────────────────────────────────────────────────────────
   17. PROMO BAR — asegurar texto legible en móvil
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .promo-bar__inner {
    padding-inline-end: 2.5rem;
    padding-block: 0.625rem;
  }
  .promo-bar__text {
    font-size: 0.8125rem;
    line-height: 1.45;
  }
  .promo-bar__close {
    right: 0.5rem;
  }
}

/* ──────────────────────────────────────────────────────────────────
   18. SUSTAINABILITY (amenidades tab)
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .sustainability__cards {
    grid-template-columns: 1fr;
    margin-top: 1.75rem;
    gap: 1rem;
  }
  .sustainability__card {
    padding: 1.25rem;
  }
}

/* ──────────────────────────────────────────────────────────────────
   19. DESTINATION MODAL (dest-box) — mejor en móvil
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .dest-box {
    border-radius: 1.25rem;
    width: min(95vw, 780px);
  }
  .dest-hero {
    height: clamp(160px, 25vh, 220px);
  }
}

/* ──────────────────────────────────────────────────────────────────
   20. MISCELÁNEOS — evitar overflow horizontal global
────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Evitar que cualquier elemento desborde el viewport */
  .hero__bg-overlay,
  .hero__bg,
  .hero__slides {
    max-width: 100vw;
  }

  /* Contenedores que no deben tener scroll horizontal */
  .section__inner,
  .footer__main,
  .booking-header__inner {
    max-width: 100%;
    overflow: hidden;
  }

  /* Tab panels: resetear el padding-top agresivo en móvil */
  .tab-panel {
    margin-top: 0;
    padding-top: 0;
  }

  /* Botones deben tener al menos 44px de touch target */
  .btn,
  .navbar__toggle,
  .footer__back-top {
    min-height: 44px;
  }
  .navbar__toggle {
    min-width: 44px;
  }

  /* Search modal: ya tiene align-items:flex-end en móvil */
  .search-modal__panel {
    width: 100%;
    max-width: 100%;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

