/* ══════════════════════════════════════
   MAYAN MONKEY — style.css
   Sistema basado en Bahama Bay Pool Club
   Colores: MM brand, Fuentes: Catamaran + Poppins
══════════════════════════════════════ */


:root {
  --teal:      #79b5a6;
  --dark:      #4B6F61;
  --peach:     #FEDDAA;
  --brown:     #926C5B;
  --grey:      #6D6E71;
  --cream:     #FDFEF5;
  --teal-rgb:  121, 181, 166;
  --dark-rgb:  75, 111, 97;
}
.py-5 {
    padding-top: 1.25rem!important;
    padding-bottom: 1.25rem!important;
}
/* ── Entrance animation — prevent FOUC before GSAP sets opacity ── */
.js-reveal-ready .section-title:not(.js-split-title),
.js-reveal-ready .sec-header__title:not(.js-split-title),
.js-reveal-ready .section-eyebrow,
.js-reveal-ready .sec-header__eyebrow,
.js-reveal-ready .sec-header__desc,
.js-reveal-ready .location__text,
.js-reveal-ready .vibes__text,
.js-reveal-ready .vibe-section__header,
.js-reveal-ready .amenities-section__header,
.js-reveal-ready .testi__left,
.js-reveal-ready .loc-section__header,
.js-reveal-ready .gallery__cta,
.js-reveal-ready .gallery .sec-header__left,
.js-reveal-ready .gallery .sec-header__right,
.js-reveal-ready .awards__inner .sec-header,
.js-reveal-ready .location__img-wrap,
.js-reveal-ready .vibes__img-wrap,
.js-reveal-ready .location__content,
.js-reveal-ready .vibes__content {
  opacity: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hide-mobile  { display: inline-block; }
.hide-desktop { display: none !important; }
@media (max-width: 768px) {
  .hide-mobile  { display: none !important; }
  .hide-desktop { display: inline-block !important; }

  /* Separación universal entre secciones: solo margin, nunca padding doble */
  section, .card-stack, .vibe-section, .gallery {
    margin-bottom: 50px;
    padding-bottom: 0 !important;
  }
  /* El padding-top de cada sección maneja el espacio interno superior */
}

html, body {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: clip;
}

p {
  text-align: justify;
  text-align-last: left;
}
.grid.grid-cols-2.gap-3.mt-8.w-full {
  height: auto !important;
  min-height: 1px !important;
  position: static !important;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
@keyframes headerSlideIn {
  from { transform: translateY(-110%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.mm-hdr {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  animation: headerSlideIn 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}

.mm-hdr.is-scrolled {
  background: rgba(121,181,166,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
}

.mm-hdr__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 55px;
  padding: 0 32px;
}

.mm-hdr__left  { display: flex; align-items: center; gap: 28px; }
.mm-hdr__right { display: flex; align-items: center; gap: 24px; justify-content: flex-end; }

.mm-hdr__logo-wrap { display: flex; align-items: center; justify-content: center; }
.mm-hdr__logo {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ── Burger ── */
.mm-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.mm-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mm-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mm-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mm-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Nav links ── */
.mm-nav-item { position: relative; }

.mm-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: 6px 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.mm-nav-link:hover { opacity: 0.75; }

.mm-chevron {
  width: 10px;
  height: 7px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.mm-nav-item.is-open .mm-chevron { transform: rotate(180deg); }

.mm-nav-item.is-open .mm-nav-link {
  background: #01818e;
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  opacity: 1;
}

/* ── Dropdown ── */
.mm-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 168px;
  background: rgba(121,181,166,0.97);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  clip-path: inset(0 0 100% 0 round 12px);
  opacity: 0;
  pointer-events: none;
  transition: clip-path 0.32s cubic-bezier(0.16,1,0.3,1),
              opacity 0.18s ease;
}
.mm-dropdown--right { left: auto; right: 0; }

.mm-nav-item.is-open .mm-dropdown {
  clip-path: inset(0 0 0% 0 round 12px);
  opacity: 1;
  pointer-events: auto;
}

.mm-dropdown__item {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  transition: background 0.18s, padding-left 0.2s;
}
.mm-dropdown__item:nth-child(1) { transition-delay: 0.04s; }
.mm-dropdown__item:nth-child(2) { transition-delay: 0.07s; }
.mm-dropdown__item:nth-child(3) { transition-delay: 0.10s; }
.mm-dropdown__item:nth-child(4) { transition-delay: 0.13s; }
.mm-dropdown__item:hover {
  background: rgba(255,255,255,0.15);
  padding-left: 26px;
}

/* ── Language ── */
.mm-lang {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mm-lang__link {
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mm-lang__link--active,
.mm-lang__link:hover { color: #fff; }
.mm-lang__sep {
  color: rgba(255,255,255,0.35);
  font-size: 10px;
}

/* ── WhatsApp ── */
.mm-whatsapp {
  color: #fff;
  opacity: 0.75;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.mm-whatsapp:hover { opacity: 1; }

/* ── Mobile: hide dropdowns on desktop, show burger ── */
@media (max-width: 768px) {
  .mm-hdr__inner { padding: 0 20px; }
  .mm-nav-item { display: none; }
  .mm-lang { display: flex; }
  .mm-whatsapp { display: none; }
  .mm-hdr__right { gap: 0; }
}


/* ══════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════ */
.mm-mob {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.38s ease, visibility 0.38s ease;
  overflow-y: auto;
}
.mm-mob.is-open { opacity: 1; visibility: visible; }

/* close X */
.mm-mob__close {
  position: absolute;
  top: 20px; right: 22px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mm-mob__close span {
  position: absolute;
  width: 22px; height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
}
.mm-mob__close span:first-child { transform: rotate(45deg); }
.mm-mob__close span:last-child  { transform: rotate(-45deg); }

.mm-mob__inner {
  padding: 80px 36px 48px;
  flex: 1;
}

.mm-mob__logo {
  margin-bottom: 40px;
}
.mm-mob__logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0);
  margin-bottom: 6px;
}
.mm-mob__logo p {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  text-align: left;
  text-align-last: left;
}

.mm-mob__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.mm-mob__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mm-mob__group { display: flex; flex-direction: column; gap: 4px; }

.mm-mob__link {
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: clamp(13px, 2vw, 16px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
  opacity: 0;
  transform: translateY(12px);
}
.mm-mob.is-open .mm-mob__link {
  animation: mobItemIn 0.45s cubic-bezier(0.16,1,0.3,1) forwards;
}
.mm-mob__link:hover { color: #79b5a6; }

.mm-mob__sub {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #79b5a6;
  text-align: left;
  text-align-last: left;
}

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

/* stagger each link */
.mm-mob__col:first-child .mm-mob__link:nth-child(1),
.mm-mob__col:first-child .mm-mob__group:nth-child(1) .mm-mob__link { animation-delay: 0.10s; }
.mm-mob__col:first-child .mm-mob__group:nth-child(2) .mm-mob__link { animation-delay: 0.16s; }
.mm-mob__col:first-child .mm-mob__link:nth-child(3) { animation-delay: 0.22s; }
.mm-mob__col:first-child .mm-mob__link:nth-child(4) { animation-delay: 0.28s; }
.mm-mob__col:first-child .mm-mob__link:nth-child(5) { animation-delay: 0.34s; }
.mm-mob__col:first-child .mm-mob__link:nth-child(6) { animation-delay: 0.40s; }
.mm-mob__col:first-child .mm-mob__link:nth-child(7) { animation-delay: 0.46s; }
.mm-mob__col:last-child  .mm-mob__link:nth-child(1) { animation-delay: 0.14s; }
.mm-mob__col:last-child  .mm-mob__link:nth-child(2) { animation-delay: 0.20s; }
.mm-mob__col:last-child  .mm-mob__link:nth-child(3) { animation-delay: 0.26s; }
.mm-mob__col:last-child  .mm-mob__link:nth-child(4) { animation-delay: 0.32s; }
.mm-mob__col:last-child  .mm-mob__link:nth-child(5) { animation-delay: 0.38s; }

@media (max-width: 480px) {
  .mm-mob__grid { grid-template-columns: 1fr; }
  .mm-mob__inner { padding: 72px 24px 40px; }
}


/* ══════════════════════════════════════
   SEC-HEADER COMPONENT
══════════════════════════════════════ */
.sec-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 40px 32px 56px;
  max-width: 1260px;
  margin: 0 auto;
  box-sizing: border-box;
}

.sec-header--column {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0;
}

.sec-header__left  { flex: 0 0 auto; min-width: 0; }
.sec-header--column .sec-header__left { max-width: 100%; }

.sec-header__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #79b5a6;
  margin-bottom: 4px;
}

.sec-header__eyebrow--light { color: rgba(255,255,255,0.65); }

.sec-header__title {
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
  color: #79b5a6;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sec-header__title--light { color: #fff; }

.sec-header__divider {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

/* sec-header lines removed */

.sec-header__right {
  flex: 0 0 auto;
  max-width: 540px;
  min-width: 0;
}

.sec-header--column .sec-header__right { flex: none; }

.sec-header__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  max-width: 520px;
}

.sec-header__desc--light { color: rgba(255,255,255,0.85); }


/* ══════════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════════ */
.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #79b5a6;
  margin-bottom: 14px;
}

.section-eyebrow--light { color: rgba(255,255,255,0.65); }

.section-title {
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #79b5a6;
  position: relative;
  margin-bottom: 4px;
}

.section-title--light { color: #fff; }

.btn-primary {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #79b5a6!important;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(var(--teal-rgb), 0.4);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: #4b6f61!important;
  box-shadow: 0 6px 24px rgba(var(--dark-rgb), 0.4);
  transform: translateY(-2px);
}

.btn-primary:active { transform: translateY(0) scale(0.97); }

.btn-primary--sm { font-size: 10px; padding: 10px 20px; }

.btn-primary--outline {
  background: transparent;
  border: 1.5px solid #fff;
  box-shadow: none;
}

.btn-primary--outline:hover {
  background: #fff;
  color: var(--dark);
}


/* ══════════════════════════════════════
   SPLIT TEXT ANIMATION
══════════════════════════════════════ */
.mm-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.08;
}
.mm-word  { display: inline-block; }
.mm-char  { display: inline-block; transform-style: preserve-3d; }
.mm-space { display: inline-block; width: 0.35em; }


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,0.38), 0 4px 12px rgba(0,0,0,0.18);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 100%);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}

.hero__scroll-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

@keyframes scrollDown {
  0%   { transform: scaleY(1); opacity: 0.5; }
  100% { transform: scaleY(0); opacity: 0; }
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollDown 1.6s ease-in infinite;
  transform-origin: top center;
}


/* ══════════════════════════════════════
   HERO CONTENT — Jo&Joe masked reveal
══════════════════════════════════════ */
.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 6%;
  z-index: 2;
  pointer-events: none;
}

/* ── Eyebrow ── */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  opacity: 0;
}
.hero__eyebrow-text {
  font-family: 'Catamaran', sans-serif;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero__eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #79B5A6;
  flex-shrink: 0;
  animation: eyebrowDot 2.2s ease-in-out infinite;
}
.hero__eyebrow-dot:last-child { animation-delay: 1.1s; }
@keyframes eyebrowDot {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.5); }
}

/* ── Headline — single line ── */
.hero__headline {
  display: block;
  margin: 0 0 36px;
}
.hero__line-wrap {
  display: block;
  overflow: hidden;
  line-height: 0.88;
}
.hero__line {
  display: block;
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6.2vw, 90px);
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  will-change: transform;
}

/* wrapper mobile-only: en desktop es transparente */
.hero__main-col { display: contents; }

/* ── CTA group ── */
.hero__cta-group {
  display: flex;
  align-items: stretch;
  gap: 16px;
  pointer-events: auto;
  opacity: 0;
}

/* ── 20% OFF deal badge ── */
.hero__deal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,0.38);
  border-radius: 18px;
  padding: 16px 28px;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.hero__deal-pct,
