/* ============================================================
   PABS BOATS · HOME
   Luxury yacht rental · Miami
   ============================================================ */
:root {
  --ink: #0A1520;
  --ink-soft: #1A2532;
  --ivory: #F5F1EA;
  --ivory-soft: #EAE4D8;
  --gold: #F5F1EA;
  --gold-soft: #EAE4D8;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-bg-hover: rgba(255, 255, 255, 0.14);
  --overlay-dark: rgba(10, 21, 32, 0.55);
  --overlay-gradient: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(10, 21, 32, 0.85) 100%);

  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --footer-bg: #2C3540;
  --footer-text-muted: rgba(245, 241, 234, 0.65);
  --footer-border: rgba(255, 255, 255, 0.08);
  --testimonials-bg: #35404D;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pad-x: 8vw;
}

/* ============================================
   PAGE LOADER v6.0
============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.5s,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  pointer-events: none;
}
body.is-loading { overflow: hidden; }
.page-loader__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  animation: loaderFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-loader__logo img {
  height: 64px;
  width: auto;
  filter: brightness(0);
  opacity: 0.92;
}
.page-loader__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(10, 21, 32, 0.06);
  overflow: hidden;
}
.page-loader__progress-fill {
  height: 100%;
  width: 0%;
  background: #4DA3FF;
  box-shadow: 0 0 8px rgba(77, 163, 255, 0.5), 0 0 16px rgba(77, 163, 255, 0.25);
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .page-loader__logo img { height: 48px; }
}

/* ============================================
   HORIZONTAL OVERFLOW LOCK v7.4
============================================ */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  color-scheme: light;
}
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
section[id] { scroll-margin-top: 140px; }
@media (max-width: 768px) { section[id] { scroll-margin-top: 72px; } }
img { display: block; max-width: 100%; height: auto; }
button {
  font: inherit; color: inherit; background: none;
  border: none; padding: 0; cursor: pointer;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
h1, h2, h3, h4, p, ul, li { margin: 0; padding: 0; }
ul { list-style: none; }

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- LENIS ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ============================================================
   SCROLL INDICATOR (fixed, global)
   ============================================================ */
.scroll-indicator {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--ivory);
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.scroll-indicator.is-ready { opacity: 1; }
.scroll-indicator__chevron {
  width: 14px; height: 14px; opacity: 0.55;
}
.scroll-indicator__track {
  width: 1px;
  height: 200px;
  background: rgba(245, 241, 234, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-indicator__fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: var(--gold);
  transition: height 0.05s linear;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  color: var(--ivory);
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s ease,
              backdrop-filter 0.4s ease;
}
/* NAVBAR — SCROLL BEHAVIOR v2.3 */
.navbar.is-hidden { transform: translateY(-100%); }
.navbar.is-light {
  background-color: rgba(245, 241, 234, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(10, 21, 32, 0.06);
}
.navbar.is-light .navbar__search,
.navbar.is-light .navbar__lang,
.navbar.is-light .navbar__lang > span,
.navbar.is-light .navbar__lang-current,
.navbar.is-light .navbar__menu,
.navbar.is-light .navbar__menu-label { color: #0A1520 !important; }
.navbar.is-light .navbar__search svg,
.navbar.is-light .navbar__lang svg,
.navbar.is-light .navbar__menu svg { color: #0A1520 !important; stroke: #0A1520 !important; }
.navbar.is-light .navbar__menu-icon span { background: #0A1520 !important; }
.navbar__logo img { filter: brightness(0) invert(1); }
.navbar.is-light .navbar__logo img { filter: none !important; }
.footer__logo img { filter: brightness(0) invert(1); }
.navbar.is-light .navbar__nav a { color: #0A1520 !important; }
.navbar.is-light .navbar__nav a::after { background: #0A1520 !important; }
.navbar.is-light .navbar__top { border-bottom-color: rgba(10, 21, 32, 0.08) !important; }
.navbar.is-light .navbar__nav { border-bottom-color: rgba(10, 21, 32, 0.08) !important; }

/* Fila 1 */
.navbar__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 40px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
}
.navbar__left { display: flex; align-items: center; gap: 32px; }
.navbar__right { display: flex; align-items: center; justify-content: flex-end; }
.navbar__logo { display: flex; justify-content: center; }
.navbar__logo img { height: 56px; width: auto; display: block; }

.navbar__search {
  background: none; border: none;
  cursor: pointer; padding: 6px;
  color: var(--ivory);
  transition: opacity 0.3s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.navbar__search svg { width: 20px; height: 20px; }
.navbar__search:hover { opacity: 0.7; }

.navbar__lang-wrap { position: relative; }
.navbar__lang {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: none; padding: 6px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.navbar__lang:hover { opacity: 0.7; }
.navbar__lang svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease-out); }
.navbar__lang-wrap[data-open="true"] .navbar__lang svg { transform: rotate(180deg); }
.nav__lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -12px;
  min-width: 176px;
  background: var(--ivory);
  border-radius: 10px;
  padding: 6px;
  margin: 0;
  list-style: none;
  box-shadow: 0 20px 40px rgba(10, 21, 32, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  z-index: 10;
}
.navbar__lang-wrap[data-open="true"] > .nav__lang-menu {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}
.nav__lang-menu li {
  padding: 12px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}
.nav__lang-menu li:hover { background: rgba(10, 21, 32, 0.06); }
.nav__lang-menu li.is-active {
  background: var(--ink);
  color: var(--ivory);
  font-weight: 500;
}

.navbar__menu {
  display: inline-flex; align-items: center; gap: 16px;
  background: none; border: none; padding: 6px;
  color: var(--ivory);
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.navbar__menu:hover { opacity: 0.7; }
.navbar__menu-icon {
  display: flex; flex-direction: column; gap: 5px;
  width: 22px;
}
.navbar__menu-icon span {
  display: block; width: 100%; height: 1px;
  background: var(--ivory);
  transition: transform 0.3s ease;
}
.navbar__menu-icon span:nth-child(2) {
  width: 70%; align-self: flex-end;
}
.navbar__menu-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Fila 2 — categorías */
.navbar__nav {
  padding: 0 40px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
}
.navbar__nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  list-style: none;
  margin: 0; padding: 0;
}
.navbar__nav a {
  display: block;
  padding: 20px 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar__nav a:hover::after,
.navbar__nav a.is-active::after {
  transform: scaleX(1);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 20px 40px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--outline {
  color: var(--ivory);
  border-color: var(--ivory);
  background: transparent;
}
.btn--outline:hover {
  background: var(--ivory);
  color: var(--ink);
}

.btn--solid {
  background: var(--ivory);
  color: var(--ink);
  border-radius: 100px;
}
.btn--solid:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--ivory);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.02) saturate(0.9) contrast(1.02);
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 21, 32, 0.28);
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 15% 55%, rgba(10, 21, 32, 0.55) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10, 21, 32, 0.35) 0%, transparent 30%, transparent 60%, rgba(10, 21, 32, 0.5) 100%);
}
.hero__content {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  top: 0; bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 50vh;
  padding-bottom: 10vh;
}
.hero__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: var(--ivory);
  text-transform: uppercase;
  text-wrap: balance;
}
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__line > span { display: inline-block; }
.hero__sub {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
}
.hero__sub-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero__sub-text { opacity: 0.9; }
.hero__cta { margin-left: auto; }

/* ============================================================
   SECCIÓN 2 — SERVICES
   ============================================================ */
.services {
  padding: 140px var(--pad-x) 40px;
  background: var(--ivory);
  position: relative;
}
.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 72px;
}
.services__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 5.2vw, 80px);
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.services__title span { display: block; }

.services__controls { display: flex; gap: 10px; }
.services__ctrl {
  width: 44px; height: 44px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.services__ctrl svg { width: 16px; height: 16px; }
.services__ctrl:hover { background: var(--ink); color: var(--ivory); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services__grid--carousel {
  display: flex;
  grid-template-columns: none;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.services__grid--carousel::-webkit-scrollbar { display: none; }
.services__grid--carousel > .card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}

.card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  color: var(--ivory);
  text-align: left;
  cursor: pointer;
  border-radius: 2px;
  isolation: isolate;
}
.card__img {
  position: absolute; inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.02) saturate(0.9) contrast(1.02);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.card:hover .card__img { transform: scale(1.06); }
.card__shade {
  position: absolute; inset: 0;
  background: var(--overlay-gradient);
  pointer-events: none;
}
.card__body {
  position: absolute;
  left: 32px; right: 32px; bottom: 32px;
  z-index: 2;
  display: block;
}
.card__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ivory);
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.card__num {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(245, 241, 234, 0.7);
  margin-bottom: 12px;
}
.card__desc {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.85);
  max-width: 90%;
}
.card__cta {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.75);
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .card__cta {
  color: var(--ivory);
  transform: translateX(4px);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  visibility: hidden;
  pointer-events: none;
}
.modal.is-open { visibility: visible; pointer-events: auto; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 21, 32, 0.94);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  color: var(--ivory);
  padding: 12px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s var(--ease-out) 0.15s, transform 0.6s var(--ease-out) 0.15s;
}
.modal.is-open .modal__panel { opacity: 1; transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ivory);
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  z-index: 3;
}
.modal__close svg { width: 22px; height: 22px; }
.modal__close:hover { color: var(--gold); transform: rotate(90deg); }

.modal__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
  margin: 0;
}
.modal__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(0.9) contrast(1.02);
}
.modal__text { margin-top: 40px; }
.modal__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 4.2vw, 72px);
  line-height: 1.06;
  letter-spacing: 0.02em;
  color: var(--ivory);
  text-transform: uppercase;
}
.modal__rule {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  margin-top: 24px;
}
.modal__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ivory);
  opacity: 0.9;
  margin-top: 24px;
  max-width: 640px;
}
.modal__cta { margin-top: 36px; }

/* ============================================================
   SECCIÓN 3 — AVAILABILITY
   ============================================================ */
.availability {
  position: relative;
  min-height: 90vh;
  color: var(--ivory);
  overflow: hidden;
  padding: 120px var(--pad-x);
  display: flex;
  align-items: center;
}
.availability__bg {
  position: absolute; inset: 0;
  background-image: url('./bg-availability.jpg?v=33');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(1.02) saturate(0.9) contrast(1.02);
}
.availability__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(10,21,32,0.55) 0%, rgba(10,21,32,0.28) 55%, rgba(10,21,32,0.45) 100%),
    rgba(10, 21, 32, 0.15);
}
.availability__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.availability__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.95;
}
.availability__eyebrow-line {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
}

.availability__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  color: var(--ivory);
  margin-top: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
.availability__title span { display: block; }

.availability__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ivory);
  opacity: 0.85;
  margin-top: 24px;
  max-width: 520px;
}

.filters {
  margin-top: 64px;
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
}

.pill {
  flex: 1 1 200px;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 22px 24px;
  color: var(--ivory);
  text-align: left;
  transition: background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  line-height: 1;
}
.pill:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.pill__icon {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  opacity: 0.9;
}
.pill__label {
  flex: 1 1 auto;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ivory);
  opacity: 0.95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pill__caret {
  flex: 0 0 auto;
  width: 14px; height: 14px;
  opacity: 0.7;
  transition: transform 0.3s var(--ease-out);
}
.pill:hover .pill__caret { transform: translateY(2px); }

