*, *::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; }
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  overflow-x: clip;
}

p {
  text-align: justify;
  text-align-last: left;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.45s ease, box-shadow 0.45s ease,
              backdrop-filter 0.45s ease, -webkit-backdrop-filter 0.45s ease;
  animation: headerSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.header.is-scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes ruleSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.header__rule {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.header__rule::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
  animation: ruleSweep 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.header.is-scrolled .header__rule {
  opacity: 0;
  pointer-events: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 48px;
  position: relative;
}

.header__logo {
  height: 52px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header__nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.header.is-scrolled .header__nav-link {
  color: #111;
}

.header__nav-link:hover {
  opacity: 0.65;
}

.header__nav-link--events {
  color: #fff !important;
  background: rgba(49,147,145,0.18);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(49,147,145,0.4);
  transition: background 0.2s, border-color 0.2s !important;
}
.header__nav-link--events:hover {
  background: #319391 !important;
  border-color: #319391;
  opacity: 1 !important;
}
.header.is-scrolled .header__nav-link--events { color: #319391 !important; }
.header.is-scrolled .header__nav-link--events:hover { color: #fff !important; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 100px;
  transition: background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, transform 0.2s ease;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.header.is-scrolled .header__cta {
  background: #319391;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(49,147,145,0.4);
}

.header__cta:hover {
  background: rgba(255,255,255,0.30);
  transform: translateY(-2px);
}

.header.is-scrolled .header__cta:hover {
  background: #267573;
  box-shadow: 0 6px 24px rgba(49,147,145,0.55);
}

.header__cta:active {
  transform: translateY(0px) scale(0.97);
}

/* ── SEC-HEADER (split heading component) ── */
.sec-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 40px 36px 56px;
  max-width: 76%;
  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: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #319391;
  margin-bottom: 4px;
}

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

.sec-header__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
  color: #319391;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

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

.sec-header__line {
  width: 2px;
  height: 80px;
  background: rgba(49, 147, 145, 0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.sec-header__line--light {
  background: rgba(255,255,255,0.15);
}

.sec-header__line::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 40%;
  border-radius: 2px;
  background: linear-gradient(to bottom, transparent, #319391 50%, transparent);
  box-shadow: 0 0 10px rgba(49,147,145,0.7);
  animation: lineCharge 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.sec-header__line--light::after {
  background: linear-gradient(to bottom, transparent, #fff 50%, transparent);
  box-shadow: 0 0 10px rgba(255,255,255,0.6);
}

@keyframes lineCharge {
  0%   { top: -40%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 140%; opacity: 0; }
}

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

@keyframes arcFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes glowRingIn {
  from { box-shadow: 0 0 0 2px rgba(49,147,145,0),   0 0  0px rgba(49,147,145,0); }
  to   { box-shadow: 0 0 0 2px rgba(49,147,145,0.95), 0 0 14px rgba(49,147,145,0.35); }
}

/* ── Divider horizontal (para layouts verticales) ── */
.sec-header__divider--h {
  padding: 6px 0;
  width: 100%;
  justify-content: flex-start;
}

.sec-header__line--h {
  width: 80px;
  height: 2px;
  background: rgba(49, 147, 145, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.sec-header__line--h::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 40%;
  border-radius: 2px;
  background: linear-gradient(to right, transparent, #319391 50%, transparent);
  box-shadow: 0 0 10px rgba(49,147,145,0.7);
  animation: lineChargeH 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes lineChargeH {
  0%   { left: -40%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 140%; opacity: 0; }
}

.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: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  max-width: 520px;
}

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

/* ── 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;
}

/* ── GALLERY CAROUSEL ── */
.gallery {
  padding: 40px 0 60px;
  background: #fff;
  overflow: hidden;
}

/* Heading block */
.gallery__heading {
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
  padding: 0 4px 56px;
}

.gallery__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #319391;
  margin-bottom: 14px;
}

.gallery__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  color: #319391;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.gallery__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
}

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

.gallery__track-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  width: 90%;
  margin: 0 auto;
}

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

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

.gallery__slide {
  flex: 0 0 calc(25% - 12px);
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.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;
}

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

.gallery__counter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #111;
}

.gallery__counter-current {
  font-weight: 600;
  font-size: 15px;
}

.gallery__counter-total {
  color: #aaa;
}

.gallery__counter-sep {
  width: 24px;
  height: 1px;
  background: #ccc;
  display: block;
}

.gallery__progress {
  flex: 1;
  height: 2px;
  background: #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
}

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

.gallery__nav {
  display: flex;
  gap: 8px;
}

.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: #319391;
  border-color: #319391;
  color: #fff;
}

.gallery__btn:active {
  transform: scale(0.92);
}

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


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

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

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #319391;
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 4px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  border-radius: 2px;
  background:
    linear-gradient(to right, transparent, #319391 50%, transparent) no-repeat,
    rgba(49, 147, 145, 0.18);
  background-size: 40% 100%, 100% 100%;
  animation: titleLineCharge 2s linear infinite;
}

@keyframes titleLineCharge {
  0%   { background-position: -40% 0, 0 0; }
  100% { background-position: 140% 0, 0 0; }
}

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

.section-title--light::after {
  background:
    linear-gradient(to right, transparent, #fff 50%, transparent) no-repeat,
    rgba(255, 255, 255, 0.2);
  background-size: 40% 100%, 100% 100%;
}

.btn-primary {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #319391;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(49,147,145,0.4);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: #267573;
  box-shadow: 0 6px 24px rgba(49,147,145,0.55);
  transform: translateY(-2px);
}

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


/* ══════════════════════════════════════
   EXPERIENCE
══════════════════════════════════════ */
.exp {
  padding: 100px 0;
  background: #fff;
}

.exp__wrapper {
  padding: 0 48px;
}

.exp__intro {
  margin-bottom: 48px;
}

.exp__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 14px;
}

.exp__card--lg  { grid-row: span 2; }
.exp__card--wide { grid-column: span 2; }

.exp__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.exp__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  transition: opacity 0.4s;
}

.exp__card:hover::before {
  opacity: 0.9;
}

.exp__card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 30px;
  z-index: 1;
}

.exp__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #319391;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(49,147,145,0.6);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 10px;
  backdrop-filter: blur(4px);
}

.exp__card-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}

.exp__card--lg .exp__card-title { font-size: 30px; }

.exp__card-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.exp__card:hover .exp__card-text {
  max-height: 80px;
  opacity: 1;
}

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

.exp__card:hover img {
  transform: scale(1.06);
}


/* ══════════════════════════════════════
   TESTIMONIALS — slider
══════════════════════════════════════ */
.testi {
  background: #f0fafa;
  padding: 80px 64px;
  overflow: hidden;
}

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

.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__left .sec-header__title {
  font-size: 22px;
}

.testi__left .section-eyebrow {
  margin-bottom: 12px;
}

.testi__title {
  font-size: 32px;
  font-weight: 800;
  color: #319391;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

.testi__controls {
  display: flex;
  gap: 8px;
  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: #319391;
  border-color: #319391;
  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% - 40px) / 3);
  background: #fff;
  border: 1px solid #e8f4f4;
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: 0 4px 24px rgba(49,147,145,0.07);
  display: flex;
  flex-direction: column;
}