.hero__deal-off {
  font-family: 'Figtree', 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4.2vw, 64px);
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Soccer ball replacing the O */
.hero__ball {
  font-style: normal;
  display: inline-block;
  font-size: 0.8em;
  vertical-align: 0.05em;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.hero__deal-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 55%);
  pointer-events: none;
}

/* ── GET NOW pill ── */
.hero__cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Catamaran', sans-serif;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 22px 40px;
  border-radius: 18px;
  border: none;
  background: #01818e;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.25s;
  box-shadow: 0 8px 32px rgba(1,129,142,0.45);
}
.hero__cta-pill:hover {
  background: #019aaa;
  transform: translateY(-4px);
}
.hero__cta-text { position: relative; z-index: 1; white-space: nowrap; }
.hero__cta-arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.hero__cta-pill:hover .hero__cta-arrow { transform: translateX(6px); }
.hero__cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,0.26) 50%, transparent 75%);
  transform: translateX(-100%);
  animation: ctaShine 3.2s ease-in-out infinite 2s;
}
@keyframes ctaShine {
  0%   { transform: translateX(-120%); }
  40%  { transform: translateX(220%); }
  100% { transform: translateX(220%); }
}

@media (max-width: 768px) {
  .hero { height: 100svh; }
  .hero__content  { padding: 0 24px; }
  .hero__headline { margin-bottom: 10px; }
  .hero__main-col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: max-content;
  }
  .hero__cta-group { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .hero__deal { flex-direction: row; gap: 10px; align-items: baseline; padding: 14px 20px; }
  .hero__cta-pill { padding: 18px 28px; align-self: flex-start; }
}


/* ══════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════ */
.gallery {
  /* padding y background migrados a Tailwind: bg-white pt-[60px] pb-20 */
  /* overflow: visible en desktop para que los cards inclinados no se corten */
}

.gallery__wrapper { max-width: 100%; padding: 0; }

/* ── Gallery pills ── */
.gallery__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 32px 24px 40px;
}

.gallery__pill {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4B6F61;
  border: 1.5px solid rgba(75,111,97,0.35);
  border-radius: 100px;
  padding: 9px 20px;
  opacity: 0;
  transform: translateY(18px) scale(0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  white-space: nowrap;
}

.gallery__pill--filled {
  background: #2D4A3E;
  color: #fff;
  border-color: #2D4A3E;
}

.gallery__track-outer {
  overflow: visible;
  cursor: grab;
  user-select: none;
  width: 80%;
  margin: 0 auto;
  padding: 40px 0 50px;
}

.gallery__track-outer:active { cursor: grabbing; }

.gallery__track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
  align-items: center;
}

.gallery__slide {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  border-radius: 0;
  overflow: visible;
  position: relative;
  transform-style: preserve-3d;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
}

/* ── Polar Card (polaroid style) ── */
.polar-card {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.13);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.polar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.18);
}

.polar-card__img {
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  position: relative;
  border-radius: 18px 18px 0 0;
}

.polar-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.polar-card__body {
  padding: 16px 20px 20px;
  text-align: center;
}

.polar-card__name {
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 1.6vw, 24px);
  color: #4B6F61;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.polar-card__cta {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border: 1.5px solid rgba(75,111,97,0.55);
  border-radius: 100px;
  padding: 9px 26px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.polar-card__cta:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* ── Polar badge ── */
.polar-badge {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4B6F61;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(75,111,97,0.5), 0 2px 6px rgba(0,0,0,0.15);
}
.polar-badge i {
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

/* badge icon float */
@keyframes pbFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
.pb-icon { animation: pbFloat 2.6s ease-in-out infinite; display: inline-block; }

/* Desktop: all 4 cards visible, hide navigation */
@media (min-width: 769px) {
  .gallery__controls { display: none !important; }
}

.gallery__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.gallery__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.6),
              inset 0 -100px 80px rgba(0,0,0,0.75);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.gallery__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), scale 0.5s ease;
  scale: 1;
}

.gallery__slide:hover .gallery__img-wrap img { scale: 1.05; }

.gallery__slide-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  will-change: transform;
}

.gallery__slide-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: #79b5a6;
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 6px;
}

.gallery__slide-title {
  font-family: 'Catamaran', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery__slide-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.gallery__slide-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #79b5a6;
  text-decoration: none;
  border-bottom: 1px solid rgba(121,181,166,0.5);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.gallery__slide-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* Gallery track perspective for 3D hover */
.gallery__track-outer { perspective: 1200px; }

/* gallery controls layout handled by Tailwind */


.gallery__progress-bar {
  height: 100%;
  background: #79b5a6;
  border-radius: 2px;
  transition: width 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  width: 0%;
}

/* .gallery__nav layout handled by Tailwind */

.gallery__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #111;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}

.gallery__btn svg { width: 18px; height: 18px; }

.gallery__btn:hover {
  background: #79b5a6;
  border-color: #79b5a6;
  color: #fff;
}

.gallery__btn:active  { transform: scale(0.92); }
.gallery__btn:disabled { opacity: 0.3; pointer-events: none; }

/* .gallery__cta handled by Tailwind */


/* ══════════════════════════════════════
   THE VIBE — Photo carousel
══════════════════════════════════════ */
.vibe-section {
  padding: 56px 0 40px;
  /* background migrado a Tailwind: bg-mm-dark */
}

.vibe-section__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 20px;
}