.filters__cta {
  flex: 0 0 auto;
}

/* ============================================================
   AVAILABILITY FILTERS V1.6
   ============================================================ */
.availability__filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  width: 100%;
  max-width: 1200px;
}
.filter-pill {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}
.filter-pill__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  color: var(--ivory);
  text-align: left;
}
.filter-pill__trigger:hover,
.filter-pill.is-open .filter-pill__trigger {
  background: var(--glass-bg-hover);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.filter-pill__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  opacity: 0.85;
}
.filter-pill__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.filter-pill__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.6);
}
.filter-pill__value {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--ivory);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filter-pill__value.has-value { font-weight: 500; }
.filter-pill__chevron {
  width: 14px; height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.3s var(--ease-out);
}
.filter-pill.is-open .filter-pill__chevron { transform: rotate(180deg); }

.availability__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 32px;
  background: var(--ivory);
  color: var(--ink);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}
.availability__cta svg { width: 16px; height: 16px; transition: transform 0.4s ease; }
.availability__cta:hover { transform: translateY(-2px); }
.availability__cta:hover svg { transform: translateX(4px); }

/* Popovers */
.filter-pill__popover {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 100%;
  background: var(--ivory);
  border: 1px solid var(--ivory-soft);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(10, 21, 32, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
  z-index: 50;
}
.filter-pill.is-open .filter-pill__popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.location-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}
.location-option:hover,
.location-option.is-selected { background: rgba(10, 21, 32, 0.05); }
.location-option__name {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.location-option__sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.7;
}

.filter-pill__popover--calendar {
  min-width: 640px;
  padding: 24px;
}
.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 8px;
  gap: 20px;
}
.calendar__nav {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ivory-soft);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}
.calendar__nav:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.calendar__nav svg { width: 14px; height: 14px; }
.calendar__months {
  display: flex;
  gap: 60px;
  flex: 1;
  justify-content: center;
}
.calendar__month {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.calendar__grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendar__weekday {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
  text-align: center;
  padding: 8px 0;
}
.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.calendar__day:hover:not(.is-disabled):not(.is-selected):not(.is-empty) {
  background: rgba(10, 21, 32, 0.06);
}
.calendar__day.is-disabled { color: rgba(10, 21, 32, 0.25); cursor: not-allowed; }
.calendar__day.is-empty { cursor: default; }
.calendar__day.is-selected {
  background: var(--ink);
  color: var(--ivory);
  font-weight: 500;
}
.calendar__day.is-in-range {
  background: rgba(10, 21, 32, 0.08);
  border-radius: 0;
}
.calendar__day.is-range-start {
  border-radius: 50% 0 0 50%;
  background: var(--ink);
  color: var(--ivory);
}
.calendar__day.is-range-end {
  border-radius: 0 50% 50% 0;
  background: var(--ink);
  color: var(--ivory);
}
.calendar__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 16px;
  border-top: 1px solid var(--ivory-soft);
}
.calendar__hint {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.7;
  letter-spacing: 0.05em;
}
.calendar__clear {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 12px;
  transition: opacity 0.3s ease;
}
.calendar__clear:hover { opacity: 0.6; }

.filter-pill__popover--guests {
  min-width: 320px;
  padding: 16px 20px;
  right: 0;
  left: auto;
}
.guests-selector__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}
.guests-selector__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
}
.guests-selector__sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.7;
}
.guests-selector__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.guests-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
  line-height: 1;
  padding: 0;
  font-family: var(--font-body);
}
.guests-btn:hover:not(:disabled) { background: var(--ink); color: var(--ivory); }
.guests-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.guests-selector__count {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  min-width: 24px;
  text-align: center;
}

/* Confirm modal */
.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.confirm-modal.is-open { opacity: 1; visibility: visible; }
.confirm-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 21, 32, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.confirm-modal__content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: calc(100% - 48px);
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ivory);
  padding: 48px 44px 40px;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.confirm-modal.is-open .confirm-modal__content {
  animation: modalIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(calc(-50% + 30px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}
.confirm-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.confirm-modal__close:hover { background: rgba(10, 21, 32, 0.06); }
.confirm-modal__close svg { width: 18px; height: 18px; }
.confirm-modal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}
.confirm-modal__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.85;
  margin: 0 0 28px;
}
.confirm-modal__summary {
  border-top: 1px solid var(--ivory-soft);
  border-bottom: 1px solid var(--ivory-soft);
  padding: 16px 0;
  margin-bottom: 28px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 8px 0;
}
.summary-row__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
}
.summary-row__value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  text-align: right;
}
.confirm-modal__cta {
  width: 100%;
  padding: 18px;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}
.confirm-modal__cta:hover { background: var(--ink-soft); }

/* Filter bar responsive */
@media (max-width: 1024px) {
  .availability__filters { flex-wrap: wrap; }
  .filter-pill { flex: 1 1 calc(33.333% - 12px); }
  .availability__cta { width: 100%; justify-content: center; order: 4; }
  .filter-pill__popover--calendar { min-width: 100%; }
}
@media (max-width: 768px) {
  .availability__filters { flex-direction: column; gap: 10px; }
  .filter-pill { flex: 1 1 100%; width: 100%; }
  .availability__cta { width: 100%; justify-content: center; }
  .filter-pill__popover { left: 0; right: 0; min-width: 100%; }
  .filter-pill__popover--guests { right: 0; left: 0; }
  .filter-pill__popover--calendar { padding: 16px; min-width: 100%; }
  .calendar__grids { grid-template-columns: 1fr; gap: 20px; }
  .calendar__months { gap: 20px; }
  .calendar__month--right { display: none; }
}

/* ============================================================
   SECCIÓN 4 — HIGHLIGHTS
   ============================================================ */
.highlights {
  padding: 160px var(--pad-x);
  background: var(--ivory);
}
.highlights__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}

/* --- media (imágenes superpuestas) --- */
.highlights__media {
  position: relative;
  width: 100%;
  min-height: 620px;
  aspect-ratio: 1 / 1;
}
.highlights__img-back,
.highlights__img-front {
  overflow: hidden;
  background: var(--ivory-soft);
}
.highlights__img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  aspect-ratio: 3 / 4;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(10, 21, 32, 0.15);
}
.highlights__img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  aspect-ratio: 3 / 4;
  z-index: 2;
  box-shadow: 0 32px 80px rgba(10, 21, 32, 0.25);
}
.highlights__img-back img,
.highlights__img-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.02) saturate(0.9) contrast(1.02);
}
.highlights__img-front img {
  object-position: 75% center;
  transform: scale(1.18);
  transform-origin: 75% center;
}

/* --- play button --- */
.highlights__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s var(--ease-out), border-color 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  z-index: 3;
}
.highlights__play::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation: pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.highlights__play::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  animation: pulse 2.4s ease-out infinite 1.2s;
  pointer-events: none;
}
@keyframes pulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}
.highlights__play:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) scale(1.08);
}
.highlights__play svg {
  width: 28px;
  height: 28px;
  fill: var(--ivory);
  margin-left: 4px;
}

/* --- content column --- */
.highlights__content { align-self: center; }
.highlights__header { margin-bottom: 56px; }
.highlights__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 5.2vw, 80px);
  line-height: 1.06;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
}
.highlights__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-top: 20px;
  max-width: 420px;
}
.highlights__rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-top: 32px;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  row-gap: 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.highlight-item__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.highlight-item__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.highlight-item:hover .highlight-item__icon {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.highlight-item h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 1.25;
  margin: 0;
}

/* ============================================================
   SECCIÓN 5 — CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  min-height: 720px;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  isolation: isolate;
}
.cta-final__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.cta-final__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.02) saturate(0.92) contrast(1.02);
  transition: transform 8s ease-out;
  will-change: transform;
}
.cta-final:hover .cta-final__media img {
  transform: scale(1.04);
}
.cta-final__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 21, 32, 0.72) 0%, rgba(10, 21, 32, 0.4) 50%, rgba(10, 21, 32, 0.15) 100%),
    linear-gradient(180deg, rgba(10, 21, 32, 0.15) 0%, transparent 30%, transparent 70%, rgba(10, 21, 32, 0.25) 100%);
  pointer-events: none;
}
.cta-final__content {
  position: relative;
  z-index: 2;
  padding: 120px var(--pad-x);
  max-width: 640px;
  margin-left: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cta-final__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 5.4vw, 84px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--ivory);
  margin-bottom: 40px;
  text-transform: uppercase;
}
.cta-final__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ivory);
  opacity: 0.7;
  max-width: 440px;
  margin-bottom: 56px;
}
.cta-final__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 44px;
  background: var(--ivory);
  border: 1px solid var(--ivory);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.5s var(--ease-out), color 0.5s var(--ease-out);
  align-self: flex-end;
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.cta-final__btn svg {
  width: 18px; height: 18px;
  transition: transform 0.5s var(--ease-out);
}
.cta-final__btn:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.cta-final__btn:hover svg { transform: translateX(6px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .filters { gap: 10px; }
  .pill { padding: 16px 22px; }
}

@media (max-width: 1024px) {
  :root { --pad-x: 6vw; }
  .services { padding: 110px var(--pad-x); }
  .services__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .services__grid--carousel > .card { flex: 0 0 calc((100% - 36px) / 3); }

  .navbar__nav ul { gap: 32px; }
  .navbar__nav a { font-size: 12px; letter-spacing: 0.15em; }

  .highlights { padding: 120px var(--pad-x); }
  .highlights__inner { gap: 5vw; }
  .highlights__media { min-height: 520px; }
  .highlights__header { margin-bottom: 40px; }
  .highlights__grid { column-gap: 24px; row-gap: 32px; }
}

@media (max-width: 768px) {
  :root { --pad-x: 24px; }

  /* NAVBAR — mobile */
  .navbar__top {
    padding: 16px 20px;
    grid-template-columns: auto 1fr auto;
  }
  .navbar__left { gap: 20px; }
  .navbar__left .navbar__search { display: none; }
  .navbar__left .navbar__lang { display: none; }
  .navbar__logo { justify-content: flex-start; }
  .navbar__logo img { height: 32px; }
  .navbar__menu-label { display: none; }
  .navbar__nav { display: none; }

  /* HERO — mobile */
  .hero { min-height: 560px; }
  .hero__content {
    left: 0; right: 0;
    padding: 0 var(--pad-x);
    text-align: center;
    bottom: 8%;
  }
  .hero__title {
    font-size: clamp(40px, 10vw, 64px);
  }
  .hero__foot {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
  }
  .hero__sub { justify-content: center; }
  .hero__cta { margin-left: 0; }
  .hero__vignette {
    background:
      linear-gradient(180deg, rgba(10, 21, 32, 0.55) 0%, rgba(10, 21, 32, 0.15) 30%, rgba(10, 21, 32, 0.15) 60%, rgba(10, 21, 32, 0.65) 100%);
  }

  /* SCROLL INDICATOR — off */
  .scroll-indicator { display: none; }

  /* SERVICES — carrusel horizontal */
  .services { padding: 90px 0; }
  .services__header {
    padding: 0 var(--pad-x);
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .services__controls { display: none; }
  .services__grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    padding: 4px var(--pad-x);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
  }
  .services__grid::-webkit-scrollbar { display: none; }
  .services__grid--carousel > .card,
  .card {
    flex: 0 0 75vw;
    scroll-snap-align: start;
    aspect-ratio: 3 / 4;
  }

  /* AVAILABILITY — mobile */
  .availability {
    padding: 90px var(--pad-x);
    min-height: 100vh;
  }
  .availability__bg { background-attachment: scroll; }
  .availability__sub { font-size: 15px; }
  .availability__title { font-size: clamp(40px, 11vw, 60px); }

  .filters {
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
  }
  .pill { width: 100%; flex: 1 1 auto; }
  .filters__cta { width: 100%; justify-content: center; margin-top: 8px; }

  /* HIGHLIGHTS — mobile */
  .highlights { padding: 80px var(--pad-x); }
  .highlights__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .highlights__media {
    min-height: 480px;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
  .highlights__img-back { width: 70%; }
  .highlights__img-front { width: 70%; }
  .highlights__img-back { box-shadow: 0 16px 40px rgba(10, 21, 32, 0.12); }
  .highlights__img-front { box-shadow: 0 20px 50px rgba(10, 21, 32, 0.2); }
  .highlights__play { width: 72px; height: 72px; }
  .highlights__play svg { width: 24px; height: 24px; }
  .highlights__header { margin-bottom: 36px; }
  .highlights__sub { font-size: 15px; }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); column-gap: 16px; row-gap: 24px; }
  .highlight-item { gap: 14px; }
  .highlight-item__icon { width: 52px; height: 52px; }
  .highlight-item__icon svg { width: 20px; height: 20px; }
  .highlight-item h3 { font-size: 14px; }

  /* CTA FINAL — mobile */
  .cta-final {
    min-height: 640px;
    justify-content: flex-end;
  }
  .cta-final__content {
    padding: 90px 24px;
    max-width: 100%;
    align-items: flex-end;
    text-align: right;
  }
  .cta-final__title { margin-bottom: 32px; }
  .cta-final__btn { padding: 20px 32px; }

  /* MODAL — mobile */
  .modal { padding: 20px 16px; }
  .modal__panel { padding: 8px; }
  .modal__text { margin-top: 28px; }
  .modal__title { font-size: clamp(32px, 8vw, 44px); }
  .modal__body { font-size: 15px; }
  .modal__close { top: 4px; right: 4px; }
}