.testi__quote {
  font-size: 56px;
  line-height: 0.6;
  color: #319391;
  font-family: Georgia, serif;
  margin-bottom: 18px;
}

.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: #319391;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  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;
}


/* ══════════════════════════════════════
   HORIZONTAL SCROLL SECTION
══════════════════════════════════════ */
.hscroll-wrapper {
  position: relative;
}

.hscroll-sticky {
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow: hidden;
  padding: 28px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hscroll-track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.05s linear;
}

.hscroll-card {
  flex: 0 0 calc(100vw - 32px);
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  margin-right: 16px;
}

/* Card 1: Press */
.hscroll-card--press {
  background: #319391;
  display: flex;
  align-items: center;
}

.hscroll-card--press .press__wrapper {
  width: 100%;
}

.hscroll-card--press .press__cards {
  margin-top: 48px;
  padding-bottom: 0;
}

/* Card 1: Restaurant */
.hscroll-card--restaurant {
  background: #111;
}

/* Card 2: Events */
.hscroll-card--events {
  background: #111;
}

.hscroll-widget {
  margin-top: 24px;
}

.hscroll-notice {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.hscroll-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hscroll-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.3));
}

.hscroll-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.hscroll-card__content .sec-header {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 80%;
  margin: 0 auto;
}

.hscroll-card__legal {
  margin-top: 14px;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  max-width: 320px;
  text-align: left;
  text-align-last: left;
}

/* Dots indicadores */
.hscroll-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-shrink: 0;
}

.hscroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, transform 0.3s;
}

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

/* ══════════════════════════════════════
   PRESS
══════════════════════════════════════ */
.press {
  background: #319391;
  padding: 36px 0 80px;
}

.press__inner {
  max-width: 100%;
}

.press__inner .sec-header {
  padding-bottom: 80px;
  margin: 0 6% 0 21%;
}

.press__header {
  text-align: center;
  margin-bottom: 64px;
}

.press__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.press__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.press__subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}

.press__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 64%;
  margin: 0 17% 0 19%;
}

.press__logo-slide {
  display: contents;
}

.press__logos img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.3s, transform 0.3s;
}

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

.press__cta {
  margin: 48px 0 0;
  text-align: center;
}

.press__btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #319391;
  background: #fff;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 100px;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.press__btn:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


/* ══════════════════════════════════════
   LOCATION
══════════════════════════════════════ */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

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

.location__img-wrap img {
  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: #f4f4f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 90px 100px;
}

.location__text {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  margin: 24px 0 36px;
  width: 100%;
  max-width: 100%;
}

.location .section-title {
  margin-top: 0;
}


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

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 48px;
}

.footer__copy {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

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

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

.footer__social {
  display: flex;
  gap: 12px;
}

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

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

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


/* ══════════════════════════════════════
   HERO CONTENT
══════════════════════════════════════ */
.hero__overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 48px;
  z-index: 2;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}


/* ══════════════════════════════════════
   5 MIN WALK STRIP
══════════════════════════════════════ */
.walk-strip {
  background: #f0fafa;
  border-top: 1px solid #d4ecec;
  border-bottom: 1px solid #d4ecec;
  padding: 20px 48px;
  margin-bottom: 60px;
}