.vibe-section__header .section-title {
  display: inline-block;
  color: #fff;
}

/* Track */
.vibe__track-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

.vibe__track-outer:active { cursor: grabbing; }

.vibe__track {
  display: flex;
  gap: 20px;
  transition: transform 0.72s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.vibe__slide {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.vibe__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vibe__slide:hover img { transform: scale(1.05); }

/* Controls */
.vibe__controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 0 4%;
}

.vibe__counter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}

.vibe__counter-cur  { font-weight: 600; font-size: 15px; color: #fff; }
.vibe__counter-total { color: rgba(255,255,255,0.5); }
.vibe__counter-sep  { width: 24px; height: 1px; background: rgba(255,255,255,0.35); display: block; }

.vibe__progress {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}

.vibe__progress-bar {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: width 0.72s cubic-bezier(0.77, 0, 0.18, 1);
  width: 0%;
}

.vibe__nav { display: flex; gap: 8px; flex-shrink: 0; }

.vibe__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}

.vibe__btn svg { width: 18px; height: 18px; }

.vibe__btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
}

.vibe__btn:active  { transform: scale(0.92); }
.vibe__btn:disabled { opacity: 0.25; pointer-events: none; }

/* Mobile */
@media (max-width: 768px) {
  .vibe-section { padding: 30px 0 40px !important; }
  .vibe-section__header { margin-bottom: 30px; }

  .vibe__track-outer {
    overflow-x: scroll !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: calc(100vw - 40px) !important;
    max-width: none !important;
    margin: 0 20px !important;
    padding: 0 !important;
    border-radius: 14px;
  }

  .vibe__track-outer::-webkit-scrollbar { display: none; }

  .vibe__track {
    display: flex;
    gap: 0;
    padding: 0 !important;
    transform: none !important;
    transition: none !important;
    will-change: unset;
    width: max-content;
  }

  .vibe__slide {
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    aspect-ratio: 4 / 3;
    min-width: 0;
    scroll-snap-align: start;
    overflow: hidden;
  }

  .vibe__slide .polar-card {
    border-radius: 14px;
    overflow: hidden;
  }

  .vibe__slide .polar-card__img {
    aspect-ratio: 4 / 3;
  }

  .vibe__controls { padding: 0 20px; margin-top: 40px !important; margin-bottom: 0; }
}


/* ══════════════════════════════════════
   PROPERTIES (packages-style)
══════════════════════════════════════ */
.properties {
  background: var(--dark);
  padding: 80px 0;
}

/* .properties__intro layout handled by Tailwind */
.properties__intro .section-eyebrow {
  text-align: center;
  text-align-last: center;
  color: rgba(255,255,255,0.7);
}

.properties__intro .section-title {
  text-align: center;
  color: #fff;
}

.properties__intro .section-title::after {
  left: 50%;
  transform: translateX(-50%);
  background:
    linear-gradient(to right, transparent, rgba(255,255,255,0.8) 50%, transparent) no-repeat,
    rgba(255,255,255,0.2);
  background-size: 40% 100%, 100% 100%;
}

/* .properties__lead handled by Tailwind */

.properties__slider-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}

.properties__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.properties__controls { display: none; }
.properties__dots     { display: none; }

.properties__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.properties__btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

.properties__btn:disabled { opacity: 0.25; pointer-events: none; }

/* Prop card */
.prop-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.18);
}

.prop-card__img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.prop-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prop-card:hover .prop-card__img-wrap img { transform: scale(1.06); }

.prop-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--dark);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.prop-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prop-card__name {
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #111;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.prop-card__sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--grey);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.prop-card__features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prop-card__features li {
  font-size: 13px;
  font-weight: 300;
  color: #555;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.prop-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #79b5a6;
}

.prop-card__cta {
  margin-top: auto;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #79b5a6;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 100px;
  text-align: center;
  transition: background 0.25s, transform 0.2s;
}

.prop-card__cta:hover { background: var(--dark); transform: translateY(-1px); }


/* ══════════════════════════════════════
   CARD STACK
══════════════════════════════════════ */
.card-stack { position: relative; padding-top: 20px; }

.cs-card {
  position: sticky;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 -8px 48px rgba(0,0,0,0.18);
  width: calc(100% - 32px);
  max-width: 1260px;
  margin: 0 auto 24px;
  will-change: transform;
  transform-origin: top center;
  height: var(--cs-card-h, calc(100dvh - 220px));
}

.cs-card:nth-child(1) { top: var(--cs-top1, 172px); z-index: 1; }
.cs-card:nth-child(2) { top: var(--cs-top2, 188px); z-index: 2; }
.cs-card:nth-child(3) { top: var(--cs-top3, 204px); z-index: 3; }


/* ══════════════════════════════════════
   CS-ICONS — Card animated icons
══════════════════════════════════════ */
.cs-icons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 14px 0 4px;
  align-items: flex-start;
}

.cs-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cs-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-icon-wrap svg { width: 44px; height: 44px; }

.cs-icon-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  line-height: 1.55;
}

/* ── Plane float ── */
@keyframes csiPlaneFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-5px) rotate(2deg); }
}
.csi-plane { animation: csiPlaneFloat 2.8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

/* ── Clock hands ── */
@keyframes csiClockMin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes csiClockHr {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.csi-clock-min { animation: csiClockMin 4s linear infinite; transform-box: fill-box; transform-origin: 0px 12px; }
.csi-clock-hr  { animation: csiClockHr  12s linear infinite; transform-box: fill-box; transform-origin: 0px 0px; }

/* ── Pin bounce ── */
@keyframes csiPinBounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-6px); }
  60%       { transform: translateY(-3px); }
}
@keyframes csiPinPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.3; }
  40%       { transform: scaleX(0.5); opacity: 0.1; }
}
.csi-pin        { animation: csiPinBounce 2.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center bottom; }
.csi-pin-pulse  { animation: csiPinPulse  2.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

/* ── Waves ── */
@keyframes csiWaveA {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(-5px); }
}
@keyframes csiWaveB {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}
.csi-wave-a { animation: csiWaveA 2.4s ease-in-out infinite; }
.csi-wave-b { animation: csiWaveB 2.4s ease-in-out infinite; }

/* ── Compass needle ── */
@keyframes csiCompassSpin {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(22deg); }
  40%  { transform: rotate(-18deg); }
  60%  { transform: rotate(14deg); }
  80%  { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}
.csi-compass-needle { animation: csiCompassSpin 3.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

/* ── Backpack bounce ── */
@keyframes csiPackBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.csi-pack { animation: csiPackBounce 2.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

/* ── Luggage bounce ── */
@keyframes csiBagBounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-5px); }
  60%       { transform: translateY(-2px); }
}
.csi-bag { animation: csiBagBounce 2.2s ease-in-out infinite; transform-box: fill-box; transform-origin: bottom center; }

/* ── Camera click ── */
@keyframes csiCamClick {
  0%, 100% { transform: scale(1); }
  85%       { transform: scale(0.93); }
  92%       { transform: scale(1.04); }
}
.csi-cam { animation: csiCamClick 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }


/* ══════════════════════════════════════
   LOCATION CARD
══════════════════════════════════════ */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: 0;
}

.location__img-wrap {
  overflow: hidden;
  position: relative;
  min-height: 0;
}

.location__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.location__img-wrap:hover img { transform: scale(1.04); }

.location__content {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 56px 80px;
}

.location__text {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  margin: 24px 0 8px;
}


/* ══════════════════════════════════════
   AIRPORT SHUTTLE — dark green card
══════════════════════════════════════ */
#sec-info .location__content {
  background: #2D4A3E;
}
#sec-info .section-title {
  color: #fff;
}
#sec-info .location__text {
  color: rgba(255,255,255,0.72);
}
#sec-info .cs-icon-wrap {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
#sec-info .cs-icon-label {
  color: rgba(255,255,255,0.8);
}
#sec-info .btn-primary {
  background: transparent!important;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  box-shadow: none;
}
#sec-info .btn-primary:hover {
  background: #fff!important;
  color: #2D4A3E;
  border-color: #fff;
}

/* ══════════════════════════════════════
   VIBES CARDS
══════════════════════════════════════ */
.vibes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: 0;
}

.vibes__img-wrap {
  overflow: hidden;
  position: relative;
  min-height: 0;
}

.vibes__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.vibes__img-wrap:hover img { transform: scale(1.04); }

.vibes__content {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 56px 80px;
}

.vibes__text {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  margin-top: 20px;
}

.vibes__more { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.vibes__more.is-open { max-height: 400px; }

.vibes__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #79b5a6;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(var(--teal-rgb), 0.35);
  padding-bottom: 2px;
  cursor: pointer;
  transition: color 0.2s;
}