@media (max-width: 380px) {
  .btn { padding: 18px 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg { animation: none; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--testimonials-bg);
  padding: 90px 8vw;
  color: var(--ivory);
  overflow: hidden;
}
.testimonials__container { max-width: 1400px; margin: 0 auto; }
.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 40px;
}
.testimonials__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0;
}
.testimonials__nav { display: flex; gap: 12px; flex-shrink: 0; }
.testimonials__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.3);
  background: transparent;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.testimonials__arrow:hover:not(:disabled) {
  background: var(--ivory);
  color: var(--testimonials-bg);
  border-color: var(--ivory);
  transform: translateY(-2px);
}
.testimonials__arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.testimonials__arrow svg { width: 18px; height: 18px; }

.testimonials__viewport {
  overflow: hidden;
  margin: 0 -20px 36px;
}
.testimonials__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.testimonial {
  flex: 0 0 50%;
  padding: 0 20px;
  box-sizing: border-box;
}
.testimonial__quote {
  display: block;
  margin-bottom: 20px;
  line-height: 0;
}
.testimonial__quote svg {
  width: 68px;
  height: auto;
  fill: var(--ivory);
  display: block;
}
.testimonial__meta { margin-bottom: 20px; }
.testimonial__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 22px;
  color: var(--ivory);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.testimonial__location {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(245, 241, 234, 0.65);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial__flag { font-size: 18px; line-height: 1; }
.testimonial__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 241, 234, 0.8);
  margin: 0;
  max-width: 480px;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(245, 241, 234, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}
.testimonial-dot:hover { background: rgba(245, 241, 234, 0.5); }
.testimonial-dot.is-active {
  background: var(--ivory);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .testimonials { padding: 100px 6vw; }
  .testimonials__header { margin-bottom: 60px; }
}
@media (max-width: 768px) {
  .testimonials { padding: 80px 24px; }
  .testimonials__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
  }
  .testimonial { flex: 0 0 100%; }
  .testimonial__quote svg { width: 54px; }
  .testimonial__name { font-size: 20px; }
  .testimonials__viewport { margin-bottom: 40px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  color: var(--ivory);
  padding: 100px 8vw 0;
  font-family: var(--font-body);
}
.footer__container {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 8vw;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__logo img {
  height: 56px;
  width: auto;
  display: block;
}
.footer__newsletter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  max-width: 340px;
  transition: border-color 0.3s ease;
}
.footer__newsletter:focus-within {
  border-color: rgba(255, 255, 255, 0.3);
}
.footer__newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  padding: 12px 0;
  min-width: 0;
}
.footer__newsletter input::placeholder {
  color: rgba(245, 241, 234, 0.5);
}
.footer__newsletter button {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.footer__newsletter button:hover {
  background: var(--gold);
  transform: translateX(2px);
}
.footer__newsletter button svg { width: 16px; height: 16px; }
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.footer__socials a:hover {
  background: var(--ivory);
  color: var(--footer-bg);
  border-color: var(--ivory);
  transform: translateY(-2px);
}
.footer__socials svg { width: 18px; height: 18px; }

.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 24px;
  line-height: 1.4;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}
.footer__col a:hover { color: var(--ivory); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--footer-border);
  font-size: 12px;
  color: var(--footer-text-muted);
  letter-spacing: 0.02em;
  max-width: 1400px;
  margin: 0 auto;
}
.footer__bottom a {
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}
.footer__bottom a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}
@media (max-width: 768px) {
  .footer { padding: 80px 24px 0; }
  .footer__container { gap: 48px; padding-bottom: 56px; }
  .footer__columns { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px 0;
  }
  .footer__logo img { height: 48px; }
}

/* ============================================================
   MOBILE RESPONSIVE V2.4 — comprehensive overrides
   Aplica sobre todas las reglas anteriores por cascade
   ============================================================ */
@media (max-width: 768px) {
  /* NAVBAR */
  .navbar__top {
    padding: 14px 20px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .navbar__left { gap: 14px; }
  .navbar__search { display: inline-flex; padding: 4px; }
  .navbar__search svg { width: 18px; height: 18px; }
  .navbar__lang { display: inline-flex; font-size: 12px; }
  .navbar__lang > svg { width: 10px; height: 10px; }
  .navbar__logo img { height: 32px; }
  .navbar__menu-label { display: none; }
  .navbar__menu-icon { width: 20px; }
  .navbar__nav { display: none; }
  .nav__lang-menu { left: 0; min-width: 160px; }

  /* HERO */
  .hero { min-height: 100vh; }
  .hero__bg { background-attachment: scroll; }
  .hero__content {
    padding: 100px 24px 60px;
    padding-top: 42vh;
    text-align: left;
  }
  .hero__title {
    font-size: clamp(44px, 12vw, 68px);
    line-height: 1.02;
    letter-spacing: 0.01em;
  }
  .hero__sub {
    font-size: 11px;
    letter-spacing: 0.2em;
    justify-content: flex-start;
  }
  .hero__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero__cta {
    padding: 18px 32px;
    font-size: 12px;
    letter-spacing: 0.18em;
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  .scroll-indicator { display: none; }

  /* SERVICES */
  .services { padding: 80px 0; }
  .services__header {
    padding: 0 24px;
    margin-bottom: 32px;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  .services__title { font-size: clamp(28px, 8vw, 40px); line-height: 1.1; }
  .services__controls { display: flex; }
  .services__ctrl {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--ink);
    color: var(--ink);
  }
  .services__grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 24px 8px;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }
  .services__grid::-webkit-scrollbar { display: none; }
  .card {
    flex: 0 0 calc(100vw - 72px);
    max-width: 340px;
    scroll-snap-align: start;
    aspect-ratio: 3 / 4;
  }

  /* AVAILABILITY */
  .availability {
    padding: 80px 24px;
    min-height: auto;
  }
  .availability__bg { background-attachment: scroll; }
  .availability__title {
    font-size: clamp(36px, 10vw, 56px);
    line-height: 1.05;
    margin-top: 0;
  }
  .availability__sub {
    font-size: 15px;
    margin-top: 20px;
    max-width: 100%;
  }
  .availability__filters {
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: nowrap;
  }
  .filter-pill { flex: 1 1 100%; width: 100%; }
  .filter-pill__trigger { padding: 16px 20px; }
  .availability__cta {
    width: 100%;
    justify-content: center;
    padding: 20px;
  }
  .filter-pill__popover { left: 0; right: 0; min-width: 100%; padding: 16px; }
  .filter-pill__popover--calendar { min-width: 100%; padding: 16px; }
  .calendar__grids { grid-template-columns: 1fr; gap: 20px; }
  .calendar__grid[data-month="right"] { display: none; }
  .calendar__month--right { display: none; }
  .calendar__months { justify-content: center; gap: 0; flex: 1; }
  .calendar__month { font-size: 16px; }
  .filter-pill__popover--guests { min-width: 100%; right: 0; left: 0; }

  /* HIGHLIGHTS */
  .highlights { padding: 80px 24px; }
  .highlights__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .highlights__media {
    min-height: auto;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  .highlights__img-back { width: 68%; box-shadow: 0 16px 40px rgba(10,21,32,0.12); }
  .highlights__img-front { width: 68%; box-shadow: 0 20px 50px rgba(10,21,32,0.2); }
  .highlights__play { width: 68px; height: 68px; }
  .highlights__play svg { width: 22px; height: 22px; }
  .highlights__title { font-size: clamp(36px, 9vw, 52px); line-height: 1.05; }
  .highlights__sub { font-size: 15px; margin-top: 16px; }
  .highlights__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    margin-top: 40px;
  }
  .highlight-item { align-items: flex-start; gap: 14px; }
  .highlight-item__icon { width: 48px; height: 48px; }
  .highlight-item__icon svg { width: 20px; height: 20px; }
  .highlight-item h3 { font-size: 14px; }

  /* TESTIMONIALS */
  .testimonials { padding: 80px 0; }
  .testimonials__container { padding: 0 24px; }
  .testimonials__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
  }
  .testimonials__title { font-size: clamp(36px, 9vw, 52px); line-height: 1.05; }
  .testimonials__nav { align-self: flex-end; }
  .testimonials__arrow { width: 42px; height: 42px; }
  .testimonials__viewport { margin: 0 -24px 32px; padding: 0 24px; }
  .testimonial { flex: 0 0 100%; padding: 0 6px; }
  .testimonial__quote { margin-bottom: 14px; }
  .testimonial__quote svg { width: 40px; }
  .testimonial__meta { margin-bottom: 14px; }
  .testimonial__name { font-size: 17px; }
  .testimonial__location { font-size: 12px; }
  .testimonial__flag { font-size: 15px; }
  .testimonial__text { font-size: 13px; line-height: 1.6; }

  /* CTA FINAL */
  .cta-final {
    display: flex;
    flex-direction: column;
    min-height: auto;
    justify-content: flex-start;
  }
  .cta-final__media {
    position: relative;
    aspect-ratio: 4 / 5;
    order: 1;
  }
  .cta-final__media::after {
    top: auto; right: 0; bottom: 0; left: 0;
    width: 100%; height: 30%;
    background: linear-gradient(180deg, transparent 0%, var(--ink) 100%);
  }
  .cta-final__content {
    order: 2;
    padding: 60px 24px 80px;
    max-width: 100%;
    margin-left: 0;
    align-items: flex-start;
    text-align: left;
  }
  .cta-final__title {
    font-size: clamp(36px, 9vw, 52px);
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .cta-final__btn {
    width: 100%;
    justify-content: center;
    padding: 20px;
    align-self: stretch;
  }

  /* FOOTER */
  .footer { padding: 60px 24px 0; }
  .footer__container { gap: 48px; padding-bottom: 48px; }
  .footer__brand { gap: 24px; align-items: flex-start; }
  .footer__logo img { height: 44px; }
  .footer__newsletter { max-width: 100%; width: 100%; }
  .footer__columns { grid-template-columns: 1fr; gap: 32px; }
  .footer__col h4 { font-size: 11px; margin-bottom: 18px; }
  .footer__col a { font-size: 14px; }
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 0;
    font-size: 11px;
  }

  /* CONFIRM MODAL */
  .confirm-modal__content {
    padding: 44px 28px 32px;
    width: calc(100% - 32px);
    max-height: 90vh;
    overflow-y: auto;
  }
  .confirm-modal__title { font-size: 28px; }
  .confirm-modal__desc { font-size: 14px; }
  .confirm-modal__summary { padding: 16px 0; }
  .summary-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0;
  }
  .summary-row__value { text-align: left; font-size: 13px; }
  .confirm-modal__cta { width: 100%; }
}