.walk-strip__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.walk-strip__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #319391;
}

.walk-strip__icon svg {
  width: 100%;
  height: 100%;
}

.walk-strip p {
  font-size: 14px;
  font-weight: 300;
  color: #444;
  flex: 1;
}

.walk-strip p strong {
  font-weight: 700;
  color: #111;
}

.walk-strip__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #319391;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.walk-strip__link:hover { color: #267573; }


/* ══════════════════════════════════════
   EXPERIENCE intro text
══════════════════════════════════════ */
.exp__intro-text {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  max-width: 620px;
  margin-top: 16px;
}


/* ══════════════════════════════════════
   CARD STACK
══════════════════════════════════════ */
.card-stack {
  position: relative;
}


/* Cada tarjeta es sticky directamente dentro del contenedor */
.cs-card {
  position: sticky;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 -8px 48px rgba(0, 0, 0, 0.18);
  margin: 0 16px 80px;
  will-change: transform;
  transform-origin: top center;
}

/* Top escalonado: cada carta queda un poco más abajo que la anterior */
.cs-card:nth-child(1) { top: 72px;  z-index: 1; }
.cs-card:nth-child(2) { top: 90px;  z-index: 2; }
.cs-card:nth-child(3) { top: 108px; z-index: 3; margin-bottom: 80px; }

/* ══════════════════════════════════════
   VIBES
══════════════════════════════════════ */
.vibes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

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

.vibes__img-wrap img {
  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: 90px 100px;
}

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


/* ══════════════════════════════════════
   DINING
══════════════════════════════════════ */
.dining {
  background: #f7f7f5;
  padding: 100px 0;
}

.dining__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  padding: 0 48px;
}

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

.dining__notice {
  font-size: 12px;
  color: #999;
  font-weight: 300;
  margin-bottom: 28px;
  padding: 12px 16px;
  background: #fff;
  border-left: 3px solid #319391;
  border-radius: 0 8px 8px 0;
}

.dining__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.dining__img {
  border-radius: 12px;
  overflow: hidden;
}

.dining__img--wide {
  grid-column: span 2;
}

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

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


.gallery__cta {
  text-align: center;
  margin-top: 40px;
}

.walk-strip p strong {
  text-transform: uppercase;
}

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

/* ── CAROUSEL SLIDE TEXT ── */
.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;
}

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

.gallery__slide-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery__slide-desc {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
}

/* ── VIBES REVERSE (imagen a la derecha) ── */
.vibes--reverse .vibes__img-wrap {
  order: 2;
}
.vibes--reverse .vibes__content {
  order: 1;
}

/* ── RESTAURANT FEATURE ── */
.restaurant-feature {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.restaurant-feature__img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.restaurant-feature__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.restaurant-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  max-width: 620px;
}

.restaurant-feature__text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin: 20px 0 12px;
  max-width: 440px;
}

.restaurant-feature__notice {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-bottom: 28px;
  font-style: italic;
}

/* ── DINING GRID solo ── */
.dining__wrapper--grid-only {
  padding: 0 48px;
}

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

.parallax-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.parallax-section__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 0 50px;
}

.parallax-section__content .sec-header {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 80%;
  margin: 0 12% 0 12%;
}

.parallax-section__text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-top: 20px;
}

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

.vibes__more.is-open {
  max-height: 200px;
}

.vibes__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #319391;
  padding: 0;
  transition: color 0.2s;
}

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

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

.vibes__read-more:hover {
  color: #267876;
}

.vibes__notice {
  font-size: 12px;
  font-weight: 300;
  color: #999;
  font-style: italic;
  margin-top: 12px;
  padding: 10px 14px;
  border-left: 3px solid #319391;
  background: #f7f7f5;
  border-radius: 0 8px 8px 0;
}