.vibes__read-more:hover { color: var(--dark); }

.vibes__read-more svg {
  transition: transform 0.3s;
}

.vibes__read-more[aria-expanded="true"] svg { transform: rotate(180deg); }

.vibes--reverse .vibes__img-wrap { order: 2; }
.vibes--reverse .vibes__content  { order: 1; }


/* ══════════════════════════════════════
   PARALLAX
══════════════════════════════════════ */
.parallax-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image: var(--parallax-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,23,20,0.72) 0%, rgba(7,23,20,0.35) 55%, rgba(7,23,20,0.72) 100%);
}

.parallax-section__content {
  position: relative;
  z-index: 1;
  width: 100%;
}


/* ══════════════════════════════════════
   HORIZONTAL SCROLL
══════════════════════════════════════ */
/* ══════════════════════════════════════
   SPLIT PANELS — Actividades
══════════════════════════════════════ */
.split-wrapper {
  height: 400vh;
  position: relative;
  background: #fff;
}

.split-sticky {
  position: sticky;
  top: var(--split-top, 88px);
  height: var(--split-h, calc(100vh - 88px));
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  padding: 16px 16px 16px;
  box-sizing: border-box;
}

.split-panels-row {
  display: flex;
  flex: 1;
  min-height: 0;
  gap: 6px;
}

.split-panel {
  position: relative;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  width: 0;
  border-radius: 18px;
}

#sp1 { width: 100%; }

.split-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  will-change: transform;
}

.split-panel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.4)  45%,
    rgba(0,0,0,0.08) 100%
  );
  pointer-events: none;
}

.split-panel__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.split-title {
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: clamp(14px, 1.8vw, 42px);
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.split-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  max-width: 340px;
}

.split-icons {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.split-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.split-icon-svg {
  width: 34px;
  height: 34px;
}

.split-icon-label {
  font-family: 'Catamaran', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.act-destinations {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  height: 88px;
}

.act-dest-btn {
  flex: 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease, filter 0.3s ease;
}

.act-dest-btn:nth-child(1) { background: #2D4A3E; }
.act-dest-btn:nth-child(2) { background: #4B6F61; }
.act-dest-btn:nth-child(3) { background: #79B5A6; }
.act-dest-btn:nth-child(4) { background: #926C5B; }

.act-dest-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
  filter: brightness(1.12);
}

.act-dest-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  width: 100%;
}

.act-dest-icon {
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
  transition: color 0.25s ease, transform 0.3s ease;
}

.act-dest-btn:hover .act-dest-icon {
  color: #fff;
  transform: scale(1.15);
}

.act-dest-name {
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  flex: 1;
}

.act-dest-arrow {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

.act-dest-btn:hover .act-dest-arrow {
  opacity: 1;
  transform: translateX(3px);
}


/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi {
  /* background y overflow migrados a Tailwind: bg-[#f4faf8] overflow-hidden */
  padding: 56px 32px;
}

.testi__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: 1fr auto;
  column-gap: 48px;
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
}

.testi__left {
  grid-column: 2;
  grid-row: 1;
  padding-top: 8px;
}

.testi__left .sec-header {
  margin: 0; padding: 0; width: 100%;
}

.testi__left .sec-header__left,
.testi__left .sec-header__right { width: 100%; }

.testi__controls {
  grid-column: 2;
  grid-row: 2;
  padding-top: 24px;
}

.testi__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #111;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.testi__btn:hover {
  background: #79b5a6;
  border-color: #79b5a6;
  color: #fff;
}

.testi__btn:disabled { opacity: 0.3; pointer-events: none; }

.testi__right {
  grid-column: 1;
  grid-row: 1 / 3;
  overflow: hidden;
  min-width: 0;
}

.testi__track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi__card {
  flex: 0 0 calc((100% - 20px) / 2);
  background: #fff;
  border: 1px solid rgba(var(--teal-rgb), 0.15);
  border-radius: 20px;
  padding: 28px 28px 26px;
  box-shadow: 0 4px 24px rgba(var(--teal-rgb), 0.07);
  display: flex;
  flex-direction: column;
}

.testi__quote {
  font-size: 42px;
  line-height: 0.6;
  color: #79b5a6;
  font-family: Georgia, serif;
  margin-bottom: 14px;
}

.testi__text {
  font-size: 14px;
  font-weight: 300;
  color: #444;
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1;
}

.testi__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #79b5a6;
  color: #fff;
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.testi__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.testi__author span {
  font-size: 12px;
  font-weight: 300;
  color: #999;
  letter-spacing: 0.05em;
}


/* ══════════════════════════════════════
   AWARDS / PRESS
══════════════════════════════════════ */
.awards {
  /* background y padding migrados a Tailwind: bg-mm-dark py-20 */
}

.awards__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}

.awards__inner .sec-header {
  padding-bottom: 56px;
  margin: 0;
}

/* .awards__logos layout handled by Tailwind */
.awards__logos { max-width: 70%; }

.awards__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.75;
  transition: opacity 0.3s, transform 0.3s;
}

.awards__logo:hover { opacity: 1; transform: scale(1.05); }

.awards__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.awards__logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}


/* ══════════════════════════════════════
   ACTIVITIES SLIDER (blog-sl style)
══════════════════════════════════════ */
.acts {
  background: var(--cream);
  padding: 80px 0;
  overflow: hidden;
}

.acts__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  padding: 0 32px;
  max-width: 1260px;
  margin: 0 auto;
}

.acts__left { }

.acts__title {
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.acts__desc {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* .acts__controls layout handled by Tailwind */

.acts__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #111;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.acts__btn:hover {
  background: #79b5a6;
  border-color: #79b5a6;
  color: #fff;
}

.acts__btn:disabled { opacity: 0.3; pointer-events: none; }

.acts__right { overflow: hidden; min-width: 0; }

.acts__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.act-card {
  flex: 0 0 calc((100% - 48px) / 3);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.act-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.act-card__img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.act-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.act-card:hover .act-card__img-wrap img { transform: scale(1.06); }

.act-card__body { padding: 20px 22px 24px; }

.act-card__tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #79b5a6;
  margin-bottom: 8px;
  display: block;
}

.act-card__title {
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #111;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.act-card__text {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.65;
  margin-bottom: 16px;
}

.act-card__cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #79b5a6;
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--teal-rgb), 0.35);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.act-card__cta:hover { color: var(--dark); }

/* Mobile controls */
.acts__controls--mob { display: none; }


/* ══════════════════════════════════════
   UBICACIONES — Mapa interactivo
══════════════════════════════════════ */
.loc-section {
  padding: 64px 0 0;
  /* background migrado a Tailwind: bg-white */
}

.loc-section__header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.loc-section__title { color: var(--dark); }

.loc-section__sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #999;
  margin-top: 8px;
  letter-spacing: 0.03em;
  text-align: center;
  text-align-last: center;
}

.loc-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.loc-tab {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  border: 1.5px solid rgba(75,111,97,0.4);
  border-radius: 100px;
  padding: 11px 28px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.loc-tab--active,
.loc-tab:hover {
  background: #4b6f61;
  color: #fff;
  border-color: #4b6f61;
}

.loc-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  background: #f5f8f7;
  padding: 22px 40px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.loc-info__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b6f61;
}

.loc-info__item svg { flex-shrink: 0; color: #79b5a6; }

.loc-map {
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .loc-section { padding: 45px 0 0; }
  .loc-info { gap: 20px; padding: 18px 20px; flex-direction: column; align-items: center; text-align: center; }
  .loc-map { height: 320px; }

  .loc-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 20px;
    margin-bottom: 28px;
  }

  .loc-tab {
    height: 110px;
    border-radius: 18px;
    border: none !important;
    outline: none !important;
    color: #fff !important;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.75);
    background-size: cover !important;
    background-position: center !important;
    padding: 0;
  }

  .loc-tab[data-loc="cancun"] {
    background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.68)),
                url('../assets/images/locations/Cancun1Mobile.webp') center/cover no-repeat;
  }
  .loc-tab[data-loc="tulum"] {
    background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.68)),
                url('../assets/images/locations/Tulum1.webp') center/cover no-repeat;
  }
  .loc-tab[data-loc="loscabos"] {
    background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.68)),
                url('../assets/images/locations/Cabos.webp') center/cover no-repeat;
  }
  .loc-tab[data-loc="islamujeres"] {
    background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.68)),
                url('../assets/images/locations/Isla.webp') center/cover no-repeat;
  }

  .loc-tab--active {
    box-shadow: none;
    opacity: 1;
  }
  .loc-tab:hover { background-color: transparent; }
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #4b6f61;
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* .footer__bar, .footer__copy, .footer__legal layout handled by Tailwind */