/* ============================================================
   FIX CALENDAR CORTADO v2.6
   .availability tenia overflow:hidden que clippeaba el popover.
   Force visible + subir z-index del popover.
   ============================================================ */
.availability { overflow: visible !important; }
.filter-pill { overflow: visible !important; }
.filter-pill__popover {
  overflow: visible !important;
  max-height: none !important;
  z-index: 150 !important;
}
.filter-pill__popover--calendar {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
  z-index: 150 !important;
}
.calendar,
.calendar__grids,
.calendar__grid {
  overflow: visible;
  height: auto;
  max-height: none;
}
.calendar__day { min-height: 34px; }

/* ============================================================
   GALLERY PAGE v3.0
   ============================================================ */
.gallery-hero {
  padding: 170px 8vw 40px;
  background: var(--ivory);
}
.gallery-hero__container { max-width: 1400px; margin: 0 auto; text-align: left; }
.gallery-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px 0;
}
.gallery-hero__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.7;
  max-width: 520px;
}

.gallery { padding: 30px 8vw 80px; background: var(--ivory); }
.gallery__container { max-width: 1120px; margin: 0 auto; }
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 16 / 8.2;
  min-height: 440px;
  max-height: 620px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--ink-soft);
  border-radius: 2px;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(1.02) saturate(0.92) contrast(1.02);
  display: block;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 21, 32, 0);
  transition: background 0.4s ease;
  pointer-events: none;
}
.gallery__item:hover::after { background: rgba(10, 21, 32, 0.15); }
.gallery__item--tl { grid-column: 1; grid-row: 1; }
.gallery__item--bl { grid-column: 1; grid-row: 2; }
.gallery__item--center { grid-column: 2; grid-row: 1 / span 2; }
.gallery__item--tr { grid-column: 3; grid-row: 1; }
.gallery__item--br { grid-column: 3; grid-row: 2; }
.gallery__item--extra { grid-column: 2; grid-row: 2; }

.gallery__grid--six .gallery__item--center { grid-row: 1; }

.gallery__grid.is-transitioning .gallery__item img {
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.gallery__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.gallery__dots {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gallery-dot {
  width: 32px; height: 2px;
  background: rgba(10, 21, 32, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-dot:hover { background: rgba(10, 21, 32, 0.5); }
.gallery-dot.is-active {
  background: var(--ink);
  width: 48px;
}
.gallery__viewall {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  transition: color 0.3s ease;
}
.gallery__viewall svg { width: 16px; height: 16px; transition: transform 0.4s ease; }
.gallery__viewall:hover svg { transform: translateX(4px); }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 21, 32, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.lightbox__stage {
  position: relative;
  z-index: 1;
  width: calc(100% - 200px);
  max-width: 1200px;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}
.lightbox__img.is-loading { opacity: 0; }
.lightbox__close {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.3);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.lightbox__close:hover { background: var(--ivory); color: var(--ink); }
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.3);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox__arrow:hover { background: var(--ivory); color: var(--ink); }
.lightbox__arrow--prev { left: 32px; }
.lightbox__arrow--next { right: 32px; }
.lightbox__arrow svg { width: 20px; height: 20px; }
.lightbox__counter {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(245, 241, 234, 0.7);
}
.lightbox__current { font-weight: 500; color: var(--ivory); }

/* GALLERY CTA */
.gallery-cta {
  background: var(--ink);
  padding: 140px 8vw;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.gallery-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245, 241, 234, 0.06), transparent 60%);
  pointer-events: none;
}
.gallery-cta__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.gallery-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 32px 0;
}
.gallery-cta__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ivory);
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto 48px;
}
.gallery-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 44px;
  background: transparent;
  border: 1px solid var(--ivory);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-cta__btn svg {
  width: 18px; height: 18px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-cta__btn:hover { background: var(--ivory); color: var(--ink); }
.gallery-cta__btn:hover svg { transform: translateX(6px); }

/* Responsive gallery */
@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    aspect-ratio: auto;
    min-height: auto;
    max-height: none;
  }
  .gallery__item--tl { grid-column: 1; grid-row: 1; }
  .gallery__item--bl { grid-column: 1; grid-row: 2; }
  .gallery__item--center { grid-column: 2; grid-row: 1 / span 2; aspect-ratio: 4/5; }
  .gallery__item--tr { grid-column: 1; grid-row: 3; }
  .gallery__item--br { grid-column: 2; grid-row: 3; }
  .gallery__item { aspect-ratio: 4/5; }
  .gallery__grid--six .gallery__item--center { grid-column: 2; grid-row: 1; }
  .gallery__grid--six .gallery__item--extra { grid-column: 2; grid-row: 2; }
  .gallery__grid--six .gallery__item--tr { grid-column: 1; grid-row: 3; }
  .gallery__grid--six .gallery__item--br { grid-column: 2; grid-row: 3; }
}
@media (max-width: 768px) {
  .gallery-hero { padding: 130px 24px 40px; }
  .gallery { padding: 32px 24px 80px; }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 12px;
  }
  .gallery__item {
    grid-column: 1 !important;
    grid-row: auto !important;
    aspect-ratio: 4/3;
  }
  .gallery__item--center { aspect-ratio: 3/4; }
  .gallery__controls {
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
  }
  .lightbox__stage { width: calc(100% - 32px); height: 70vh; }
  .lightbox__close { top: 16px; right: 16px; width: 40px; height: 40px; }
  .lightbox__arrow { width: 44px; height: 44px; }
  .lightbox__arrow--prev { left: 12px; }
  .lightbox__arrow--next { right: 12px; }
  .lightbox__counter { bottom: 20px; }
  .gallery-cta { padding: 90px 24px; }
  .gallery-cta__title { font-size: clamp(36px, 9vw, 52px); }
  .gallery-cta__desc { font-size: 15px; margin-bottom: 36px; }
  .gallery-cta__btn { padding: 20px 32px; width: 100%; justify-content: center; }
}

/* ============================================================
   CONTACT PAGE v3.1
   ============================================================ */
.contact-form {
  background: var(--ivory);
  padding: 200px 8vw 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.contact-form__container { max-width: 900px; margin: 0 auto; width: 100%; }
.contact-form__header { margin-bottom: 72px; text-align: left; }
.contact-form__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px 0;
}
.contact-form__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.7;
  max-width: 480px;
}
.contact-form__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
}
.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10, 21, 32, 0.2);
  padding: 12px 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--ink); }
.form-field textarea { min-height: 120px; line-height: 1.6; }
.contact-form__submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 44px;
  background: var(--ink);
  border: none;
  border-radius: 100px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.contact-form__submit svg { width: 18px; height: 18px; transition: transform 0.4s ease; }
.contact-form__submit:hover { background: var(--ink-soft); transform: translateY(-2px); }
.contact-form__submit:hover svg { transform: translateX(4px); }

.contact-social {
  position: relative;
  padding: 140px 8vw;
  color: var(--ivory);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.contact-social__bg { position: absolute; inset: 0; z-index: 0; }
.contact-social__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
}
.contact-social__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 21, 32, 0.4) 0%, rgba(10, 21, 32, 0.7) 100%);
}
.contact-social__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.contact-social__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 72px 0;
}
.contact-social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 24px;
  color: var(--ivory);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.social-item:hover { transform: translateY(-6px); }
.social-item__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.social-item:hover .social-item__icon {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.social-item__icon svg { width: 30px; height: 30px; }
.social-item__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
}
.social-item__handle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--ivory);
  opacity: 0.75;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .contact-form { padding: 130px 24px 80px; min-height: auto; }
  .contact-form__header { margin-bottom: 40px; }
  .contact-form__title { font-size: clamp(36px, 9vw, 56px); }
  .contact-form__desc { font-size: 15px; }
  .contact-form__form { grid-template-columns: 1fr; gap: 28px; }
  .contact-form__submit { width: 100%; justify-content: center; padding: 20px; margin-top: 12px; }
  .contact-social { padding: 90px 24px; min-height: auto; }
  .contact-social__title { font-size: clamp(36px, 9vw, 56px); margin-bottom: 48px; }
  .contact-social__grid { grid-template-columns: 1fr; gap: 24px; }
  .social-item { padding: 20px; }
  .social-item__icon { width: 68px; height: 68px; }
}

/* ============================================================
   GALLERY SIDE ARROWS v6.4 - GLASS CIRCLES
   ============================================================ */