.vibes__widget {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.vibes--restaurant .vibes__content {
  padding-bottom: 0;
}


/* ══════════════════════════════════════
   MAPA
══════════════════════════════════════ */
.map-section {
  display: block;
  line-height: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* ══════════════════════════════════════
   GRUPO ANDERSON'S PLECA
══════════════════════════════════════ */
.ga-pleca {
  background: #319391;
  padding: 40px 0 36px;
}

.ga-pleca fieldset {
  border: 1px solid rgba(255,255,255,0.3);
  width: 82%;
  margin: 0 auto;
  padding: 20px 24px 28px;
}

.ga-pleca legend {
  text-align: center;
  width: 18%;
  padding: 0;
}

.ga-pleca legend img {
  padding: 0 20px;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.ga-pleca .contmarcas {
  overflow: hidden;
  padding: 8px 0 0;
}

.ga-pleca .contmarcas div {
  width: calc(100% / 16);
  float: left;
  text-align: center;
  padding: 8px 0;
}

.ga-pleca .contmarcas div img {
  width: 50px !important;
  height: 50px;
  filter: brightness(0) invert(1) !important;
  object-fit: contain;
}

.ga-pleca .contmarcas div a {
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.ga-pleca .contmarcas div a:hover {
  opacity: 1;
}


/* ══════════════════════════════════════
   EVENTS MODAL
══════════════════════════════════════ */
.ev-modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
}
.ev-modal.is-open { pointer-events: all; visibility: visible; }
.ev-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(7,23,20,0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ev-modal.is-open .ev-modal__overlay { opacity: 1; }
.ev-modal__box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: 100%; max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 44px 40px;
  box-shadow: 0 24px 80px rgba(7,23,20,0.35);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease;
}
.ev-modal.is-open .ev-modal__box { transform: translateY(0) scale(1); opacity: 1; }
.ev-modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%; border: none;
  background: rgba(49,147,145,0.08);
  color: #319391; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.ev-modal__close:hover { background: rgba(49,147,145,0.18); }
.ev-modal__header { margin-bottom: 28px; }
.ev-modal__eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #319391; margin-bottom: 6px;
}
.ev-modal__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800; line-height: 1.1;
  text-transform: uppercase; color: #071712; margin-bottom: 8px;
}
.ev-modal__sub { font-size: 13px; font-weight: 300; color: #666; line-height: 1.6; }
.ev-modal__form { display: flex; flex-direction: column; gap: 16px; }
.ev-modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ev-modal__field { display: flex; flex-direction: column; gap: 6px; }
.ev-modal__field--full { grid-column: 1 / -1; }
.ev-modal__label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #333; }
.ev-modal__input {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 400; color: #0d2220;
  border: 1.5px solid rgba(49,147,145,0.2);
  border-radius: 10px; padding: 11px 14px;
  background: #f7fafa; outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ev-modal__input:focus { border-color: #319391; box-shadow: 0 0 0 3px rgba(49,147,145,0.12); background: #fff; }
.ev-modal__input::placeholder { color: #aaa; }
.ev-modal__select { cursor: pointer; }
.ev-modal__textarea { resize: vertical; min-height: 80px; }
.ev-modal__submit {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: #319391;
  border: none; border-radius: 100px;
  padding: 15px 36px; cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(49,147,145,0.4);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-top: 4px;
}
.ev-modal__submit:hover { background: #267573; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(49,147,145,0.5); }
.ev-modal__success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 20px 0; }
.ev-modal__success.is-visible { display: flex; }
.ev-modal__success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(49,147,145,0.1); display: flex; align-items: center; justify-content: center; }
.ev-modal__success-title { font-size: 22px; font-weight: 800; text-transform: uppercase; color: #071712; }
.ev-modal__success-msg { font-size: 14px; font-weight: 300; color: #555; line-height: 1.7; max-width: 360px; }
@media (max-width: 600px) {
  .ev-modal__box { padding: 36px 24px 28px; border-radius: 20px; }
  .ev-modal__row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   BLOG SLIDER
══════════════════════════════════════ */
.blog-sl {
  background: #fff;
  padding: 80px 64px;
  overflow: hidden;
}

.blog-sl__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: auto auto;
  column-gap: 48px;
  row-gap: 24px;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
}

.blog-sl__left {
  grid-column: 1;
  grid-row: 1;
  padding-top: 8px;
}

.blog-sl__left .section-eyebrow {
  margin-bottom: 12px;
}

.blog-sl__title {
  font-size: 32px;
  font-weight: 800;
  color: #319391;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 14px;
}

.blog-sl__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  border-radius: 2px;
  background:
    linear-gradient(to right, transparent, #319391 50%, transparent) no-repeat,
    rgba(49, 147, 145, 0.18);
  background-size: 40% 100%, 100% 100%;
  animation: titleLineCharge 2s linear infinite;
}

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

.blog-sl__controls--left {
  display: flex;
  gap: 8px;
  grid-column: 1;
  grid-row: 2;
  margin-top: 8px;
}

.blog-sl__controls--mob {
  display: none;
}

.blog-sl__right {
  grid-column: 2;
  grid-row: 1 / 3;
}

.blog-sl__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;
}

.blog-sl__btn:hover {
  background: #319391;
  border-color: #319391;
  color: #fff;
}

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

.blog-sl__right {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  padding-right: 4px;
}

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

.blog-card {
  flex: 0 0 calc((100% - 52px) / 3);
  width: calc((100% - 52px) / 3);
  max-width: calc((100% - 52px) / 3);
  min-width: calc((100% - 52px) / 3);
  display: flex;
  flex-direction: column;
}

.blog-card__img-wrap {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

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

.blog-card:hover .blog-card__img-wrap img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 8px 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card__excerpt {
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__cta {
  display: inline-block;
  margin-top: 4px;
  padding: 10px 22px;
  background: #319391;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  width: fit-content;
  transition: background 0.2s;
}

.blog-card__cta:hover {
  background: #267876;
}


/* ══════════════════════════════════════
   PACKAGES / DAY PASSES
══════════════════════════════════════ */
.packages {
  background: #319391;
  padding: 80px 0;
}

.packages__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0 20px;
}

.packages__intro .section-eyebrow {
  text-align: center;
  text-align-last: center;
  color: rgba(255,255,255,0.7);
}

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

.packages__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%;
}

.packages__lead {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-top: 16px;
}

.packages__slider-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

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

.packages__controls {
  display: none;
}

.packages__dots {
  display: none;
}

.packages__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;
}

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

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

/* ── Card ── */
.pkg-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,34,32,0.08);
  border: 1px solid rgba(13,34,32,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(13,34,32,0.14);
}

.pkg-card--vip {
  border-color: rgba(49,147,145,0.35);
  box-shadow: 0 4px 20px rgba(49,147,145,0.12);
}

.pkg-card--vip:hover {
  box-shadow: 0 20px 56px rgba(49,147,145,0.22);
}

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

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

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

.pkg-card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

.pkg-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0d2220;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
}

.pkg-card__badge--vip {
  background: #319391;
  padding: 5px 14px;
  font-size: 11px;
}

.pkg-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.pkg-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #319391;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pkg-card__guests {
  font-size: 10px;
  font-weight: 600;
  color: #319391;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: -4px 0 0;
}