.footer__legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal a:hover { color: #fff; }

/* .footer__social layout handled by Tailwind */

.footer__social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer__social a svg { width: 14px; height: 14px; }

.footer__social a:hover {
  background: #79b5a6;
  border-color: #79b5a6;
  color: #fff;
}


/* ══════════════════════════════════════
   AWARDS PHOTO CAROUSEL
══════════════════════════════════════ */
.awards__photos-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  width: 100%;
}
.awards__photos-outer:active { cursor: grabbing; }

.awards__photos-track {
  display: flex;
  gap: 20px;
  transition: transform 0.72s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

@media (max-width: 768px) {
  .awards__photos-outer { width: 100vw; margin-left: -20px; }
  .awards__photos-track .vibe__slide {
    flex: 0 0 82vw;
    width: 82vw;
    height: 82vw;
    aspect-ratio: 1 / 1;
  }
}


/* ══════════════════════════════════════
   AMENIDADES — Animated Icon Grid
══════════════════════════════════════ */
.amenities-section {
  padding: 60px 0 72px;
}

.amenities-section__header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 20px;
}

.amenities-section__header .section-title {
  color: var(--dark);
}

.amenities-section__sub {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #999;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}

.amenity-card {
  /* background, border-radius, display:flex, flex-direction:column, align-items:center migrados a Tailwind */
  /* bg-white rounded-[20px] flex flex-col items-center */
  padding: 28px 16px 22px;
  gap: 14px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(121,181,166,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(75,111,97,0.13), 0 2px 8px rgba(0,0,0,0.06);
}

.amenity-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.amenity-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  line-height: 1.45;
}

/* ── SVG animated elements: proper transform context ── */
.drum-inner,
.wheel-r,
.wheel-f,
.luggage-body,
.spark-1, .spark-2, .spark-3, .spark-4,
.steam-1, .steam-2, .steam-3,
.cowork-dot, .cowork-dot-2, .cowork-dot-3,
.bubble-1, .bubble-2, .bubble-3,
.wave-line, .wave-line-2 {
  transform-box: fill-box;
  transform-origin: center;
}

/* ── Keyframes ── */
@keyframes wifiPing {
  0%, 100% { opacity: 0.15; }
  50%       { opacity: 1; }
}

@keyframes steamRise {
  0%   { transform: translateY(0);    opacity: 0.85; }
  100% { transform: translateY(-9px); opacity: 0;    }
}

@keyframes drumSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes bubbleFloat {
  0%   { transform: translateY(0);     opacity: 0.85; }
  100% { transform: translateY(-10px); opacity: 0;    }
}

@keyframes sparkleFlash {
  0%, 100% { opacity: 0;   transform: scale(0.4); }
  50%       { opacity: 1;   transform: scale(1);   }
}

@keyframes waveSway {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(3px); }
}

@keyframes luggageBounce {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(-5px); }
}

@keyframes coworkBlink {
  0%, 100% { opacity: 0.2; transform: scale(0.65); }
  50%       { opacity: 1;   transform: scale(1);    }
}

/* WiFi: always-on ambient pulse */
.wifi-arc-1 { animation: wifiPing 2s ease-in-out 0s   infinite; }
.wifi-arc-2 { animation: wifiPing 2s ease-in-out 0.4s infinite; }
.wifi-arc-3 { animation: wifiPing 2s ease-in-out 0.8s infinite; }

/* All always-on */
.steam-1 { animation: steamRise 1.2s ease-out 0s    infinite; }
.steam-2 { animation: steamRise 1.2s ease-out 0.22s infinite; }
.steam-3 { animation: steamRise 1.2s ease-out 0.44s infinite; }

.drum-inner { animation: drumSpin 1.4s linear infinite; }

.wheel-r { animation: wheelSpin 0.72s linear infinite; }
.wheel-f { animation: wheelSpin 0.72s linear infinite; }

.bubble-1 { animation: bubbleFloat 1s ease-out 0s    infinite; }
.bubble-2 { animation: bubbleFloat 1s ease-out 0.28s infinite; }
.bubble-3 { animation: bubbleFloat 1s ease-out 0.56s infinite; }

.spark-1 { animation: sparkleFlash 0.85s ease-in-out 0s    infinite; }
.spark-2 { animation: sparkleFlash 0.85s ease-in-out 0.21s infinite; }
.spark-3 { animation: sparkleFlash 0.85s ease-in-out 0.42s infinite; }
.spark-4 { animation: sparkleFlash 0.85s ease-in-out 0.63s infinite; }

.wave-line  { animation: waveSway 0.8s ease-in-out 0s    infinite; }
.wave-line-2 { animation: waveSway 0.8s ease-in-out 0.15s infinite; }

.luggage-body { animation: luggageBounce 0.7s ease-in-out infinite; }

.cowork-dot   { animation: coworkBlink 1s ease-in-out 0s    infinite; }
.cowork-dot-2 { animation: coworkBlink 1s ease-in-out 0.33s infinite; }
.cowork-dot-3 { animation: coworkBlink 1s ease-in-out 0.66s infinite; }