.gallery__carousel { position: relative; width: 100%; }
.gallery__side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.55);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(10, 21, 32, 0.08);
  box-shadow: 0 8px 24px rgba(10, 21, 32, 0.08), 0 2px 6px rgba(10, 21, 32, 0.04);
  cursor: pointer;
  color: var(--ink);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.gallery__side-arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__side-arrow:hover {
  background: rgba(245, 241, 234, 0.9);
  border-color: rgba(10, 21, 32, 0.2);
  box-shadow: 0 14px 32px rgba(10, 21, 32, 0.12), 0 4px 10px rgba(10, 21, 32, 0.08);
}
.gallery__side-arrow:active { transform: translateY(-50%) scale(0.96); }
.gallery__side-arrow--prev { left: -96px; }
.gallery__side-arrow--next { right: -96px; }
.gallery__side-arrow--prev:hover svg { transform: translateX(-4px); }
.gallery__side-arrow--next:hover svg { transform: translateX(4px); }
.gallery__side-arrow:disabled { pointer-events: none; opacity: 0.4; }

@media (max-width: 1600px) {
  .gallery__side-arrow--prev { left: -72px; }
  .gallery__side-arrow--next { right: -72px; }
}
@media (max-width: 1400px) {
  .gallery__side-arrow--prev { left: -40px; }
  .gallery__side-arrow--next { right: -40px; }
}
@media (max-width: 1200px) {
  .gallery__side-arrow { width: 48px; height: 48px; }
  .gallery__side-arrow svg { width: 18px; height: 18px; }
  .gallery__side-arrow--prev { left: -20px; }
  .gallery__side-arrow--next { right: -20px; }
}
@media (max-width: 900px) {
  .gallery__side-arrow { width: 44px; height: 44px; background: rgba(245, 241, 234, 0.75); }
  .gallery__side-arrow svg { width: 16px; height: 16px; }
  .gallery__side-arrow--prev { left: 12px; }
  .gallery__side-arrow--next { right: 12px; }
}
@media (max-width: 768px) {
  .gallery__side-arrow { display: none; }
}

/* ============================================================
   FAQ v3.6
   ============================================================ */
.faq { background: var(--ivory); padding: 140px 8vw; color: var(--ink); }
.faq__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8vw;
}
.faq__header {
  position: sticky;
  top: 120px;
  align-self: start;
  height: fit-content;
}
.faq__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px 0;
}
.faq__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.7;
  max-width: 360px;
}
.faq__list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(10, 21, 32, 0.12); }
.faq-item:last-child { border-bottom: 1px solid rgba(10, 21, 32, 0.12); }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.3s ease;
}
.faq-item__trigger:hover { opacity: 0.7; }
.faq-item__question {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: 0.005em;
  flex: 1;
}
.faq-item__toggle {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.faq-item__toggle-line {
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item__toggle-line--h { transform: translateY(-50%); }
.faq-item__toggle-line--v { transform: translateY(-50%) rotate(90deg); }
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item__panel-inner { overflow: hidden; }
.faq-item__panel-inner p {
  padding-bottom: 32px;
  padding-right: 40px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.72;
  margin: 0;
}
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item.is-open .faq-item__toggle-line--v { transform: translateY(-50%) rotate(0deg); }

@media (max-width: 1024px) {
  .faq__container { grid-template-columns: 1fr; gap: 60px; }
  .faq__header { position: relative; top: auto; }
}
@media (max-width: 768px) {
  .faq { padding: 80px 24px; }
  .faq__container { gap: 40px; }
  .faq__title { font-size: clamp(36px, 9vw, 56px); }
  .faq__desc { font-size: 15px; max-width: 100%; }
  .faq-item__trigger { padding: 24px 0; gap: 16px; }
  .faq-item__question { font-size: 17px; }
  .faq-item__panel-inner p { padding-right: 0; padding-bottom: 24px; font-size: 14px; }
}

/* ============================================================
   FIXED LOCATION PILL v3.5
   ============================================================ */
.filter-pill--fixed .filter-pill__trigger { cursor: default; }
.filter-pill--fixed .filter-pill__trigger:hover {
  background: var(--glass-bg);
  transform: none;
  border-color: var(--glass-border);
}
.filter-pill--fixed .filter-pill__chevron { display: none; }

/* ============================================================
   RESERVATION WIZARD v3.5
   ============================================================ */
.wizard {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}
.wizard.is-open { opacity: 1; visibility: visible; }
.wizard__card {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: min(calc(100vh - 120px), 720px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(245, 241, 234, 0.14);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid rgba(245, 241, 234, 0.22);
  border-radius: 6px;
  padding: 56px 48px;
  box-shadow: 0 40px 100px rgba(10, 21, 32, 0.4);
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.wizard.is-open .wizard__card { transform: translateY(0); }

.wizard__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.3);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 5;
}
.wizard__close:hover { background: var(--ivory); color: var(--ink); }
.wizard__close svg { width: 16px; height: 16px; }
.wizard--standalone .wizard__card { padding: 60px 44px 44px; }
.wizard--standalone .wizard__close { color: var(--ink); border-color: rgba(10, 21, 32, 0.2); }
.wizard--standalone .wizard__close:hover { background: var(--ink); color: var(--ivory); }

.wizard__progress {
  margin-bottom: 40px;
  position: relative;
  width: calc(100% - 72px);
  max-width: calc(100% - 72px);
}
.wizard__progress::before {
  content: '';
  display: block;
  height: 3px;
  background: #FFFFFF;
  border-radius: 4px;
}
.wizard__progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 25%;
  background: rgba(10, 21, 32, 0.4);
  border-radius: 4px;
  box-shadow: none;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.wizard__progress-fill::after { display: none; }
.wizard__progress-label {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10, 21, 32, 0.55);
}
@media (max-width: 768px) {
  .wizard__progress {
    margin-bottom: 28px;
    width: calc(100% - 56px);
    max-width: calc(100% - 56px);
  }
  .wizard__progress::before,
  .wizard__progress-fill { height: 2px; }
  .wizard__progress-label { margin-top: 12px; font-size: 9px; letter-spacing: 0.28em; }
}

.wizard__step { display: none; }
.wizard__step.is-active {
  display: block;
  animation: stepFade 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes stepFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.wizard__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 16px 0;
}
.wizard__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.8);
  margin: 0 0 32px 0;
}
.wizard__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.wizard-option {
  background: rgba(245, 241, 234, 0.08);
  border: 1px solid rgba(245, 241, 234, 0.2);
  border-radius: 100px;
  padding: 18px 20px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  text-align: center;
}
.wizard-option:hover {
  background: rgba(245, 241, 234, 0.16);
  border-color: rgba(245, 241, 234, 0.4);
}
.wizard-option.is-selected {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.wizard__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  margin-bottom: 40px;
}
.wizard-field { display: flex; flex-direction: column; gap: 8px; }
.wizard-field--full { grid-column: 1 / -1; }
.wizard-field label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.6);
}
.wizard-field input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 241, 234, 0.25);
  padding: 10px 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
}
.wizard-field input::placeholder { color: rgba(245, 241, 234, 0.35); }
.wizard-field input:focus { border-bottom-color: var(--ivory); }

.wizard__summary-mini {
  display: flex;
  gap: 24px;
  padding: 16px 20px;
  background: rgba(245, 241, 234, 0.06);
  border-radius: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.wizard__summary-item {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(245, 241, 234, 0.7);
}
.wizard__summary-item strong { color: var(--ivory); font-weight: 500; margin-left: 6px; }

.wizard__plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.wizard-plan {
  background: rgba(245, 241, 234, 0.06);
  border: 1px solid rgba(245, 241, 234, 0.2);
  border-radius: 12px;
  padding: 24px 20px;
  color: var(--ivory);
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.wizard-plan:hover {
  background: rgba(245, 241, 234, 0.12);
  border-color: rgba(245, 241, 234, 0.4);
  transform: translateY(-2px);
}
.wizard-plan.is-selected {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.wizard-plan__hours {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}
.wizard-plan__price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.wizard-plan__note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.wizard__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid rgba(245, 241, 234, 0.15);
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
  margin-bottom: 32px;
}
.wizard__total > span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.7);
}
.wizard__total strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--ivory);
}

.wizard__step--success { text-align: center; }
.wizard__logo { margin-bottom: 24px; }
.wizard__logo img { height: 48px; }
.wizard__step--success .wizard__desc {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.wizard__receipt {
  background: rgba(245, 241, 234, 0.06);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 32px 0 24px;
  text-align: left;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
}
.receipt-row:last-child { border-bottom: none; }
.receipt-row--total {
  padding-top: 16px;
  margin-top: 6px;
  border-top: 1px solid rgba(245, 241, 234, 0.2);
}
.receipt-row__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.6);
}
.receipt-row__value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ivory);
}
.receipt-row--total .receipt-row__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}
.wizard__disclaimer {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.55);
  letter-spacing: 0.02em;
  margin: 24px 0;
  text-align: center;
}
.wizard__actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.wizard__btn {
  flex: 1;
  padding: 18px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}
.wizard__btn--full { flex: 1 1 100%; }
.wizard__btn--secondary {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 241, 234, 0.4);
}
.wizard__btn--secondary:hover { background: rgba(245, 241, 234, 0.1); border-color: var(--ivory); }
.wizard__btn--primary { background: var(--ivory); color: var(--ink); }
.wizard__btn--primary:hover:not(:disabled) { background: var(--ivory-soft); transform: translateY(-1px); }
.wizard__btn--primary:disabled { opacity: 0.35; cursor: not-allowed; }

.availability.is-wizard-open .availability__content > *:not(.wizard) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s;
}

@media (max-width: 768px) {
  .wizard { padding: 20px 16px; align-items: flex-start; padding-top: 40px; }
  .wizard__card { padding: 40px 24px; max-height: calc(100vh - 60px); }
  .wizard__title { font-size: clamp(24px, 7vw, 36px); }
  .wizard__options { grid-template-columns: 1fr; }
  .wizard__fields { grid-template-columns: 1fr; }
  .wizard__plans { grid-template-columns: 1fr; }
  .wizard-plan__price { font-size: 30px; }
  .wizard__actions { flex-direction: column-reverse; }
  .wizard__btn { width: 100%; }
}

/* ============================================================
   WIZARD STEP 3 EDITABLE v3.8
   ============================================================ */