.pkg-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 10px;
  flex: 1;
  align-content: flex-start;
}

.pkg-card__features li {
  grid-column: span 2;
  font-size: 12px;
  font-weight: 400;
  color: rgba(13,34,32,0.72);
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}

.pkg-card__features li.half {
  grid-column: span 1;
}

.pkg-card__features li::before {
  content: '';
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='%23319391' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2 9 6 13 14 3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pkg-card__pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(13,34,32,0.08);
}

.pkg-card__old {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(13,34,32,0.3);
  text-decoration: line-through;
}

.pkg-card__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #0d2220;
  line-height: 1;
}

.pkg-card__price small {
  font-size: 11px;
  font-weight: 400;
  color: rgba(13,34,32,0.4);
  margin-left: 2px;
}

.pkg-card__cta {
  align-self: center;
  text-align: center;
  margin-top: 4px;
}

.pkg-card__cta:hover {
  box-shadow: 0 6px 24px rgba(49,147,145,0.45);
}


/* ══════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════ */
.app-nav {
  display: none;
}

@media (max-width: 768px) {
  .app-nav {
    display: flex;
    position: fixed;
    bottom: calc(5px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 480px;
    z-index: 200;
    background: #0d2827;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
      0 12px 48px rgba(0,0,0,0.28),
      0 3px 10px rgba(0,0,0,0.18),
      inset 0 1px 0 rgba(255,255,255,0.06);
    padding: 7px 16px;
    justify-content: space-between;
    align-items: center;
  }

  .app-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
    border-radius: 50px;
    flex: 1;
  }

  /* Botón central Store elevado */
  .app-nav__item--store {
    background: transparent;
    color: #fff !important;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    margin-top: -30px;
    flex: 0 0 60px;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }

  .app-nav__item--store .app-nav__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #071714;
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* ring fades in when arc fades out */
    animation: glowRingIn 0.7s ease-out 1.5s forwards;
  }

  .app-nav__item--store .app-nav__icon::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 305deg,
      rgba(49,147,145,0.15) 320deg,
      rgba(49,147,145,0.7) 338deg,
      #b2e8e7 348deg,
      #fff 353deg,
      transparent 360deg
    );
    /* 1 full spin (2s), then arc fades out */
    animation:
      spinBorder 2s linear 1,
      arcFadeOut 0.7s ease-in 1.5s forwards;
  }

  .app-nav__item--store .app-nav__icon::after {
    content: '';
    position: absolute;
    inset: 2.5px;
    border-radius: 50%;
    background: #071714;
  }

  .app-nav__item--store .app-nav__label {
    display: block;
    position: relative;
    z-index: 1;
  }

  .app-nav__silla {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    object-fit: contain;
    position: relative;
    z-index: 1;
  }

  .app-nav__icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
  }

  .app-nav__icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: stroke-width 0.2s;
  }

  .app-nav__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
  }

  .app-nav__item--active {
    color: #fff;
  }

  .app-nav__item--active .app-nav__icon {
    transform: translateY(-2px);
  }

  .app-nav__item--active .app-nav__icon svg {
    stroke-width: 2.2;
    stroke: #319391;
  }

  .app-nav__item--active .app-nav__label {
    color: #319391;
  }

  .app-nav__item:active {
    color: #fff;
    transform: scale(0.92);
  }

  body {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }
}


/* ══════════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════════ */
@keyframes lineChargeH {
  0%   { left: -50%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
  position: relative;
}

.header__burger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              opacity 0.25s ease,
              width 0.4s ease;
  transform-origin: center;
}

.header.is-scrolled .header__burger-line {
  background: rgba(0,0,0,0.15);
}

.header__burger-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, #319391 50%, transparent);
  animation: lineChargeH 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.header__burger-line:nth-child(2)::after { animation-delay: 0.45s; }
.header__burger-line:nth-child(3)::after { animation-delay: 0.9s; }

.header__burger.is-open .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-open .header__burger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.header__burger.is-open .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════
   MOBILE MENU OVERLAY
══════════════════════════════════════ */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 199;
  pointer-events: none;
  visibility: hidden;
}

.mob-menu.is-open {
  pointer-events: all;
  visibility: visible;
}

.mob-menu__bg {
  position: absolute;
  inset: 0;
  background: #e8f5f5;
  clip-path: circle(0% at calc(100% - 38px) 26px);
  transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-menu.is-open .mob-menu__bg {
  clip-path: circle(150% at calc(100% - 38px) 26px);
}

.mob-menu__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 0 32px 40px;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}

.mob-menu.is-open .mob-menu__inner {
  opacity: 1;
}

/* Top bar */
.mob-menu__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 20px 0 0;
  flex-shrink: 0;
}