/* ══════════════════════════════════════
   MOBILE @media (max-width: 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Header */
  .header__nav   { display: none; }
  .header__actions { display: none; }
  .header__burger  { display: flex; }
  .header__inner   { padding: 10px 20px; }
  .header__logo    { height: 32px; }

  /* Hero */
  .hero__scroll { display: none; }

  /* Gallery */
  .gallery {
    padding: 32px 0 48px!important;
    overflow: hidden; /* mobile slider necesita clip */
  }

  /* Awards style: overflow hidden + translateX, padding-left da margen uniforme */
  /* Anular el padding: 40px 0 50px del desktop — solo dejar left para el margen inicial */
  .gallery__track-outer {
    overflow: hidden !important;
    padding: 0;
    width: calc(100vw - 40px);
    margin: 0 20px;
    border-radius: 14px;
    cursor: grab;
    user-select: none;
  }
  .gallery__track-outer:active { cursor: grabbing; }

  .gallery__track {
    display: flex;
    gap: 10px;
    padding: 0 !important;
    transform: none;
    transition: none !important;
    will-change: transform;
    touch-action: pan-y;
  }

  .gallery__slide {
    flex: 0 0 100%;
    min-width: 0;
    padding-top: 0;
    gap: 0;
  }

  .polar-card { border-radius: 0; }
  .polar-card__img { aspect-ratio: 4 / 3; }

  .gallery__img-wrap { aspect-ratio: 2 / 3; }
  .gallery__img-wrap::after { box-shadow: inset 0 -100px 80px rgba(0,0,0,0.75); }

  .gallery__controls { padding: 0 20px; }

  .gallery__cta { margin-top: 28px; }

  /* Sec-header */
  .sec-header {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 48px 20px 30px;
    max-width: 100%;
  }

  .sec-header__left  { width: 100%; text-align: center; }
  .sec-header__right { max-width: 100%; width: 100%; text-align: center; }

  .sec-header__title   { text-align: center; }
  .sec-header__eyebrow { text-align: center; }

  .sec-header__left {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sec-header__divider {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--mm-teal, #79B5A6);
    opacity: 0.6;
    margin: 10px 0 20px;
    border-radius: 2px;
  }

  .sec-header__desc { text-align: justify; }

  .sec-header--column .sec-header__title  { text-align: left; }
  .sec-header--column .sec-header__eyebrow { text-align: left; }
  .testi__left .sec-header__left { width: 100%; align-items: stretch; }
  .testi__left .sec-header__title { text-align: center !important; width: 100%; }

  /* Properties */
  .properties { padding: 56px 0; }

  .properties__slider-wrap { padding: 0; overflow: hidden; }

  /* Gallery pills: carrusel horizontal */
  body { overflow-x: hidden; }

  .gallery__pills-outer {
    padding-left: 20px;
  }

  .gallery__pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 8px 0 44px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .gallery__pills::-webkit-scrollbar { display: none; }
  .gallery__pill { scroll-snap-align: start; flex-shrink: 0; }

  .properties__track {
    display: flex;
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  }

  .prop-card {
    flex: 0 0 calc(100vw - 40px);
    margin: 0 8px;
    transform: none !important;
  }

  .properties__controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }

  .properties__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .properties__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
  }

  .properties__dot--active {
    background: #fff;
    transform: scale(1.3);
  }

  /* Card stack: remove sticky, scale, blur on mobile */
  .card-stack { padding-top: 40px !important; }

  .cs-card {
    position: relative;
    top: 0 !important;
    height: auto;
    border-radius: 20px;
    margin: 0 20px 50px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.14);
  }

  .cs-card .cs-icons { display: none; }

  /* Location & Vibes: stack vertically */
  .location {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .location__img-wrap { height: 200px; }

  .location__content {
    padding: 28px 20px;
    text-align: center;
  }
  .location__content .grid {
    justify-items: center;
  }

  .vibes {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .vibes__img-wrap { min-height: 200px; order: 1 !important; }
  .vibes__content  { order: 2 !important; padding: 28px 20px; text-align: center; }
  .vibes__content .grid { justify-items: center; }

  /* Parallax */
  .parallax-section {
    background-attachment: scroll;
    border-radius: 20px;
    margin: 0 12px;
    overflow: hidden;
  }

  /* Split panels → activity list on mobile */
  .split-mob-hdr {
    display: block;
    padding: 36px 20px 16px;
    text-align: center;
  }
  .split-mob-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mm-teal, #79B5A6);
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .split-mob-title {
    font-family: 'Catamaran', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a3228;
    line-height: 1;
  }

  .split-wrapper {
    height: auto;
    background: #f7f4ef;
  }

  .split-sticky {
    position: relative;
    top: auto;
    height: auto;
    flex-direction: column;
    gap: 0;
    padding: 0 20px 24px;
  }

  .split-panels-row {
    flex-direction: column;
    gap: 0;
  }

  .split-panel,
  #sp1 {
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    border-bottom: 1px solid rgba(26,50,40,0.08);
  }

  .split-panel__bg {
    position: relative !important;
    inset: auto !important;
    width: 88px !important;
    height: 88px !important;
    min-width: 88px;
    border-radius: 16px;
    flex-shrink: 0;
    transform: none !important;
  }

  .split-panel__shade { display: none; }

  .split-panel__body {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    padding: 0 !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 5px !important;
    flex: 1;
  }

  .split-title {
    font-size: 15px !important;
    color: #1a3228 !important;
    white-space: normal;
    letter-spacing: 0.05em;
    line-height: 1.2;
  }

  .split-desc {
    font-size: 12px;
    color: rgba(26,50,40,0.55) !important;
    max-width: none !important;
    line-height: 1.55 !important;
  }

  .split-icons { display: none !important; }

  .act-destinations { display: none; }

  /* Testimonials */
  .testi {
    padding: 56px 20px 48px !important;
    margin-top: 0;
    margin-bottom: 0 !important;
  }

  .testi__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .testi__left { order: 1; width: 100%; }
  .testi__right { order: 2; }
  .testi__controls { order: 3; display: flex !important; justify-content: center !important; width: 100%; padding-top: 4px; gap: 25px; }

  .testi__card {
    flex: 0 0 calc(100vw - 64px);
  }

  /* Awards */
  .awards { padding: 32px 20px 56px !important; }

  .awards__inner .sec-header { margin: 0; padding: 15px 20px 24px !important; }
  .awards__inner .sec-header__title { margin-bottom: 20px; }

  .awards__logos { max-width: 100%; gap: 32px; }

  /* Activities */
  .acts { padding: 56px 0; }

  .acts__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
  }

  .acts__title { font-size: 28px; }

  .acts__controls { display: none; }
  .acts__controls--mob {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .act-card {
    flex: 0 0 calc(80vw);
  }

  /* Footer */
  .footer__bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }

  /* Amenidades */
  .amenities-section { padding: 20px 0 24px; }
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    padding: 0 16px;
    gap: 12px;
  }
  .amenity-card {
    padding: 18px 8px 14px;
    gap: 10px;
    border-radius: 14px;
  }
  .amenity-icon { width: 40px; height: 40px; }
  .amenity-label { font-size: 8px; letter-spacing: 0.05em; }

}

/* ══════════════════════════════════════════════════
   ACTIVITY CARD ICONS
══════════════════════════════════════════════════ */
.act-icons {
  display: flex;
  gap: 28px;
  margin-top: 24px;
}
.act-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.act-icon-svg {
  width: 48px;
  height: 48px;
  overflow: visible;
}
.act-icon-label {
  font-family: 'Catamaran', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* — Salsa: note float — */
@keyframes actNoteFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.act-note-small { animation: actNoteFloat 2.4s ease-in-out infinite; }

/* — Salsa: step rock — */
@keyframes actStepL {
  0%, 100% { transform: rotate(0deg); }
  50%       { transform: rotate(-12deg); }
}
@keyframes actStepR {
  0%, 100% { transform: rotate(0deg); }
  50%       { transform: rotate(12deg); }
}
.act-step-L { transform-box: fill-box; transform-origin: bottom center; animation: actStepL 1.6s ease-in-out infinite; }
.act-step-R { transform-box: fill-box; transform-origin: bottom center; animation: actStepR 1.6s ease-in-out infinite 0.8s; }

/* — Salsa: flame — */
@keyframes actFlame {
  0%, 100% { transform: scaleY(1)   scaleX(1); }
  33%       { transform: scaleY(1.07) scaleX(0.96); }
  66%       { transform: scaleY(0.96) scaleX(1.03); }
}
.act-flame-outer { transform-box: fill-box; transform-origin: bottom center; animation: actFlame 1.2s ease-in-out infinite; }
.act-flame-inner { transform-box: fill-box; transform-origin: bottom center; animation: actFlame 1.2s ease-in-out infinite 0.3s; }

/* — Yoga: sun spin — */
@keyframes actSunSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.act-sun-rays { transform-box: fill-box; transform-origin: center; animation: actSunSpin 12s linear infinite; }
@keyframes actSunPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.12); opacity: 0.85; }
}
.act-sun-core { transform-box: fill-box; transform-origin: center; animation: actSunPulse 3s ease-in-out infinite; }

/* — Yoga: wave — */
@keyframes actWaveA {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(-6px); }
}
@keyframes actWaveB {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(6px); }
}
.act-wave-a { animation: actWaveA 2.4s ease-in-out infinite; }
.act-wave-b { animation: actWaveB 2.4s ease-in-out infinite 0.6s; }

/* — Yoga: lotus breath — */
@keyframes actBreath {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
.act-lotus-body { transform-box: fill-box; transform-origin: center; animation: actBreath 4s ease-in-out infinite; }

/* — Art: brush stroke — */
@keyframes actBrush {
  0%, 100% { transform: rotate(0deg) translateX(0); }
  30%       { transform: rotate(-8deg) translateX(-3px); }
  70%       { transform: rotate(6deg)  translateX(2px); }
}
.act-brush-grp { transform-box: fill-box; transform-origin: bottom center; animation: actBrush 2.8s ease-in-out infinite; }
@keyframes actBrushStroke {
  0%, 100% { opacity: 0.6; stroke-dashoffset: 0; }
  50%       { opacity: 1;   stroke-dashoffset: -4px; }
}
.act-brush-stroke { stroke-dasharray: 12; animation: actBrushStroke 2s ease-in-out infinite; }

/* — Art: sparkle — */
@keyframes actSparkle {
  0%, 100% { transform: scale(1)    rotate(0deg); opacity: 1; }
  50%       { transform: scale(1.14) rotate(22deg); opacity: 0.8; }
}
.act-spark-shape { transform-box: fill-box; transform-origin: center; animation: actSparkle 2s ease-in-out infinite; }
@keyframes actSparkDot {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%       { opacity: 0.9; transform: scale(1.3); }
}
.act-spark-dot1 { transform-box: fill-box; transform-origin: center; animation: actSparkDot 1.8s ease-in-out infinite; }
.act-spark-dot2 { transform-box: fill-box; transform-origin: center; animation: actSparkDot 1.8s ease-in-out infinite 0.9s; }

/* — Art: palette dots — */
@keyframes actDotPop {
  0%, 100% { transform: scale(1);   opacity: 0.9; }
  50%       { transform: scale(1.4); opacity: 1; }
}
.act-dot-pop1 { transform-box: fill-box; transform-origin: center; animation: actDotPop 1.8s ease-in-out infinite; }
.act-dot-pop2 { transform-box: fill-box; transform-origin: center; animation: actDotPop 1.8s ease-in-out infinite 0.6s; }
.act-dot-pop3 { transform-box: fill-box; transform-origin: center; animation: actDotPop 1.8s ease-in-out infinite 1.2s; }


/* ══════════════════════════════════════════════════
   SEARCH BAR (Airbnb-style)
══════════════════════════════════════════════════ */
.mm-bbar-sentinel { height: 1px; pointer-events: none; }

/* ── Grey placeholder image (used everywhere images will come from API) ── */
.mm-ph-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #d1d5db;
  border-radius: 10px;
  flex-shrink: 0;
}