.wizard__summary-mini {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(245, 241, 234, 0.06);
  border-radius: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.wizard__summary-item--editable {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 100px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  flex: 1;
  min-width: 0;
  text-align: left;
}
.wizard__summary-item--editable:hover {
  background: rgba(245, 241, 234, 0.1);
  border-color: rgba(245, 241, 234, 0.35);
}
.wizard__summary-item--editable.is-active {
  background: rgba(245, 241, 234, 0.14);
  border-color: rgba(245, 241, 234, 0.5);
}
.wizard__summary-label { color: rgba(245, 241, 234, 0.6); flex-shrink: 0; }
.wizard__summary-item--editable strong {
  color: var(--ivory);
  font-weight: 500;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wizard__summary-edit {
  width: 12px; height: 12px;
  opacity: 0.55;
  flex-shrink: 0;
}

.wizard__edit-popover {
  position: absolute;
  top: calc(100% + 8px);
  z-index: 20;
  background: rgba(20, 30, 42, 0.96);
  backdrop-filter: blur(30px) saturate(1.6);
  -webkit-backdrop-filter: blur(30px) saturate(1.6);
  border: 1px solid rgba(245, 241, 234, 0.22);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  pointer-events: none;
}
.wizard__edit-popover.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.wizard__edit-popover[data-popover="date"] {
  left: 0;
  width: 320px;
  max-width: calc(100vw - 80px);
}
.wizard__edit-popover[data-popover="guests"] {
  right: 0;
  min-width: 220px;
}

.wizard__mini-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.wizard__mini-cal-nav {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.25);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.wizard__mini-cal-nav:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.wizard__mini-cal-nav svg { width: 12px; height: 12px; }
.wizard__mini-cal-month {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.wizard__mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.wizard__mini-cal-weekday {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
  text-align: center;
  padding: 4px 0;
}
.wizard__mini-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--ivory);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.wizard__mini-cal-day:hover:not(.is-disabled):not(.is-selected):not(.is-empty) {
  background: rgba(245, 241, 234, 0.12);
}
.wizard__mini-cal-day.is-disabled { color: rgba(245, 241, 234, 0.2); cursor: not-allowed; }
.wizard__mini-cal-day.is-empty { cursor: default; }
.wizard__mini-cal-day.is-selected {
  background: var(--ivory);
  color: var(--ink);
  font-weight: 500;
}

.wizard__mini-guests {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 0;
}
.wizard__mini-guests-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.35);
  background: transparent;
  color: var(--ivory);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  padding: 0;
  font-family: var(--font-body);
}
.wizard__mini-guests-btn:hover:not(:disabled) {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.wizard__mini-guests-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.wizard__mini-guests-count {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--ivory);
  min-width: 30px;
  text-align: center;
}
.wizard__mini-guests-limit {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 241, 234, 0.15);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
  text-align: center;
}

@media (max-width: 640px) {
  .wizard__edit-popover[data-popover="date"],
  .wizard__edit-popover[data-popover="guests"] {
    width: calc(100% - 16px);
    left: 8px;
    right: 8px;
  }
}

/* ============================================================
   WIZARD v3.9 — LIGHT + GLASS HALO (override)
   ============================================================ */