.mob-menu__logo {
  height: 46px;
  width: auto;
}

.mob-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(49,147,145,0.1);
  border: none;
  border-radius: 50%;
  color: #319391;
  cursor: pointer;
  transition: background 0.2s;
}

.mob-menu__close:hover {
  background: rgba(49,147,145,0.2);
}

/* Nav */
.mob-menu__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  gap: 0;
  overflow-y: auto;
  padding-top: 80px;
}

@keyframes mobLinkIn {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.mob-menu__link {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(49,147,145,0.75);
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid rgba(49,147,145,0.12);
  opacity: 0;
  transition: color 0.2s, padding-left 0.2s;
}

.mob-menu__link:first-child {
  border-top: 1px solid rgba(49,147,145,0.12);
}

.mob-menu.is-open .mob-menu__link {
  animation: mobLinkIn 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: calc(0.25s + var(--i) * 0.07s);
}

.mob-menu__link:active,
.mob-menu__link:hover {
  color: #319391;
  padding-left: 6px;
}

.mob-menu__num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #319391;
  flex-shrink: 0;
}

/* Footer */
.mob-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.mob-menu__cta {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: #319391;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 100px;
  text-align: center;
  transition: background 0.25s;
}

.mob-menu__cta:hover { background: #267573; }

.mob-menu__social {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.mob-menu__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(49,147,145,0.5);
  transition: color 0.2s;
}

.mob-menu__social a svg {
  width: 20px;
  height: 20px;
}

.mob-menu__social a:hover { color: #319391; }

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

  /* ── Header ── */
  .header {
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  }
  .header__inner {
    padding: 8px 20px;
  }
  .header__nav {
    display: none;
  }
  .header__logo {
    height: 36px;
  }
  .header__cta {
    display: inline-block;
    font-size: 9px;
    padding: 9px 14px;
    letter-spacing: 0.12em;
  }
  .header__burger {
    display: flex;
  }

  /* ── Centrado global simétrico mobile ── */
  .sec-header,
  .sec-header__left,
  .sec-header__right,
  .press__inner,
  .hscroll-card__content .sec-header {
    text-align: center;
    text-align-last: center;
    align-items: center;
  }

  .location__content,
  .vibes__content,
  .blog-sl__left,
  .testi__left,
  .parallax-section__content {
    align-items: center;
    text-align: center;
  }

  .sec-header__eyebrow,
  .section-eyebrow,
  .sec-header__title,
  .section-title,
  .blog-sl__title {
    text-align: center;
    text-align-last: center;
  }

  .sec-header__desc,
  .vibes__text,
  .location__text,
  .testi__text,
  .blog-sl__desc {
    text-align: justify;
    hyphens: none;
  }

  .btn-primary,
  .btn-primary--sm,
  .vibes__read-more,
  .blog-sl__controls {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  /* ── Sec-header: reset desktop offset, padding simétrico ── */
  .sec-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 20px 28px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .sec-header__left {
    width: 100%;
    max-width: 100%;
  }
  .sec-header__right {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .sec-header__divider {
    display: none;
  }
  .sec-header__desc {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.65;
  }
  .sec-header__title {
    font-size: clamp(19px, 5.3vw, 26px);
    text-wrap: balance;
  }
  .section-title {
    font-size: clamp(19px, 5.3vw, 26px) !important;
    text-wrap: balance;
  }
  .blog-sl__title {
    font-size: clamp(24px, 6.2vw, 31px);
    text-wrap: balance;
  }
  .sec-header__title br,
  .section-title br,
  .blog-sl__title br {
    display: none;
  }
  h1, h2, h3, h4 {
    text-wrap: balance;
  }
  p,
  .sec-header__desc,
  .vibes__text,
  .location__text,
  .blog-card__excerpt,
  .testi__text,
  .blog-sl__desc,
  .sec-header__eyebrow {
    text-wrap: pretty;
  }

  /* ── Líneas decorativas centradas ── */
  .section-title::after,
  .blog-sl__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* ── Walk strip ── */
  .walk-strip {
    display: none;
  }

  /* ── Section titles ── */
  .section-title {
    font-size: 24px;
  }

  /* ── Gallery ── */
  .gallery {
    padding: 0 0 32px;
  }
  .gallery__wrapper {
    padding: 0;
  }
  .gallery__track-outer {
    width: 100%;
    padding: 0 16px;
  }
  .gallery__slide {
    flex: 0 0 85%;
    border-radius: 20px;
    overflow: hidden;
  }
  .gallery__img-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 0;
  }
  .gallery__controls {
    padding: 12px 20px 0;
    gap: 16px;
  }
  .gallery__cta {
    padding: 0 20px;
    margin-top: 20px;
  }
  .gallery__cta .btn-primary {
    width: 100%;
    text-align: center;
    display: block;
  }

  /* ── Packages slider ── */
  .packages {
    padding: 48px 0 52px;
  }
  .packages__intro {
    margin-bottom: 32px;
    padding: 0 24px;
  }
  .packages__slider-wrap {
    overflow: hidden;
    padding: 12px 28px 12px;
  }
  .packages__track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  }
  .pkg-card {
    flex: 0 0 calc(100vw - 56px);
    width: calc(100vw - 56px);
    max-width: calc(100vw - 56px);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s ease;
    transform-origin: center center;
    will-change: transform, opacity;
  }
  .pkg-card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(13,34,32,0.08);
  }
  .packages__controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  .packages__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }
  .packages__dot {
    width: 7px;
    height: 7px;
    border-radius: 4px;
    background: rgba(255,255,255,0.3);
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s ease;
    cursor: pointer;
  }
  .packages__dot--active {
    width: 24px;
    background: #fff;
  }

  /* ── Card stack mobile: scroll normal + exit blur/scale ── */
  .card-stack {
    padding: 12px 12px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cs-card {
    position: relative !important;
    top: auto !important;
    border-radius: 24px;
    overflow: hidden;
    margin: 0;
    min-height: unset;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    transform-origin: top center;
    will-change: transform, filter;
  }

  .location {
    display: flex;
    flex-direction: column;
    min-height: auto;
    grid-template-columns: unset;
  }
  .location__img-wrap {
    height: 220px;
    order: 0;
  }
  .location__content {
    order: 1;
    padding: 24px 20px 28px;
  }
  .location__text {
    max-width: 100%;
    font-size: 14px;
  }

  .vibes {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    min-height: auto;
  }
  .vibes__img-wrap {
    height: 220px;
    min-height: unset;
    max-height: unset;
    order: 0 !important;
  }
  .vibes__content {
    order: 1 !important;
    padding: 24px 20px 28px;
  }
  .vibes__text {
    max-width: 100%;
    font-size: 14px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    display: block;
    box-sizing: border-box;
  }

  /* ── Parallax: card flotante ── */
  .parallax-section {
    background-attachment: scroll;
    border-radius: 24px;
    margin: 0 12px 12px;
    height: calc(100vh - 68px - 80px);
    height: calc(100dvh - 68px - 80px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform-origin: top center;
    will-change: transform, filter;
  }
  .parallax-section__content {
    width: 100%;
    padding: 0 24px 32px;
  }
  .parallax-section .sec-header {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }
  .parallax-section .sec-header__eyebrow,
  .hscroll-card__content .sec-header__eyebrow {
    color: rgba(255, 255, 255, 0.6);
  }
  .parallax-section .btn-primary {
    width: auto;
    display: inline-block;
  }

  /* ── hscroll: vertical en mobile con blur exit ── */
  .hscroll-wrapper {
    height: auto !important;
    margin: 0;
    border-radius: 0;
    overflow: visible;
  }
  .hscroll-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible;
    padding: 12px 12px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hscroll-track {
    display: flex;
    flex-direction: column;
    transform: none !important;
    gap: 12px;
    height: auto !important;
  }
  .hscroll-card {
    flex: none;
    width: auto;
    height: calc(100vh - 68px - 80px);
    height: calc(100dvh - 68px - 80px);
    border-radius: 24px;
    margin-right: 0;
    transform-origin: top center;
    will-change: transform, filter;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hscroll-card__overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
  }
  .hscroll-card--restaurant .hscroll-card__overlay {
    background: linear-gradient(to bottom, rgba(49,147,145,0.55) 0%, rgba(7,23,20,0.92) 100%);
  }
  .hscroll-card--restaurant {
    justify-content: flex-start;
  }
  .hscroll-card__content {
    height: auto;
  }
  .hscroll-card--restaurant .hscroll-card__content {
    flex: 1;
    height: 100%;
  }
  .hscroll-card--restaurant .hscroll-card__content .sec-header {
    height: 100%;
    justify-content: space-between;
  }
  .hscroll-card__content .sec-header {
    padding: 40px 20px 28px;
    margin: 0;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hscroll-dots {
    display: none;
  }

  /* ── Testimonials ── */
  .testi {
    padding: 48px 0 40px;
  }
  .testi__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .testi__left {
    order: 1;
    width: 100%;
    padding: 0 0 20px;
  }
  .testi__left .sec-header {
    padding: 0 20px 20px;
    align-items: center;
    text-align: center;
  }
  .testi__card {
    text-align: left;
  }
  .testi__author {
    justify-content: flex-start;
  }
  .testi__right {
    order: 2;
    width: 100%;
    padding-left: 0;
    overflow: hidden;
  }
  .testi__track {
    padding: 0 20px;
    gap: 12px;
  }
  .testi__controls {
    order: 3;
    width: 100%;
    padding: 16px 20px 0;
    grid-column: unset;
    grid-row: unset;
    justify-content: center;
  }
  .testi__card {
    flex: 0 0 calc(100vw - 64px);
    padding: 24px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  }

  /* ── Press ── */
  .press {
    padding: 0 0 32px;
  }
  .press__inner .sec-header {
    padding: 40px 20px 24px;
    margin: 0;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .press__logos {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding: 8px 0 16px;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .press__logos::-webkit-scrollbar { display: none; }
  .press__logo-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
    padding: 8px 0;
  }
  .press__logos img {
    height: 44px;
    width: auto;
    max-width: 70%;
    object-fit: contain;
  }
  .press__cta {
    padding: 0 20px;
  }
  .press__btn {
    width: 100%;
    text-align: center;
    display: block;
    box-sizing: border-box;
  }

  /* ── Blog slider ── */
  .blog-sl {
    padding: 48px 0 40px;
  }
  .blog-sl__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .blog-sl__right {
    grid-column: unset;
    grid-row: unset;
  }
  .blog-sl__controls--left {
    display: none;
  }
  .blog-sl__controls--mob {
    display: flex;
    gap: 8px;
    flex: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    padding: 0 20px;
  }
  .blog-sl__left {
    flex: none;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .blog-sl__right {
    width: 100%;
    padding: 0 20px;
    overflow: hidden;
  }
  .blog-card {
    flex: 0 0 calc(100vw - 64px);
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .blog-card__img-wrap {
    height: 180px;
    border-radius: 0;
  }
  .blog-card__img-wrap img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .blog-card__body {
    padding: 16px;
  }
  .blog-sl__controls {
    flex: none;
    width: 100%;
    justify-content: center;
    margin-top: -8px;
  }

  /* ── Map ── */
  .map-section iframe {
    height: 280px;
  }

  /* ── GA pleca ── */
  .ga-pleca {
    padding: 40px 12px 0;
  }

  /* ── Footer ── */
  .footer__bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 20px calc(80px + env(safe-area-inset-bottom));
    gap: 10px;
  }

  /* ── Experience grid ── */
  .exp {
    padding: 60px 0;
  }
  .exp__wrapper {
    padding: 0 20px;
  }
  .exp__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .exp__card--lg  { grid-row: auto; }
  .exp__card--wide { grid-column: auto; }
  .exp__card {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }
  .sec-header__title,
  .section-title {
    font-size: clamp(18px, 4.8vw, 24px);
  }
  .gallery__slide {
    flex: 0 0 88%;
  }
  .blog-card {
    flex: 0 0 calc(100vw - 48px);
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }
  .exp__card {
    height: 200px;
  }
  .parallax-section__content {
    padding: 40px 20px;
  }
  .vibes__content {
    padding: 20px 20px 24px;
  }
  .location__content {
    padding: 20px 20px 24px;
  }
  .testi__card {
    flex: 0 0 calc(100vw - 56px);
  }
}

@media (max-width: 767px) {
  .ga-pleca legend {
    text-align: center;
    width: 70%;
  }
  .ga-pleca fieldset {
    width: 92%;
  }
  .ga-pleca legend img {
    padding: 0 10px;
    width: 90%;
  }
  .ga-pleca .contmarcas div {
    width: calc(100% / 4) !important;
    float: left;
    text-align: center;
  }
  .ga-pleca .contmarcas div:last-child img {
    margin-top: 20% !important;
  }
}


/* ══════════════════════════════════════
   BAHAMAS — THINGS TO DO  (bth-*)
   Clases 100% nuevas, no tocar home
══════════════════════════════════════ */
.bth {
  background: #fff;
  padding: 80px 0;
}

/* ── Header ── */
.bth__hd {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 70%;
  margin: 0 auto;
  padding: 0 36px 56px;
}

.bth__hd-left {
  flex: 0 0 auto;
}

.bth__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #319391;
  margin-bottom: 8px;
}

.bth__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #0d2220;
}

.bth__hd-rule {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #319391, transparent);
  flex-shrink: 0;
}

.bth__hd-right {
  flex: 1;
}

.bth__lead {
  font-size: 14px;
  font-weight: 300;
  color: #4a6362;
  line-height: 1.7;
}

/* ── Grid ── */
.bth__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Cards ── */
.bth-card {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  text-decoration: none;
  background: #0d2220;
}

.bth-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.bth-card:hover .bth-card__img {
  transform: scale(1.06);
}

.bth-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,23,20,0.92) 0%, rgba(7,23,20,0.28) 55%, transparent 100%);
  transition: opacity 0.3s;
}