.mm-bbar-wrap {
  position: sticky;
  top: 55px;
  z-index: 80;
  display: flex;
  justify-content: center;
  padding: 0 32px;
  margin-top: -44px;
  transition: padding 0.5s cubic-bezier(0.16,1,0.3,1),
              background 0.4s ease,
              box-shadow 0.4s ease;
}
.mm-bbar-wrap.is-stuck {
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.mm-bbar-wrap.is-stuck .mm-srch {
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
}

/* ── Promo code field ── */
.mm-srch__field--promo {
  flex: 0.7;
  min-width: 100px;
  display: flex;
  align-items: center;
}

/* Collapsed trigger — subtle text link */
.mm-srch__promo-trigger {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #a8a8a8;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
  text-decoration-color: #c8c8c8;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.mm-srch__promo-trigger:hover {
  color: var(--dark);
  text-decoration-color: #79b5a6;
}

/* Reveal panel */
.mm-srch__promo-reveal {
  display: none;
  flex-direction: column;
  width: 100%;
  animation: promoReveal 0.2s ease;
}
.mm-srch__promo-reveal.is-open { display: flex; }
@keyframes promoReveal {
  from { opacity: 0; transform: translateX(-4px); }
  to   { opacity: 1; transform: translateX(0); }
}

.mm-srch__promo-input {
  border: none; outline: none; background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: #1a1a1a; width: 100%;
  padding: 0; cursor: text;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.mm-srch__promo-input::placeholder {
  font-weight: 400; font-size: 0.8rem;
  color: #b0b0b0; text-transform: none; letter-spacing: 0;
}

/* Mobile sheet promo */
.mm-sheet-section--promo { padding-top: 4px; }
.mm-sheet-lbl--opt { font-weight: 300; font-size: 0.7rem; color: #b0b0b0; }
.mm-sheet-promo-input {
  width: 100%; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px; padding: 10px 14px;
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600;
  color: #1a1a1a; outline: none; background: #f9f9f9;
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 8px;
}
.mm-sheet-promo-input::placeholder {
  font-weight: 400; text-transform: none; letter-spacing: 0; color: #b0b0b0;
}
.mm-sheet-promo-input:focus { border-color: #79b5a6; background: #fff; }

/* ── Desktop pill ── */
.mm-srch {
  width: 100%;
  max-width: 860px;
  height: 66px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  position: relative;
  transition: box-shadow 0.3s;
}
.mm-srch:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.24); }

.mm-srch__field {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 22px;
  cursor: pointer;
  border-radius: 50px;
  transition: background 0.18s;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  min-width: 0;
}
.mm-srch__field:hover { background: #f2f2f2; }
.mm-srch__field.is-open { background: #f2f2f2; z-index: 201; }
.mm-srch__field--where { padding-left: 28px; flex: 1.4; }
.mm-srch__field--guests { flex: 1.1; }

.mm-srch__lbl {
  font-family: 'Catamaran', sans-serif;
  font-weight: 800;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 4px;
  white-space: nowrap;
}
.mm-srch__val {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #717171;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mm-srch__val.has-val { color: #1a1a1a; font-weight: 600; }

.mm-srch__divider {
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.mm-srch__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #4B6F61;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 22px;
  margin: 8px 8px 8px 4px;
  cursor: pointer;
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(75,111,97,0.35);
}
.mm-srch__cta:hover { background: #79B5A6; transform: scale(1.04); box-shadow: 0 6px 24px rgba(75,111,97,0.5); }
.mm-srch__cta svg { flex-shrink: 0; }

/* ── Dropdowns ── */
.mm-srch__drop {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 200;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.22);
  overflow: hidden;
}
.mm-srch__drop.is-open {
  display: block;
  animation: srchDropIn 0.22s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes srchDropIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mm-drop--locs { min-width: 340px; }
.mm-drop-locs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px; }
.mm-drop-loc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 10px 10px 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.mm-drop-loc img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 10px; }
.mm-drop-loc span { font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 600; color: #1a1a1a; }
.mm-drop-loc:hover { border-color: #4B6F61; background: #f0f7f5; }
.mm-drop-loc.is-sel { border-color: #4B6F61; background: #e8f4f0; }

.mm-drop--cal { min-width: 310px; }
.mm-drop--guests { min-width: 300px; right: 0; left: auto; }

/* ── Mini Calendar ── */
.mm-mini-cal { padding: 16px; }
.mm-mini-cal__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mm-mini-cal__nav-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: none; cursor: pointer;
  color: #1a1a1a; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.mm-mini-cal__nav-btn:hover { background: #f0f0f0; }
.mm-mini-cal__month { font-family: 'Catamaran', sans-serif; font-weight: 800; font-size: 0.9rem; color: #1a1a1a; }
.mm-mini-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.mm-mini-cal__dow {
  font-family: 'Catamaran', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #717171; text-align: center; padding-bottom: 6px;
}
.mm-mini-cal__day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem; font-weight: 500; color: #1a1a1a;
  border-radius: 50%; cursor: pointer;
  transition: background 0.12s; position: relative;
}
.mm-mini-cal__day:hover:not(.is-disabled):not(.is-start):not(.is-end) { background: #ececec; }
.mm-mini-cal__day.is-disabled { color: #ccc; cursor: not-allowed; pointer-events: none; }
.mm-mini-cal__day.is-empty { pointer-events: none; }
.mm-mini-cal__day.is-start,
.mm-mini-cal__day.is-end { background: #4B6F61 !important; color: #fff; font-weight: 700; }
.mm-mini-cal__day.is-in-range { background: rgba(121,181,166,0.22); border-radius: 0; }
.mm-mini-cal__day.is-today:not(.is-start):not(.is-end)::after {
  content: ''; position: absolute; bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px; border-radius: 50%; background: #4B6F61;
}

/* ── Guest Counter ── */
.mm-gcount { padding: 8px 20px 16px; }
.mm-gcount__row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mm-gcount__row:last-child { border-bottom: none; }
.mm-gcount__name { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600; color: #1a1a1a; display: block; }
.mm-gcount__sub { font-family: 'Poppins', sans-serif; font-size: 0.72rem; color: #717171; display: block; }
.mm-gcount__ctrl { display: flex; align-items: center; gap: 12px; }
.mm-gcount__btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.2);
  background: none; cursor: pointer; color: #717171;
  font-size: 1.1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
.mm-gcount__btn:hover:not(:disabled) { border-color: #1a1a1a; color: #1a1a1a; }
.mm-gcount__btn:disabled { border-color: rgba(0,0,0,0.1); color: rgba(0,0,0,0.2); cursor: not-allowed; }
.mm-gcount__num { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; color: #1a1a1a; min-width: 20px; text-align: center; }

/* ── Mobile pill ── */
.mm-srch-mob {
  display: none;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: none;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.16);
  padding: 10px 14px 10px 12px;
  cursor: pointer;
  width: 100%;
  max-width: 440px;
  transition: box-shadow 0.2s;
}
.mm-srch-mob:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.22); }
.mm-srch-mob__icon {
  width: 38px; height: 38px;
  background: #f0f7f5; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #4B6F61; font-size: 1.1rem; flex-shrink: 0;
}
.mm-srch-mob__text { flex: 1; min-width: 0; }
.mm-srch-mob__main { font-family: 'Poppins', sans-serif; font-size: 0.84rem; font-weight: 700; color: #1a1a1a; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mm-srch-mob__sub { font-family: 'Poppins', sans-serif; font-size: 0.71rem; color: #717171; display: block; }
.mm-srch-mob__arrow { width: 30px; height: 30px; border: 1.5px solid rgba(0,0,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1a1a1a; flex-shrink: 0; font-size: 0.85rem; }

/* ── Bottom Sheet ── */
.mm-srch-sheet { display: none; position: fixed; inset: 0; z-index: 999; }
.mm-srch-sheet.is-open { display: block; }
.mm-srch-sheet__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); animation: sheetBdIn 0.3s ease; }
@keyframes sheetBdIn { from { opacity: 0; } to { opacity: 1; } }
.mm-srch-sheet__panel {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: #fff; border-radius: 28px 28px 0 0;
  max-height: 92vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
  animation: sheetIn 0.38s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes sheetIn { from { transform: translateY(100%); } to { transform: translateY(0); } }
.mm-srch-sheet__handle { width: 36px; height: 4px; background: rgba(0,0,0,0.15); border-radius: 2px; margin: 14px auto 0; }
.mm-srch-sheet__hdr { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px 8px; }
.mm-srch-sheet__hdr h3 { font-family: 'Catamaran', sans-serif; font-weight: 900; font-size: 1.15rem; color: #1a1a1a; margin: 0; }
.mm-srch-sheet__close { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.15); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #1a1a1a; transition: background 0.15s; }
.mm-srch-sheet__close:hover { background: #f0f0f0; }
.mm-sheet-section { padding: 16px 20px; border-top: 1px solid rgba(0,0,0,0.06); }
.mm-sheet-lbl { display: block; font-family: 'Catamaran', sans-serif; font-weight: 900; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: #1a1a1a; margin-bottom: 12px; }
.mm-sheet-locs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mm-sheet-loc { display: flex; flex-direction: column; align-items: center; gap: 6px; background: none; border: 1.5px solid rgba(0,0,0,0.08); border-radius: 14px; padding: 8px 8px 10px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.mm-sheet-loc img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 10px; }
.mm-sheet-loc span { font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 600; color: #1a1a1a; }
.mm-sheet-loc.is-sel { border-color: #4B6F61; background: #e8f4f0; }
.mm-sheet-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.mm-sheet-date { background: #f7f7f7; border-radius: 12px; padding: 12px 14px; cursor: pointer; border: 1.5px solid transparent; transition: border-color 0.15s; }
.mm-sheet-date.is-active { border-color: #4B6F61; background: #f0f7f5; }
.mm-sheet-date__lbl { display: block; font-family: 'Catamaran', sans-serif; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: #717171; margin-bottom: 4px; }
.mm-sheet-date__val { font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600; color: #1a1a1a; }
.mm-sheet-submit { display: flex; align-items: center; justify-content: center; gap: 10px; width: calc(100% - 40px); margin: 4px 20px 28px; padding: 16px; background: #4B6F61; color: #fff; border: none; border-radius: 50px; font-family: 'Catamaran', sans-serif; font-weight: 900; font-size: 1rem; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; box-shadow: 0 4px 20px rgba(75,111,97,0.4); }
.mm-sheet-submit:active { background: #79B5A6; }

@media (max-width: 900px) {
  .mm-bbar-wrap { padding: 0 20px; margin-top: -36px; }
  .mm-bbar-wrap.is-stuck { padding: 0 16px; }
}


/* ══════════════════════════════════════════════════
   BOOK NOW FAB
══════════════════════════════════════════════════ */
.mm-fab {
  display: none !important;
  align-items: center;
  gap: 10px;
  background: #01818e;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 24px 14px 20px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(1,129,142,0.45);
  font-family: 'Catamaran', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mm-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 40px rgba(1,129,142,0.55); }
.mm-fab__ring {
  position: absolute;
  inset: -6px;
  border-radius: 60px;
  border: 2px solid rgba(1,129,142,0.5);
  animation: fabRingPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes fabRingPulse {
  0%   { transform: scale(1);    opacity: 0.8; }
  80%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
.mm-fab__icon { flex-shrink: 0; }
.mm-fab__label { white-space: nowrap; }

@media (max-width: 768px) {
  .mm-fab { display: flex; }
}


/* ══════════════════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════════════════ */
.mm-bottom-nav       { display: none; }
.split-mob-hdr       { display: none; }
.dest-pills          { display: none; }
.mm-bbar__mob-panel  { display: none; }
.mm-bbar__mob-toggle { display: none; }

@media (max-width: 768px) {
  /* ── Motor mobile: siempre expandido, colapsa al hacer sticky ── */
  /* Motor: anular colores is-stuck en mobile */
  .mm-bbar-wrap.is-stuck { background: transparent !important; box-shadow: none !important; }
  .mm-bbar-wrap.is-stuck .mm-bbar { background: #fff !important; border-radius: 16px 16px 0 0 !important; max-width: 80% !important; }
  .mm-bbar-wrap.is-stuck .mm-bbar__brand { background: var(--mm-teal, #79B5A6) !important; }

  .mm-bbar-wrap {
    position: relative !important;
    z-index: 10;
    padding: 0;
    margin-top: -170px;
    flex-direction: column;
    align-items: center;
    display: none!important;
  }
  .mm-bbar-wrap .mm-bbar,
  .mm-bbar-wrap .mm-bbar__mob-panel { width: 80%; }


  /* Barra: solo header teal centrado */
  .mm-bbar {
    flex-direction: column !important;
    height: auto;
    border-radius: 16px 16px 0 0;
  }
  .mm-bbar__fields { display: none; }
  .mm-bbar__btn   { display: none; }
  .mm-bbar__mob-toggle { display: none; }
  .mm-bbar__brand {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    text-align: center;
    gap: 2px;
  }
  .mm-bbar__brand-pre  { font-size: 0.65rem; letter-spacing: 0.22em; }
  .mm-bbar__brand-main { font-size: 1.9rem; letter-spacing: 0.04em; }

  /* Panel siempre visible en estado no-stuck */
  .mm-bbar__mob-panel {
    display: block;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    overflow: visible;
  }


  .mm-bbar__mob-field {
    padding: 14px 20px 6px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .mm-bbar__mob-label {
    display: block;
    font-family: 'Catamaran', sans-serif;
    font-weight: 800;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #01818e;
    margin-bottom: 8px;
  }
  .mm-bbar__mob-val {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    background: transparent;
    border: 1.5px solid rgba(0,0,0,0.18);
    border-radius: 8px;
    padding: 10px 12px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    margin-bottom: 8px;
  }
  .mm-bbar__mob-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 14px 20px 20px;
    padding: 16px;
    background: #01818e;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Catamaran', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
  }
  .mm-bbar__mob-btn:active { background: #019aaa; }

  .mm-bottom-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 12px);
    left: 14px;
    right: 14px;
    z-index: 190;
    background: #1a3228;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 -2px 0 rgba(255,255,255,0.04) inset, 0 12px 40px rgba(0,0,0,0.4);
    margin: 0px 0px 10px;
  }

  /* Botón Book Now full-width */
  .mm-bottom-nav__book-btn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #01818e 0%, #019aaa 100%);
    color: #fff;
    font-family: 'Catamaran', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  .mm-bottom-nav__book-btn.is-visible { display: flex; }
  .mm-bottom-nav__book-btn:active { opacity: 0.88; }

  /* Fila de iconos */
  .mm-bottom-nav__items {
    display: flex;
    align-items: center;
    padding: 2px 0 6px;
  }

  .mm-bottom-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 0 3px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
  }

  .mm-bottom-nav__item i { font-size: 22px; line-height: 1; }
  .mm-bottom-nav__item span { font-size: 8px; letter-spacing: 0.08em; }

  /* Indicador activo: píldora teal detrás del ícono */
  .mm-bottom-nav__item--active { color: #fff; }
  .mm-bottom-nav__item--active i {
    background: rgba(1,129,142,0.28);
    border-radius: 12px;
    padding: 5px 14px;
    color: #4dd8e6;
  }

  /* Espacio para que el contenido no se oculte detrás del nav (~100px) */
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }

  /* Mobile-only header de sección: oculto en desktop */
  .split-mob-hdr { display: block; }

  /* ── Destination pills ── */
  .dest-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 30px 20px 4px;
  }

  .dest-pill {
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 4px;
    border-radius: 8px;
    border: 1.5px solid rgba(75,111,97,0.3);
    background: transparent;
    color: rgba(26,50,40,0.5);
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
  }
  .dest-pill--active {
    background: #01818e;
    border-color: #01818e;
    color: #fff;
    animation: pill-pop 0.25s ease;
  }

  @keyframes pill-pop {
    0%   { transform: scale(1); }
    45%  { transform: scale(0.88); }
    100% { transform: scale(1); }
  }

  /* ── Polar cards → full-image style ── */
  .gallery__slide {
    flex: 0 0 100%;
    padding-top: 0;
    gap: 0;
  }

  .polar-badge { display: none; }

  .polar-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
  }

  .polar-card__img {
    aspect-ratio: 32 / 29.7;
    position: relative;
  }

  .polar-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,24,16,0.88) 0%, rgba(8,24,16,0.1) 55%, transparent 100%);
    pointer-events: none;
  }

  .polar-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px 26px;
    background: transparent;
    text-align: left;
    z-index: 2;
  }

  .polar-card__name {
    color: #fff;
    font-size: 26px;
    text-align: left;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  }

  .polar-card__cta { display: none; }

  /* Gallery controls: fix Tailwind padding on mobile, anular mt-7 de Tailwind */
  .gallery__controls {
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-top: 12px !important;
  }
}

.mm-nav-item:hover .mm-dropdown,
.mm-nav-item.is-open .mm-dropdown {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
a{
  text-decoration: none!important;
}
a:hover{
  color: #fff!important;
}

.hero__line {
  opacity: 0;
  transition: opacity 0.3s;
}
.js-reveal-ready .hero__line {
  opacity: 1;
}