.wizard__card {
  background: var(--ivory);
  border: 1px solid rgba(10, 21, 32, 0.08);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(10, 21, 32, 0.45);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.wizard__card::before {
  content: '';
  position: absolute;
  inset: -14px;
  z-index: -1;
  background: rgba(245, 241, 234, 0.14);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid rgba(245, 241, 234, 0.28);
  border-radius: 16px;
  pointer-events: none;
}
.wizard__close {
  border: 1px solid rgba(10, 21, 32, 0.15);
  color: var(--ink);
}
.wizard__close:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.wizard__progress::before { background: #FFFFFF; }
.wizard__progress-fill { background: rgba(10, 21, 32, 0.4); box-shadow: none; }
.wizard__progress-label { color: rgba(10, 21, 32, 0.55); }

.wizard__title { color: var(--ink); }
.wizard__desc { color: rgba(10, 21, 32, 0.7); }

.wizard-option {
  background: transparent;
  border: 1px solid rgba(10, 21, 32, 0.18);
  color: var(--ink);
}
.wizard-option:hover {
  background: rgba(10, 21, 32, 0.05);
  border-color: rgba(10, 21, 32, 0.4);
}
.wizard-option.is-selected {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.wizard-field label { color: rgba(10, 21, 32, 0.55); }
.wizard-field input {
  border-bottom: 1px solid rgba(10, 21, 32, 0.2);
  color: var(--ink);
}
.wizard-field input::placeholder { color: rgba(10, 21, 32, 0.3); }
.wizard-field input:focus { border-bottom-color: var(--ink); }

.wizard__summary-mini { background: rgba(10, 21, 32, 0.04); }
.wizard__summary-item--editable {
  background: var(--ivory);
  border: 1px solid rgba(10, 21, 32, 0.12);
  color: var(--ink);
}
.wizard__summary-item--editable:hover {
  background: rgba(10, 21, 32, 0.03);
  border-color: rgba(10, 21, 32, 0.35);
}
.wizard__summary-item--editable.is-active {
  background: rgba(10, 21, 32, 0.05);
  border-color: rgba(10, 21, 32, 0.5);
}
.wizard__summary-label { color: rgba(10, 21, 32, 0.55); }
.wizard__summary-item--editable strong { color: var(--ink); }
.wizard__summary-edit { opacity: 0.5; }

.wizard__edit-popover {
  background: var(--ivory);
  border: 1px solid rgba(10, 21, 32, 0.12);
  box-shadow: 0 20px 50px rgba(10, 21, 32, 0.25);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.wizard__mini-cal-nav {
  border: 1px solid rgba(10, 21, 32, 0.15);
  color: var(--ink);
}
.wizard__mini-cal-nav:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.wizard__mini-cal-month { color: var(--ink); }
.wizard__mini-cal-weekday { color: rgba(10, 21, 32, 0.45); }
.wizard__mini-cal-day { color: var(--ink); }
.wizard__mini-cal-day:hover:not(.is-disabled):not(.is-selected):not(.is-empty) {
  background: rgba(10, 21, 32, 0.06);
}
.wizard__mini-cal-day.is-disabled { color: rgba(10, 21, 32, 0.2); }
.wizard__mini-cal-day.is-selected {
  background: var(--ink);
  color: var(--ivory);
}
.wizard__mini-guests-btn {
  border: 1px solid rgba(10, 21, 32, 0.25);
  color: var(--ink);
}
.wizard__mini-guests-btn:hover:not(:disabled) {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.wizard__mini-guests-count { color: var(--ink); }
.wizard__mini-guests-limit {
  border-top: 1px solid rgba(10, 21, 32, 0.1);
  color: rgba(10, 21, 32, 0.5);
}

.wizard-plan {
  background: transparent;
  border: 1px solid rgba(10, 21, 32, 0.15);
  color: var(--ink);
}
.wizard-plan:hover {
  background: rgba(10, 21, 32, 0.03);
  border-color: rgba(10, 21, 32, 0.35);
}
.wizard-plan.is-selected {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.wizard__total {
  border-top: 1px solid rgba(10, 21, 32, 0.12);
  border-bottom: 1px solid rgba(10, 21, 32, 0.12);
}
.wizard__total > span { color: rgba(10, 21, 32, 0.65); }
.wizard__total strong { color: var(--ink); }

.wizard__logo img { filter: brightness(0); opacity: 0.92; }

.wizard__receipt { background: rgba(10, 21, 32, 0.04); }
.receipt-row { border-bottom: 1px solid rgba(10, 21, 32, 0.08); }
.receipt-row:last-child { border-bottom: none; }
.receipt-row--total { border-top: 1px solid rgba(10, 21, 32, 0.15); }
.receipt-row__label { color: rgba(10, 21, 32, 0.55); }
.receipt-row__value { color: var(--ink); }
.wizard__disclaimer { color: rgba(10, 21, 32, 0.55); }

.wizard__btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(10, 21, 32, 0.35);
}
.wizard__btn--secondary:hover {
  background: rgba(10, 21, 32, 0.05);
  border-color: var(--ink);
}
.wizard__btn--primary {
  background: var(--ink);
  color: var(--ivory);
}
.wizard__btn--primary:hover:not(:disabled) {
  background: var(--ink-soft);
  color: var(--ivory);
}

@media (max-width: 768px) {
  .wizard__card::before { inset: -10px; border-radius: 14px; }
}

/* ============================================================
   MOBILE MENU FULLSCREEN v4.0
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(10, 21, 32, 0.08);
}
.mobile-menu__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0);
  opacity: 0.92;
}
.mobile-menu__close {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(10, 21, 32, 0.15);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  padding: 0;
}
.mobile-menu__close:hover,
.mobile-menu__close:active {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.mobile-menu__close svg { width: 18px; height: 18px; }

.mobile-menu__nav { flex: 1; padding: 8px 0; }
.mobile-menu__nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu__nav li {
  border-bottom: 1px solid rgba(10, 21, 32, 0.08);
  opacity: 0;
  transform: translateX(30px);
}
.mobile-menu.is-open .mobile-menu__nav li {
  animation: menuItemIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.mobile-menu.is-open .mobile-menu__nav li:nth-child(1) { animation-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(2) { animation-delay: 0.22s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(3) { animation-delay: 0.29s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(4) { animation-delay: 0.36s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(5) { animation-delay: 0.43s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(6) { animation-delay: 0.50s; }
@keyframes menuItemIn { to { opacity: 1; transform: translateX(0); } }

.mobile-menu__link {
  display: block;
  padding: 26px 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 8vw, 42px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.mobile-menu__link::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  width: 20px; height: 1px;
  background: var(--gold);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu__link:hover,
.mobile-menu__link:active { padding-left: 60px; color: var(--ink); }
.mobile-menu__link:hover::before,
.mobile-menu__link:active::before { transform: translateY(-50%) scaleX(1); }

.mobile-menu__footer {
  padding: 32px 24px 40px;
  border-top: 1px solid rgba(10, 21, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.is-open .mobile-menu__footer {
  animation: menuFooterIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.6s;
}
@keyframes menuFooterIn { to { opacity: 1; transform: translateY(0); } }

.mobile-menu__lang { display: flex; align-items: center; gap: 12px; }
.mobile-menu__lang-btn {
  background: transparent; border: none; padding: 4px 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 400; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(10, 21, 32, 0.45);
  transition: color 0.3s ease;
}
.mobile-menu__lang-btn.is-active,
.mobile-menu__lang-btn:hover { color: var(--ink); }
.mobile-menu__lang-sep { color: rgba(10, 21, 32, 0.25); font-size: 12px; }

.mobile-menu__socials { display: flex; gap: 12px; }
.mobile-menu__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(10, 21, 32, 0.15);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}
.mobile-menu__socials a:hover,
.mobile-menu__socials a:active {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.mobile-menu__socials svg { width: 16px; height: 16px; }

body.mobile-menu-open { overflow: hidden; }

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

.navbar__menu-icon span {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  transform-origin: center;
}
.navbar__menu.is-active .navbar__menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar__menu.is-active .navbar__menu-icon span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.navbar__menu.is-active .navbar__menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Bajar titular hero mobile v4.0 */
@media (max-width: 768px) {
  .hero__content { padding-top: 52vh; }
}

/* ============================================================
   HIGHLIGHTS CTA v4.2
   ============================================================ */
.highlights__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  padding: 8px 0;
  background: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  transition: color 0.4s ease;
  align-self: flex-start;
  width: fit-content;
}
.highlights__cta-label { position: relative; }
.highlights__cta-label::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.highlights__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.highlights__cta-arrow svg { width: 18px; height: 18px; }
.highlights__cta:hover { color: var(--gold); }
.highlights__cta:hover .highlights__cta-label::after { transform: scaleX(1); }
.highlights__cta:hover .highlights__cta-arrow { transform: translateX(6px); }

@media (max-width: 768px) {
  .highlights__cta { margin-top: 32px; font-size: 11px; }
  .highlights__cta-arrow svg { width: 16px; height: 16px; }
}

/* ============================================================
   WIZARD SECUENCIA PREMIUM v4.3
   Coreografia: fondo sale primero → wizard entra
   ============================================================ */

/* Contenido de la seccion — vuelve con delay al cerrar wizard */
.availability__content > *:not(.wizard) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
    visibility 0.5s 0.4s,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

/* Contenido — salida rapida sin delay al abrir wizard */
.availability.is-wizard-open .availability__content > *:not(.wizard) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  pointer-events: none;
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.4s,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Wizard container — abrir con delay, cerrar rapido */
.wizard {
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s;
}
.wizard.is-open {
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
    visibility 0.5s 0.4s;
}

/* Wizard card — scale + translateY con delay */
.wizard__card {
  transform: translateY(30px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wizard.is-open .wizard__card {
  transform: translateY(0) scale(1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

/* Fix franja azul arriba del CTA final v4.4 */
.cta-final { background: transparent !important; }
.cta-final__media { background: var(--ivory); }

/* ============================================================
   SUCCESS STEP v4.5 - COMPACTO
   ============================================================ */
.wizard__step--success .wizard__title {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.wizard__step--success .wizard__desc {
  max-width: 380px;
  margin: 0 auto 24px;
  font-size: 13px;
  line-height: 1.55;
}
.wizard__step--success .wizard__receipt {
  padding: 16px 20px;
  margin: 0 0 20px;
}
.wizard__step--success .receipt-row { padding: 8px 0; }
.wizard__step--success .receipt-row--total {
  padding-top: 12px;
  margin-top: 4px;
}
.wizard__step--success .receipt-row__label { font-size: 10px; }
.wizard__step--success .receipt-row__value { font-size: 13px; }
.wizard__step--success .receipt-row--total .receipt-row__value { font-size: 20px; }
.wizard__step--success .wizard__actions {
  margin-top: 20px;
  margin-bottom: 16px;
}
.wizard__step--success .wizard__disclaimer {
  font-size: 11px;
  margin: 0 0 24px;
  opacity: 1;
  color: rgba(10, 21, 32, 0.5);
}
.wizard__success-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 21, 32, 0.08);
}
.wizard__success-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0);
  opacity: 0.55;
}

/* ============================================================
   FIX FILTROS DESAPARECIDOS v4.6
   Reemplaza selector amplio v4.3 por selectores especificos
   ============================================================ */

/* Estado normal — con delay al volver de cerrar wizard */
.availability__title,
.availability__sub,
.availability__filters,
.availability__cta {
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
    visibility 0.5s 0.4s,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

/* Estado wizard abierto — salida rapida */
.availability.is-wizard-open .availability__title,
.availability.is-wizard-open .availability__sub,
.availability.is-wizard-open .availability__filters,
.availability.is-wizard-open .availability__cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  pointer-events: none;
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.4s,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* SAFEGUARD: forzar visibilidad cuando NO hay wizard abierto */
.availability:not(.is-wizard-open) .availability__title,
.availability:not(.is-wizard-open) .availability__sub,
.availability:not(.is-wizard-open) .availability__filters,
.availability:not(.is-wizard-open) .availability__cta {
  pointer-events: auto;
}

/* Nulificar la regla amplia v4.3 que ocultaba TODO */
.availability__content > *:not(.wizard) {
  opacity: initial;
  visibility: initial;
  transform: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.availability.is-wizard-open .availability__content > *:not(.wizard) {
  opacity: initial;
  visibility: initial;
  transform: none;
  pointer-events: auto;
}

/* ============================================================
   DISPLAY WEIGHT ENHANCEMENT v4.7
   text-stroke sutil para display sobre fondos ivory
   ============================================================ */
:root { --display-stroke: 0.4px; }

.faq__title,
.highlights__title,
.services__title,
.gallery-hero__title,
.contact-form__title,
.wizard__title,
.confirm-modal__title,
.calendar__month {
  -webkit-text-stroke: var(--display-stroke) currentColor;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wizard-plan.is-selected .wizard-plan__price,
.calendar__day.is-selected,
.wizard__mini-cal-day.is-selected {
  -webkit-text-stroke: 0 transparent;
}

@media (max-width: 768px) {
  :root { --display-stroke: 0.3px; }
}

/* ============================================================
   V5.0 — WIZARD FIX BACKDROP + DIMENSIONS
   ============================================================ */

/* FIX 1 — Fondo desaparece INSTANTANEO al abrir wizard */
.availability.is-wizard-open .availability__title,
.availability.is-wizard-open .availability__sub,
.availability.is-wizard-open .availability__filters,
.availability.is-wizard-open .availability__cta {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: none !important;
  transition: opacity 0.15s ease, visibility 0.15s !important;
}

/* Vuelta con delay 0.3s (despues de que salga el wizard) */
.availability:not(.is-wizard-open) .availability__title,
.availability:not(.is-wizard-open) .availability__sub,
.availability:not(.is-wizard-open) .availability__filters,
.availability:not(.is-wizard-open) .availability__cta {
  transition: opacity 0.4s ease 0.3s, visibility 0.4s 0.3s, transform 0.4s ease 0.3s;
}

/* FIX 2 — Card mas ancho, menos alto, mas aire */
.wizard {
  padding: 60px 24px !important;
}
.wizard__card {
  max-width: 760px !important;
  max-height: min(calc(100vh - 180px), 640px) !important;
  padding: 44px 44px !important;
}

/* FIX 3 — Step 4 pago compacto */
.wizard__step[data-step="4"] .wizard__fields {
  gap: 18px 14px;
  margin-bottom: 28px;
}
.wizard__step[data-step="4"] .wizard__total {
  padding: 16px 0;
  margin-bottom: 24px;
}
.wizard__step[data-step="4"] .wizard__title {
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 12px;
}
.wizard__step[data-step="4"] .wizard__desc {
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .wizard__card {
    max-width: calc(100vw - 40px) !important;
    padding: 36px 28px !important;
  }
}
@media (max-width: 768px) {
  .wizard {
    padding: 24px 12px !important;
    align-items: flex-start !important;
    padding-top: 40px !important;
  }
  .wizard__card {
    max-height: calc(100vh - 80px) !important;
    padding: 32px 24px !important;
  }
}

/* ============================================================
   MOBILE FIXES v5.0 — bg availability, cta-final overlay,
   logo bigger, luxury minimal menu
   ============================================================ */
@media (max-width: 768px) {

  /* 1) BOOK YOUR — cambiar bg a versión mobile (yate cenital) */
  .availability__bg {
    background-image: url('./bg-availability-mobile.jpg?v=4') !important;
    background-position: center center !important;
    background-attachment: scroll !important;
  }
  .availability__overlay {
    background:
      linear-gradient(180deg, rgba(10, 21, 32, 0.35) 0%, rgba(10, 21, 32, 0.55) 100%),
      rgba(10, 21, 32, 0.05) !important;
  }

  /* 2) LOGO navbar un poquito más grande solo mobile */
  .navbar__logo img { height: 40px !important; }

  /* 3) CTA FINAL — texto SOBRE la imagen, MISMO crop que antes (aspect 4/5) */
  .cta-final {
    display: block;
    min-height: auto;
    position: relative;
    background: var(--ink);
  }
  .cta-final__media {
    position: relative !important;
    inset: auto !important;
    aspect-ratio: 4 / 5 !important;
    order: 1;
    z-index: 0;
  }
  .cta-final__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .cta-final__media::after {
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    background:
      linear-gradient(180deg, rgba(10, 21, 32, 0.15) 0%, rgba(10, 21, 32, 0.05) 40%, rgba(10, 21, 32, 0.55) 78%, rgba(10, 21, 32, 0.85) 100%) !important;
  }
  .cta-final__content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    order: 0;
    padding: 0 24px 40px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center !important;
    text-align: center !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .cta-final__title {
    color: var(--ivory);
    font-size: clamp(34px, 9.5vw, 52px) !important;
    letter-spacing: 0.02em;
    margin-bottom: 24px !important;
    text-shadow: 0 2px 24px rgba(10, 21, 32, 0.45);
  }
  .cta-final__btn {
    width: 100%;
    justify-content: center;
    padding: 20px !important;
    background: var(--ivory);
    color: var(--ink);
    border-color: var(--ivory);
    align-self: stretch;
  }
}

/* ============================================================
   MOBILE MENU v5.0 — MINIMAL LUXURY (fondo blanco puro,
   titulares centrados, líneas hairline, entrada premium)
   ============================================================ */
@media (max-width: 768px) {
  .mobile-menu {
    background: #FFFFFF !important;
  }

  .mobile-menu__header {
    padding: 22px 24px !important;
    border-bottom: 1px solid rgba(10, 21, 32, 0.06) !important;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .mobile-menu__logo img {
    height: 32px !important;
    filter: brightness(0) !important;
    opacity: 0.9;
  }
  .mobile-menu__close {
    width: 42px; height: 42px;
    border: 1px solid rgba(10, 21, 32, 0.1) !important;
  }

  .mobile-menu__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 0 !important;
  }
  .mobile-menu__nav ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .mobile-menu__nav li {
    border-bottom: 1px solid rgba(10, 21, 32, 0.06) !important;
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
  }
  .mobile-menu__nav li:first-child {
    border-top: 1px solid rgba(10, 21, 32, 0.06);
  }
  .mobile-menu.is-open .mobile-menu__nav li {
    animation: menuItemInLux 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .mobile-menu.is-open .mobile-menu__nav li:nth-child(1) { animation-delay: 0.12s; }
  .mobile-menu.is-open .mobile-menu__nav li:nth-child(2) { animation-delay: 0.20s; }
  .mobile-menu.is-open .mobile-menu__nav li:nth-child(3) { animation-delay: 0.28s; }
  .mobile-menu.is-open .mobile-menu__nav li:nth-child(4) { animation-delay: 0.36s; }
  .mobile-menu.is-open .mobile-menu__nav li:nth-child(5) { animation-delay: 0.44s; }
  .mobile-menu.is-open .mobile-menu__nav li:nth-child(6) { animation-delay: 0.52s; }
  @keyframes menuItemInLux {
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-menu__link {
    display: block;
    padding: 26px 24px !important;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(24px, 6.6vw, 32px) !important;
    line-height: 1;
    letter-spacing: 0.14em !important;
    text-transform: uppercase;
    color: var(--ink) !important;
    text-align: center;
    transition: letter-spacing 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                color 0.35s ease;
  }
  .mobile-menu__link::before {
    display: none !important;
  }
  .mobile-menu__link:hover,
  .mobile-menu__link:active {
    padding-left: 24px !important;
    letter-spacing: 0.22em !important;
    color: var(--gold) !important;
  }

  .mobile-menu__footer {
    padding: 28px 24px 36px !important;
    border-top: 1px solid rgba(10, 21, 32, 0.06) !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-menu__socials a {
    border: 1px solid rgba(10, 21, 32, 0.1) !important;
  }
}


/* ============================================
   YACHT SPECS v5.5
============================================ */
.yacht-specs {
  background: var(--ivory);
  padding: 80px 8vw;
  color: var(--ink);
  border-top: 1px solid rgba(10, 21, 32, 0.06);
  border-bottom: 1px solid rgba(10, 21, 32, 0.06);
}
.yacht-specs__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6vw;
  align-items: center;
}
.yacht-specs__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.yacht-specs__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10, 21, 32, 0.55);
}
.yacht-specs__note {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10, 21, 32, 0.55);
  margin: 0;
}
.yacht-specs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(10, 21, 32, 0.1);
}
.spec-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 20px 12px 24px;
  border-right: 1px solid rgba(10, 21, 32, 0.1);
  transition: background 0.4s ease;
}
.spec-item:hover { background: rgba(10, 21, 32, 0.02); }
.spec-item__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
  -webkit-text-stroke: 0.4px currentColor;
}
.spec-item__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(10, 21, 32, 0.55);
}
@media (max-width: 1024px) {
  .yacht-specs__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .yacht-specs__note { max-width: 100%; }
}
@media (max-width: 640px) {
  .yacht-specs { padding: 60px 24px; }
  .yacht-specs__grid {
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
    border-top: 1px solid rgba(10, 21, 32, 0.1);
  }
  .spec-item {
    padding: 24px 16px;
    border-bottom: 1px solid rgba(10, 21, 32, 0.1);
  }
  .spec-item:nth-child(odd) { border-right: 1px solid rgba(10, 21, 32, 0.1); }
  .spec-item:nth-child(even) { border-right: none; }
  .spec-item__value { font-size: clamp(36px, 10vw, 52px); }
}

/* ============================================
   WHATSAPP FAB v6.3 - INTEGRADO A PALETA
============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2C3540;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(10, 21, 32, 0.25), 0 2px 6px rgba(10, 21, 32, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, background 0.3s ease;
}
.whatsapp-fab svg {
  width: 26px;
  height: 26px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  background: #3D4B5A;
  box-shadow: 0 12px 28px rgba(10, 21, 32, 0.35), 0 4px 10px rgba(10, 21, 32, 0.2);
}
.whatsapp-fab:hover svg { transform: scale(1.08); }
.whatsapp-fab:active { transform: translateY(-1px) scale(0.98); }
@media (max-width: 768px) {
  .whatsapp-fab { bottom: 20px; right: 20px; width: 58px; height: 58px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}
@media (max-width: 480px) {
  .whatsapp-fab { bottom: 16px; right: 16px; }
}

/* ============================================
   FOOTER FUNCIONAL v6.2 (overrides)
============================================ */
.footer { background: var(--footer-bg, #2C3540); color: var(--ivory); padding: 100px 8vw 0; }
.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.5fr;
  gap: 60px;
  padding-bottom: 80px;
}
.footer__brand { display: flex; flex-direction: column; gap: 32px; }
.footer__logo img { height: 68px; width: auto; opacity: 0.92; filter: brightness(0) invert(1); }
.footer__newsletter { position: relative; width: 100%; max-width: 380px; }
.footer__newsletter input {
  width: 100%;
  padding: 20px 64px 20px 24px;
  background: transparent !important;
  background-color: transparent !important;
  border: 1px solid rgba(245, 241, 234, 0.2);
  border-radius: 100px;
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.footer__newsletter input::placeholder { color: rgba(245, 241, 234, 0.4); opacity: 1; }
.footer__newsletter input:focus { border-color: rgba(245, 241, 234, 0.5); }
.footer__newsletter input:-webkit-autofill,
.footer__newsletter input:-webkit-autofill:hover,
.footer__newsletter input:-webkit-autofill:focus,
.footer__newsletter input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 40px #2C3540 inset !important;
  -webkit-text-fill-color: var(--ivory) !important;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: var(--ivory);
}
.footer__newsletter button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}
.footer__newsletter button:hover { background: var(--gold); }
.footer__newsletter button svg { width: 16px; height: 16px; }
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.2);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__socials a:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.footer__socials svg { width: 16px; height: 16px; }
.footer__col-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 24px 0;
}
.footer__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col-list a {
  color: rgba(245, 241, 234, 0.7);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer__col-list a:hover { color: var(--ivory); padding-left: 6px; }
.footer__contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.footer__contact-item a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(245, 241, 234, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact-item a:hover { color: var(--ivory); }
.footer__contact-item a:hover .footer__contact-icon {
  background: rgba(245, 241, 234, 0.12);
  border-color: rgba(245, 241, 234, 0.4);
}
.footer__contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  transition: all 0.3s ease;
}
.footer__contact-icon svg { width: 15px; height: 15px; }
.footer__contact-text { display: flex; flex-direction: column; gap: 3px; padding-top: 2px; }
.footer__contact-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
}
.footer__contact-value { font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--ivory); line-height: 1.4; }
.footer__bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer__copy, .footer__credit {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: rgba(245, 241, 234, 0.55);
  margin: 0;
}
.footer__credit a { color: var(--ivory); text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.footer__credit a:hover { color: var(--gold); }
@media (max-width: 1024px) {
  .footer__container { grid-template-columns: 1fr 1fr; gap: 48px; padding-bottom: 60px; }
  .footer__brand { grid-column: 1 / -1; margin-bottom: 12px; }
}
@media (max-width: 640px) {
  .footer { padding: 60px 24px 0; }
  .footer__container { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; }
  .footer__brand { gap: 24px; align-items: flex-start; margin-bottom: 0; }
  .footer__logo img { height: 56px; }
  .footer__newsletter { max-width: 100%; }
  .footer__col-title { margin-bottom: 18px; }
  .footer__col-list { gap: 12px; }
  .footer__contact-list { gap: 20px; }
  .footer__contact-value { font-size: 13px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; padding: 24px 0; text-align: left; }
}

/* ============================================
   FIX DOUBLE-TAP ZOOM v6.6
   Botones de contador +/- (mobile iOS)
============================================ */
.guests-btn,
.wizard__mini-guests-btn,
button[data-action="increment"],
button[data-action="decrement"] {
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
@media (max-width: 768px) {
  .guests-btn,
  .wizard__mini-guests-btn,
  button[data-action="increment"],
  button[data-action="decrement"] {
    min-width: 44px;
    min-height: 44px;
    position: relative;
  }
  .guests-btn::before,
  .wizard__mini-guests-btn::before,
  button[data-action="increment"]::before,
  button[data-action="decrement"]::before {
    content: '';
    position: absolute;
    inset: -8px;
  }
}

/* ============================================
   VIDEO MODAL v6.7 (highlights popup)
============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 21, 32, 0.92);
  cursor: pointer;
}
.video-modal__stage {
  position: relative;
  z-index: 2;
  width: min(90vw, 720px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal__video {
  width: 100%;
  max-height: 90vh;
  height: auto;
  display: block;
  background: #000;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.video-modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.4);
  background: transparent;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  z-index: 3;
}
.video-modal__close:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.video-modal__close svg { width: 18px; height: 18px; }
@media (max-width: 768px) {
  .video-modal__stage { width: 92vw; }
  .video-modal__close { top: -48px; width: 40px; height: 40px; }
  .video-modal__close svg { width: 16px; height: 16px; }
}

/* ============================================
   FIND US ONLINE — MOBILE v6.8
============================================ */
@media (max-width: 768px) {
  .contact-social { padding: 60px 24px !important; min-height: auto !important; }
  .contact-social__title { font-size: clamp(32px, 8vw, 44px); margin-bottom: 32px; }
  .contact-social__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
    max-width: 480px;
    margin: 0 auto;
  }
  .contact-social__grid > *:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 50%;
    width: 100%;
  }
  .social-item { padding: 16px 8px; gap: 12px; }
  .social-item__icon { width: 56px; height: 56px; }
  .social-item__icon svg { width: 22px; height: 22px; }
}