.bth-card:hover .bth-card__veil {
  opacity: 0.88;
}

.bth-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bth-card__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6de8e6;
}

.bth-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

.bth-card__copy {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin: 2px 0 6px;
  max-width: 380px;
}

.bth-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}

.bth-card:hover .bth-card__cta {
  color: #6de8e6;
  border-color: #6de8e6;
}

/* ── Amenity icons ── */
.bth__amenities {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 56px auto 0;
  padding: 0 36px;
}

.bth-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bth-amenity__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: invert(46%) sepia(54%) saturate(427%) hue-rotate(141deg) brightness(90%) contrast(89%);
  opacity: 0.85;
}

.bth-amenity__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a6362;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .bth {
    padding: 48px 0;
  }
  .bth__hd {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 0 20px 32px;
    gap: 16px;
    text-align: center;
  }
  .bth__hd-rule {
    width: 64px;
    height: 2px;
    background: linear-gradient(to right, transparent, #319391, transparent);
  }
  .bth__lead {
    text-align: justify;
    hyphens: none;
  }
  .bth__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
  }
  .bth-card {
    aspect-ratio: 16/9;
    border-radius: 20px;
  }
  .bth-card__name {
    font-size: 18px;
  }
  .bth-card__copy {
    display: none;
  }
  .bth-card__body {
    padding: 20px;
  }
  .bth__amenities {
    gap: 24px;
    margin-top: 36px;
    padding: 0 20px;
  }
  .bth-amenity__icon {
    width: 36px;
    height: 36px;
  }
}