/* ============================================
   BOOKING PAGE v6.9
============================================ */
.booking-page {
  width: 100%;
  background: var(--ivory);
}
.booking-page__strip {
  width: 100%;
  height: 40px;
  background: var(--ivory);
}
.booking-page__body {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 200px);
  padding: 160px 8vw 120px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}
.booking-page__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.booking-page__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(0.9) contrast(1.02);
}
.booking-page__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 21, 32, 0.45) 0%, rgba(10, 21, 32, 0.35) 50%, rgba(10, 21, 32, 0.55) 100%);
  pointer-events: none;
}
.wizard--standalone {
  position: relative !important;
  z-index: 3;
  inset: auto !important;
  padding: 0 !important;
  width: 100%;
  max-width: 760px;
  min-height: auto;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
  background: transparent !important;
  pointer-events: auto;
}
.wizard--standalone .wizard__card {
  max-height: none;
  transform: none !important;
  margin-top: 0;
}
@media (max-width: 768px) {
  .booking-page__strip { height: 24px; }
  .booking-page__body { padding: 110px 20px 70px; }
  .wizard--standalone .wizard__card { padding: 52px 24px 32px; }
}

/* ============================================
   BOOKING MOBILE COMPACT v7.4
============================================ */
@media (max-width: 768px) {
  .booking-page__body {
    padding: 110px 16px 70px;
    box-sizing: border-box;
    max-width: 100vw;
    overflow: hidden;
  }
  .wizard--standalone .wizard__card {
    padding: 44px 20px 28px;
    max-width: calc(100vw - 32px);
    width: 100%;
    box-sizing: border-box;
  }
  .wizard--standalone .wizard__title { font-size: clamp(22px, 6.5vw, 32px); line-height: 1.05; margin-bottom: 12px; }
  .wizard--standalone .wizard__desc { font-size: 13px; line-height: 1.5; margin-bottom: 24px; }
  .wizard--standalone .wizard-plan { padding: 20px 16px; }
  .wizard--standalone .wizard-plan__price { font-size: 28px; }
  .wizard--standalone .wizard-plan__hours { font-size: 11px; letter-spacing: 0.15em; }
  .wizard--standalone .wizard-plan__note { font-size: 10px; letter-spacing: 0.1em; }
  .wizard--standalone .wizard-option { padding: 16px 18px; font-size: 12px; }
  .wizard--standalone .wizard-field input { font-size: 14px; padding: 8px 0; }
  .wizard--standalone .wizard-field label { font-size: 9px; letter-spacing: 0.22em; }
  .wizard--standalone .wizard__btn { padding: 15px 18px; font-size: 11px; letter-spacing: 0.2em; }
  .wizard--standalone .wizard__actions { gap: 10px; margin-top: 24px; }
  .wizard--standalone .wizard__summary-mini { padding: 8px; gap: 8px; margin-bottom: 20px; }
  .wizard--standalone .wizard__summary-item--editable { padding: 8px 12px; font-size: 12px; gap: 6px; }
  .wizard--standalone .wizard__summary-label { font-size: 11px; }
  .wizard--standalone .wizard__close { width: 36px; height: 36px; top: 20px; right: 20px; }
  .wizard--standalone .wizard__close svg { width: 14px; height: 14px; }
  .wizard--standalone .wizard__progress { margin-bottom: 24px; width: calc(100% - 52px); max-width: calc(100% - 52px); }
  .wizard--standalone .wizard__progress-label { font-size: 9px; letter-spacing: 0.24em; margin-top: 10px; }
}
