/* ============================================
   WANDERLY ESCAPE — LUXURY TRAVEL WEBSITE
   Ultra Premium Design System
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand palette */
  --black: #0a0a0a;
  --navy: #0d1b2a;
  --ocean: #0f3460;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --sand: #f5ebe0;
  --ivory: #faf8f5;
  --white: #ffffff;
  --sunset: #e07b39;

  /* Semantic tokens — LIGHT MODE defaults */
  --bg-page:      #faf8f5;
  --bg-card:      #ffffff;
  --bg-card-alt:  #faf8f5;
  --bg-input:     #faf8f5;
  --text-primary:   #1a1a1a;
  --text-mid:       #555555;
  --text-subtle:    #888888;
  --border-color:   rgba(0,0,0,0.09);
  --shadow-card:    0 30px 80px rgba(0,0,0,0.08);

  /* Fixed (dark sections stay dark regardless of mode) */
  --bg-dark:    #0d1b2a;
  --bg-darker:  #0a0a0a;
  --text-on-dark: rgba(255,255,255,0.7);

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Mode transition speed */
  --mode-speed: 0.4s;
}

/* ── DARK MODE TOKEN OVERRIDES ── */
body.dark {
  --bg-page:     #0e1117;
  --bg-card:     #161c27;
  --bg-card-alt: #111722;
  --bg-input:    #1a2130;
  --text-primary:  #ede9e1;
  --text-mid:      #9da8b7;
  --text-subtle:   #6b7789;
  --border-color:  rgba(255,255,255,0.07);
  --shadow-card:   0 30px 80px rgba(0,0,0,0.35);
}

/* Theme-switch transition — only color/bg properties, never opacity or transform
   (so it doesn't fight scroll-reveal & slide animations) */
body.theme-transitioning,
body.theme-transitioning *,
body.theme-transitioning *::before,
body.theme-transitioning *::after {
  transition:
    background-color var(--mode-speed) ease !important,
    border-color     var(--mode-speed) ease !important,
    color            var(--mode-speed) ease !important,
    box-shadow       var(--mode-speed) ease !important;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-page);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- SCROLL REVEAL ANIMATIONS (GPU-accelerated) --- */
.reveal-up {
  opacity: 0;
  transform: translateY(44px);
  will-change: opacity, transform;
  transition:
    opacity   0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  will-change: opacity, transform;
  transition:
    opacity   0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  will-change: opacity, transform;
  transition:
    opacity   0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  will-change: opacity, transform;
  transition:
    opacity   0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header.light * { color: var(--white) !important; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-header h2 em { font-style: italic; color: var(--gold); }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  margin-bottom: 24px;
  animation: pulse-logo 1.5s ease-in-out infinite;
}
@keyframes pulse-logo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 16px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: var(--gold);
  animation: fill-bar 2s var(--ease-out) forwards;
}
@keyframes fill-bar {
  from { width: 0; }
  to { width: 100%; }
}

.preloader-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--transition), backdrop-filter 0.4s, box-shadow 0.4s;
  padding: 0;
}
#header.scrolled {
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: padding 0.4s;
}
#header.scrolled .header-inner { padding: 14px 40px; }

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.logo .logo-w { font-size: 1em; }
.logo em { font-style: italic; color: var(--gold-light); }

nav ul {
  display: flex;
  gap: 36px;
}
nav ul li a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}
nav ul li a:hover { color: var(--gold); }
nav ul li a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.2s;
}
.btn-whatsapp-header svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-whatsapp-header:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  height: 100svh; /* svh on mobile avoids address-bar jump */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Cinematic Slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  /* GPU-accelerated: only animate opacity & transform */
  will-change: opacity, transform;
  transform: scale(1.06);
  /* Smooth ease-in-out for enter AND exit */
  transition:
    opacity   2s cubic-bezier(0.45, 0, 0.55, 1),
    transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Entering slide */
.slide.active {
  opacity: 1;
  transform: scale(1.0);
}
/* Exiting slide — stays visible while fading out, no scale jump */
.slide.exit {
  opacity: 0;
  transform: scale(1.03);   /* subtle continued drift on exit */
  transition:
    opacity   2s cubic-bezier(0.45, 0, 0.55, 1),
    transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gradient overlays — layered so text is ALWAYS readable over any photo */
.hero-overlay-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Order matters: last layer is base, earlier layers sit on top */
  background:
    /* Heavy bottom vignette covering the text zone */
    linear-gradient(to top,
      rgba(3,5,14,0.97)  0%,
      rgba(3,5,14,0.82)  28%,
      rgba(3,5,14,0.45)  52%,
      transparent        72%
    ),
    /* Left side fade for depth */
    linear-gradient(to right,
      rgba(3,5,14,0.60) 0%,
      transparent       55%
    ),
    /* Top bar for nav legibility */
    linear-gradient(to bottom,
      rgba(3,5,14,0.55) 0%,
      transparent       22%
    ),
    /* Base universal darkener — ensures no bright image ever wins */
    rgba(3,5,14,0.30);
}

/* Extra scrim directly behind the text block */
.hero-content::before {
  content: '';
  position: absolute;
  inset: -40px -20px;
  z-index: -1;
  background: radial-gradient(ellipse at center bottom,
    rgba(3,5,14,0.65) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Progress bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}
.hero-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width linear;
}

/* Slide counter */
.hero-slide-counter {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}
#slideCurrentNum {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 300;
}
.slide-counter-sep {
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}
.slide-counter-total { color: rgba(255,255,255,0.4); }

/* Location badge */
.hero-location-badge {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.location-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  align-self: flex-end;
  animation: blink-dot 2s ease-in-out infinite;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}
.location-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  text-align: right;
  transition: all 0.5s var(--ease-out);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.12em;
}
.location-country {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.5s var(--ease-out);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.06);
}
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow-prev { left: 40px; }
.hero-arrow-next { right: 130px; }

/* Dot navigation */
.hero-dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 9px 22px;
  border-radius: 50px;
  margin-bottom: 32px;
  /* Gold-tinted glass pill — elegant, not loud */
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.55);
  box-shadow: 0 0 18px rgba(201,168,76,0.18);
  backdrop-filter: blur(6px);
}

/* Small diamond bookends */
.hero-tag::before,
.hero-tag::after {
  content: '◆';
  font-size: 0.38rem;
  opacity: 0.65;
}

@media (max-width: 700px) {
  .hero-tag { font-size: 0.58rem; padding: 8px 18px; letter-spacing: 0.22em; }
}
@media (max-width: 400px) {
  .hero-tag { font-size: 0.52rem; padding: 7px 14px; gap: 5px; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6), 0 1px 8px rgba(0,0,0,0.5);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 44px;
  text-shadow: 0 1px 20px rgba(0,0,0,0.7);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 60px rgba(201,168,76,0.35); }

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s var(--transition);
  backdrop-filter: blur(10px);
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.5);
}
.btn-whatsapp-hero:hover {
  background: rgba(37,211,102,0.25);
  border-color: #25d366;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.stat {
  text-align: center;
  color: var(--white);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
}
.stat span { font-size: 1.5rem; color: var(--gold); }
.stat small { display: block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}
.hero-scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-inner span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.marquee-inner .dot { color: rgba(0,0,0,0.35); font-size: 0.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   WHY SECTION
   ============================================ */
.section-why { padding: 120px 0; background: var(--ivory); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 20px;
}

.why-card {
  background: var(--white);
  padding: 50px 36px;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.12);
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--transition);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,0.1); }

.why-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.section-destinations { padding: 120px 0; background: var(--white); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto 48px;
}
/* Row 1: Maldives spans 2 rows tall, Vietnam normal, Switzerland spans 2 rows tall, Bali normal */
.destinations-grid .dest-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; } /* Maldives tall */
.destinations-grid .dest-card:nth-child(2) { grid-column: 2; grid-row: 1; }     /* Vietnam */
.destinations-grid .dest-card:nth-child(3) { grid-column: 3; grid-row: 1 / 3; } /* Switzerland tall */
.destinations-grid .dest-card:nth-child(4) { grid-column: 4; grid-row: 1 / 3; } /* Bali tall */
/* Row 2: Vietnam slot below fills with Dubai */
.destinations-grid .dest-card:nth-child(5) { grid-column: 2; grid-row: 2; }     /* Dubai */
/* Row 3: Greece, Thailand, Singapore across */
.destinations-grid .dest-card:nth-child(6) { grid-column: 1; grid-row: 3; }     /* Greece */
.destinations-grid .dest-card:nth-child(7) { grid-column: 2 / 4; grid-row: 3; } /* Thailand wide */
.destinations-grid .dest-card:nth-child(8) { grid-column: 4; grid-row: 3; }     /* Singapore */

.dest-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  min-height: 300px;
}
.dest-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}
.dest-card:hover .dest-img { transform: scale(1.06); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,0.85) 0%, rgba(10,10,20,0.2) 50%, transparent 100%);
  transition: background 0.4s;
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(10,10,20,0.9) 0%, rgba(10,10,20,0.3) 50%, transparent 100%); }

.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}
.dest-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.dest-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.dest-content p { font-size: 0.78rem; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; margin-bottom: 16px; }
.dest-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  display: block;
}
.dest-card:hover .dest-cta { opacity: 1; transform: translateY(0); }

.destinations-cta { text-align: center; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 44px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

/* ============================================
   EXPERIENCES
   ============================================ */
.section-experiences {
  padding: 120px 0;
  background: var(--navy);
}
.section-experiences .eyebrow { color: var(--gold); }
.section-experiences .section-header h2 { color: var(--white); }
.section-experiences .section-header p { color: rgba(255,255,255,0.6); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.exp-item {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: all 0.4s var(--transition);
  background: rgba(255,255,255,0.03);
}
.exp-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-8px);
}

.exp-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 2px solid rgba(201,168,76,0.3);
}
.exp-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }

.exp-item h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.exp-item p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.exp-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
}
.exp-link:hover { color: var(--gold-light); }

/* ============================================
   PARALLAX SECTION
   ============================================ */
.section-parallax {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  will-change: transform;
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}
.parallax-content .eyebrow { color: var(--gold); display: block; margin-bottom: 20px; }
.parallax-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 40px;
}
.parallax-content h2 em { font-style: italic; color: var(--gold-light); }

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 44px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.3s var(--transition);
}
.btn-primary-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ============================================
   STATS
   ============================================ */
.section-stats {
  padding: 80px 0;
  background: var(--ivory);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.stat-block {
  text-align: center;
  flex: 1;
}
.big-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--navy);
}
.big-plus {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
}
.stat-block p {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 8px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.section-testimonials { padding: 120px 0; background: var(--white); }

.testimonials-carousel { position: relative; overflow: hidden; }

.testi-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s var(--ease-out);
}

.testi-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--ivory);
  border-radius: 20px;
  padding: 44px;
  border: 1px solid rgba(201,168,76,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,0.08); }

.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 4px; margin-bottom: 20px; }

.testi-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.testi-author span {
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-top: 2px;
  display: block;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
}
.testi-prev, .testi-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.testi-prev:hover, .testi-next:hover { background: var(--gold); color: var(--black); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.testi-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ============================================
   INSTAGRAM
   ============================================ */
.section-instagram { padding: 120px 0; background: var(--navy); }
.section-instagram .eyebrow { color: var(--gold); }
.section-instagram .section-header h2 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); }
.section-instagram .section-header p { color: rgba(255,255,255,0.6); }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  background: linear-gradient(135deg, rgba(131,58,180,0.2), rgba(241,97,34,0.2));
}
.btn-instagram:hover {
  background: linear-gradient(135deg, rgba(131,58,180,0.5), rgba(241,97,34,0.5));
  border-color: transparent;
  transform: translateY(-2px);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.insta-item:hover img { transform: scale(1.08); }
.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(10,10,20,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-item:hover .insta-hover { opacity: 1; }
.insta-hover span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================
   GALLERY
   ============================================ */
.section-gallery { padding: 120px 0; background: var(--ivory); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: 12px; position: relative; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }

/* ============================================
   ABOUT
   ============================================ */
.section-about { padding: 120px 0; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-visual img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
  border-radius: 14px;
  text-align: center;
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-text .eyebrow { margin-bottom: 16px; display: block; }
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.1;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}
.val-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  padding: 8px 16px;
  background: var(--ivory);
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.2);
}
.val-item span { color: var(--gold); }

/* ============================================
   CONTACT
   ============================================ */
.section-contact { padding: 120px 0; background: var(--navy); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-left .eyebrow { color: var(--gold); display: block; margin-bottom: 20px; }
.contact-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-left h2 em { font-style: italic; color: var(--gold); }
.contact-left > p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 44px; }

.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  background: rgba(255,255,255,0.04);
}
.channel-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.3); transform: translateX(4px); }
.channel-card.whatsapp { border-color: rgba(37,211,102,0.25); }
.channel-card.whatsapp:hover { border-color: rgba(37,211,102,0.5); background: rgba(37,211,102,0.08); }
.channel-card svg { color: var(--gold); flex-shrink: 0; }
.channel-card.whatsapp svg { color: #25d366; }
.channel-card strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.channel-card span { font-size: 1rem; color: var(--white); font-weight: 500; }

/* Inquiry Form */
.inquiry-form {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
}
.inquiry-form h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: none; }

.btn-submit {
  width: 100%;
  padding: 18px;
  background: #25d366;
  color: var(--white);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s var(--transition);
  margin-top: 8px;
}
.btn-submit:hover { background: #20bf5c; transform: translateY(-2px); box-shadow: 0 20px 60px rgba(37,211,102,0.3); }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--black); }

.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-logo .logo-w { font-size: 1em; }
.footer-logo em { font-style: italic; color: var(--gold-light); }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.4);
  border-radius: 50px;
  color: #25d366;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s;
}
.footer-wa-btn:hover { background: rgba(37,211,102,0.25); }

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-wa {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 8px 40px rgba(37,211,102,0.5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.floating-wa:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 16px 60px rgba(37,211,102,0.6);
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: pulse-ring 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
}
.floating-wa:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0;
}
.mobile-cta-call,
.mobile-cta-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mobile-cta-call { color: var(--white); border-right: 1px solid rgba(255,255,255,0.08); }
.mobile-cta-whatsapp { background: #25d366; color: var(--white); }

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
/* ── Overlay ── */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  backdrop-filter: blur(5px);
}
.exit-overlay.show { opacity: 1; visibility: visible; }

/* ─────────────────────────────────────────
   EXIT POPUP  — mobile-first, no image
   Structure (direct children of .exit-popup):
     .exit-close        (absolute, not in flow)
     .exit-popup-img    (hidden by default)
     .exit-popup-content
   ───────────────────────────────────────── */
.exit-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  /* hidden state */
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.38s var(--ease-out),
              transform 0.38s var(--ease-out),
              visibility 0.38s;

  z-index: 1101;
  width: min(420px, 92vw);   /* compact on mobile */
  border-radius: 20px;
  background: var(--bg-card);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  overflow: hidden;

  /* flex column — content stacks vertically */
  display: flex;
  flex-direction: column;
}
.exit-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Image — hidden until wide screen */
.exit-popup-img {
  display: none;
  background-size: cover;
  background-position: center;
}

/* ── ≥ 860px: side-by-side layout ── */
@media (min-width: 860px) {
  .exit-popup {
    width: min(720px, 92vw);
    flex-direction: row;
    border-radius: 24px;
    align-items: stretch;
  }
  .exit-popup-img {
    display: block;
    width: 44%;
    flex-shrink: 0;
    min-height: 440px;
  }
  .exit-popup-content {
    flex: 1;
    min-width: 0;
  }
}

/* ── Content panel ── */
.exit-popup-content {
  padding: 48px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Close ── */
.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.exit-close:hover { background: rgba(0,0,0,0.8); }

/* ── Eyebrow ── */
.exit-popup-content .eyebrow {
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
}

/* ── Heading ── */
.exit-popup-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.18;
  margin-bottom: 12px;
}

/* ── Body ── */
.exit-popup-content p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ── WhatsApp CTA ── */
.btn-exit-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 18px;
  background: #25d366;
  color: #fff;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 0.22s, transform 0.18s;
}
.btn-exit-wa:hover {
  background: #1dba58;
  transform: translateY(-2px);
}

/* ── Skip ── */
.exit-skip {
  align-self: center;
  font-size: 0.75rem;
  color: var(--text-subtle);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 6px 12px;
  transition: color 0.2s;
}
.exit-skip:hover { color: var(--text-primary); }

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav-overlay ul { text-align: center; }
.mobile-nav-overlay ul li { margin-bottom: 32px; }
.mobile-nav-overlay ul li a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 400;
  transition: color 0.3s;
}
.mobile-nav-overlay ul li a:hover { color: var(--gold); }

/* ============================================
   RESPONSIVE — complete mobile-first overrides
   ============================================ */

/* Prevent horizontal overflow */
html, body { overflow-x: hidden; }
img, video, iframe, svg { max-width: 100%; }

/* ── Tablet: 1100px ── */
@media (max-width: 1100px) {
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .exp-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-location-badge { display: none; }
  .hero-arrow-next { right: 100px; }

  /* Destinations: 2×2 mosaic */
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
    padding: 0 24px;
  }
  .destinations-grid .dest-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .destinations-grid .dest-card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .destinations-grid .dest-card:nth-child(3) { grid-column: 1; grid-row: 3; }
  .destinations-grid .dest-card:nth-child(4) { grid-column: 2; grid-row: 2 / 4; }
  .destinations-grid .dest-card:nth-child(5) { grid-column: 2; grid-row: 4; }
  .destinations-grid .dest-card:nth-child(6) { grid-column: 1; grid-row: 4; }
  .destinations-grid .dest-card:nth-child(7) { grid-column: 1 / 3; grid-row: 5; }
  .destinations-grid .dest-card:nth-child(8) { grid-column: 1 / 3; grid-row: 6; }
}

/* ── Small tablet / large phone: 900px ── */
@media (max-width: 900px) {
  /* Container */
  .container { padding: 0 20px; }

  /* Header */
  .header-inner { padding: 16px 20px; }
  nav, .btn-whatsapp-header { display: none; }
  .hamburger { display: flex; }

  /* Sections */
  .section-why, .section-destinations, .section-experiences,
  .section-testimonials, .section-instagram, .section-gallery,
  .section-about, .section-contact { padding: 80px 0; }
  .section-stats { padding: 60px 0; }
  .section-header { margin-bottom: 48px; }

  /* About — stack vertically */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual img { height: 380px; }   /* not 600px — too tall */
  .about-badge { bottom: 20px; right: 20px; padding: 16px 20px; }
  .badge-num { font-size: 2rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-left h2 { font-size: clamp(2rem, 6vw, 3rem); }
  .contact-channels { flex-direction: column; gap: 12px; }

  /* Stats */
  .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stat-block { padding: 28px 12px; border: 1px solid var(--border-color); text-align: center; }
  .big-num { font-size: 2.4rem; }

  /* Gallery */
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; } /* no tall on tablet */

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  /* Floating WA above sticky bar */
  .floating-wa { bottom: 88px; right: 20px; width: 56px; height: 56px; }

  /* Why cards — reduce padding */
  .why-card { padding: 36px 24px; }

  /* Exp items */
  .exp-item { padding: 32px 22px; }
}

/* ── Phone: 700px ── */
@media (max-width: 700px) {
  /* Container tighter */
  .container { padding: 0 16px; }

  /* Sections */
  .section-why, .section-destinations, .section-experiences,
  .section-testimonials, .section-instagram, .section-gallery,
  .section-about, .section-contact { padding: 64px 0; }
  .section-stats  { padding: 48px 0; }
  .section-header { margin-bottom: 36px; text-align: center; }
  .section-header h2 { font-size: clamp(1.8rem, 6.5vw, 2.6rem); }
  .section-header p  { font-size: 0.9rem; }

  /* Hero */
  .hero-content { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-whatsapp-hero { width: 100%; max-width: 320px; justify-content: center; }

  /* Hero stats — horizontal compact row (3 across) */
  .hero-stats { flex-direction: row; gap: 0; justify-content: center; width: 100%; }
  .stat-divider { display: none; }
  .stat {
    flex: 1;
    text-align: center;
    padding: 0 4px;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .stat:last-child { border-right: none; }
  .stat-num { font-size: 1.4rem; }
  .stat > span:not(.stat-num) { font-size: 0.85rem; }
  .stat small { font-size: 0.44rem; letter-spacing: 0.04em; line-height: 1.4; }

  .hero-dots { bottom: 76px; }
  .hero-slide-counter { display: none; }
  .hero-arrow { display: none; }
  .hero-scroll-indicator { display: none; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 28px 20px; }
  .why-card h3 { font-size: 1.2rem; }

  /* Destinations — single column, centered text layout */
  .destinations-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 190px !important;
    padding: 0 16px !important;
    gap: 10px;
  }
  .destinations-grid .dest-card {
    grid-column: auto !important;
    grid-row:    auto !important;
    min-height: unset;
  }
  /* Uniform scrim so centered text is readable anywhere on the card */
  .dest-overlay {
    background: linear-gradient(
      to bottom,
      rgba(5,8,20,0.48) 0%,
      rgba(5,8,20,0.28) 50%,
      rgba(5,8,20,0.55) 100%
    );
  }
  /* Center text vertically and horizontally inside the card */
  .dest-content {
    top: 0;              /* extend from top, not just bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 14px;
  }
  .dest-tag { font-size: 0.5rem; padding: 4px 12px; margin-bottom: 8px; }
  .dest-content h3 { font-size: 1.4rem; margin-bottom: 0; }
  .dest-content p { display: none; } /* hide subtitle — too cramped at 190px */
  .destinations-cta { padding: 0 16px; }

  /* Experiences */
  .exp-grid { grid-template-columns: 1fr; gap: 12px; }
  .exp-item { padding: 24px 20px; }
  .exp-icon-wrap { width: 60px; height: 60px; margin-bottom: 14px; }
  .exp-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
  .exp-item p { font-size: 0.83rem; margin-bottom: 10px; }

  /* Parallax */
  .parallax-content h2 { font-size: clamp(1.7rem, 6vw, 2.5rem); }
  .section-parallax { height: auto; min-height: 400px; padding: 80px 20px; }

  /* Stats */
  .stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-block { padding: 20px 12px; border: 1px solid var(--border-color); }
  .big-num { font-size: 2rem; }
  .big-plus { font-size: 1.4rem; }
  .stat-block p { font-size: 0.65rem; }

  /* Testimonials */
  .testi-card {
    flex: 0 0 calc(100vw - 32px); /* match container width exactly */
    padding: 28px 22px;
  }
  .testi-text { font-size: 0.97rem; }
  .testi-controls { margin-top: 28px; gap: 14px; }
  .testi-prev, .testi-next { width: 38px; height: 38px; font-size: 0.9rem; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }

  /* Gallery */
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 6px;
  }
  .gallery-item.tall,
  .gallery-item.wide { grid-row: span 1; grid-column: span 1; }

  /* About — Our Story */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-visual img { height: 260px; object-fit: cover; }
  /* Keep badge as absolute overlay on image — just make it smaller */
  .about-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    left: auto;
    padding: 12px 14px;
    border-radius: 12px;
    text-align: center;
  }
  .badge-num { font-size: 1.6rem; }
  .about-badge span:last-child { font-size: 0.52rem; }
  .about-text { text-align: left; }
  .about-text h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .about-lead { font-size: 1rem; }
  .about-values { gap: 8px; }
  .val-item { font-size: 0.75rem; padding: 6px 12px; }

  /* Contact */
  .contact-left h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .inquiry-form { padding: 24px 18px; border-radius: 16px; }
  .inquiry-form h3 { font-size: 1.4rem; margin-bottom: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 14px; }
  .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 0.85rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-grid .footer-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; align-items: start; }
  .footer-col h4 { grid-column: 1 / -1; margin-bottom: 12px; }
  .footer-col ul { display: contents; }
  .footer-col ul li a { font-size: 0.82rem; padding: 4px 0; display: block; }
  .footer-top { padding: 60px 0 40px; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; font-size: 0.7rem; }

  /* Mobile sticky CTA */
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 60px; }

  /* Floating WA */
  .floating-wa { bottom: 76px; right: 16px; width: 52px; height: 52px; }
  .floating-wa svg { width: 24px; height: 24px; }
}

/* ── Tiny phones: 400px ── */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .header-inner { padding: 13px 14px; }
  .logo { font-size: 1.15rem; }
  .logo .logo-w { font-size: 1.35rem; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-sub { font-size: 0.84rem; letter-spacing: 0.02em; }
  .hero-tag { font-size: 0.52rem; padding: 7px 14px; }
  .destinations-grid { grid-auto-rows: 190px !important; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .exit-popup-content { padding: 32px 18px 24px; }
  .footer-grid .footer-col { grid-template-columns: 1fr; }
  .btn-primary, .btn-whatsapp-hero { font-size: 0.76rem; padding: 12px 18px; }
  .mobile-cta-call, .mobile-cta-whatsapp { font-size: 0.72rem; padding: 14px 8px; gap: 6px; }
}

/* ============================================
   THEME TOGGLE SWITCH
   ============================================ */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}

.toggle-track {
  position: relative;
  width: 48px;
  height: 26px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  transition: background 0.4s ease, border-color 0.4s ease;
  display: flex;
  align-items: center;
}

/* Active (dark mode ON) state */
body.dark .toggle-track {
  background: var(--gold);
  border-color: var(--gold);
}

.toggle-thumb {
  position: absolute;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out), background 0.4s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
body.dark .toggle-thumb {
  transform: translateX(22px);
  background: var(--navy);
}

/* Sun visible in light, Moon visible in dark */
.icon-sun  { color: #f59e0b; display: block; }
.icon-moon { color: var(--gold-light); display: none; }
body.dark .icon-sun  { display: none; }
body.dark .icon-moon { display: block; }

.toggle-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
  user-select: none;
}
body.dark .toggle-label {
  color: var(--gold);
  content: 'Light';
}

/* Hide label on small screens */
@media (max-width: 900px) { .toggle-label { display: none; } }

/* ============================================
   DARK MODE — SECTION OVERRIDES
   ============================================ */

/* Body & page base */
body.dark { background: var(--bg-page); color: var(--text-primary); }

/* ─ Header ─ */
body.dark #header.scrolled {
  background: rgba(14, 17, 23, 0.94);
  box-shadow: 0 1px 0 rgba(201,168,76,0.12);
}

/* ─ Why section ─ */
body.dark .section-why { background: var(--bg-page); }
body.dark .why-card {
  background: var(--bg-card);
  border-color: rgba(201,168,76,0.1);
  box-shadow: none;
}
body.dark .why-card:hover { box-shadow: var(--shadow-card); }
body.dark .why-card h3 { color: var(--text-primary); }
body.dark .why-card p  { color: var(--text-mid); }

/* ─ Section headers ─ */
body.dark .section-header h2 { color: var(--text-primary); }
body.dark .section-header p  { color: var(--text-mid); }

/* ─ Destinations ─ */
body.dark .section-destinations { background: var(--bg-card-alt); }

/* ─ Stats ─ */
body.dark .section-stats {
  background: var(--bg-card-alt);
  border-color: rgba(201,168,76,0.08);
}
body.dark .big-num { color: var(--text-primary); }
body.dark .stat-block p { color: var(--text-mid); }

/* ─ Testimonials ─ */
body.dark .section-testimonials { background: var(--bg-page); }
body.dark .testi-card {
  background: var(--bg-card);
  border-color: rgba(201,168,76,0.1);
}
body.dark .testi-card:hover { box-shadow: var(--shadow-card); }
body.dark .testi-text  { color: var(--text-primary); }
body.dark .testi-author strong { color: var(--text-primary); }
body.dark .testi-author span   { color: var(--text-mid); }
body.dark .testi-prev,
body.dark .testi-next {
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}
body.dark .testi-dot { background: rgba(201,168,76,0.2); }

/* ─ Gallery ─ */
body.dark .section-gallery { background: var(--bg-card-alt); }

/* ─ About ─ */
body.dark .section-about { background: var(--bg-page); }
body.dark .about-text h2 { color: var(--text-primary); }
body.dark .about-lead    { color: var(--text-primary); }
body.dark .about-text p  { color: var(--text-mid); }
body.dark .val-item {
  background: var(--bg-card);
  border-color: rgba(201,168,76,0.15);
  color: var(--text-primary);
}

/* ─ Contact form ─ */
body.dark .inquiry-form {
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}
body.dark .inquiry-form h3 { color: var(--text-primary); }
body.dark .form-group label { color: var(--text-mid); }
body.dark .form-group input,
body.dark .form-group select,
body.dark .form-group textarea {
  background: var(--bg-input);
  border-color: rgba(255,255,255,0.07);
  color: var(--text-primary);
}
body.dark .form-group input::placeholder,
body.dark .form-group textarea::placeholder { color: var(--text-subtle); }
body.dark .form-group input:focus,
body.dark .form-group select:focus,
body.dark .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

/* ─ Preloader ─ */
body.dark #preloader { background: #08090e; }

/* ─ Mobile nav overlay ─ */
body.dark .mobile-nav-overlay { background: #0a0d14; }

/* ─ Exit popup ─ */
body.dark .exit-popup { background: var(--bg-card); }
body.dark .exit-popup-content h3 { color: var(--text-primary); }
body.dark .exit-popup-content p  { color: var(--text-mid); }
body.dark .exit-skip { color: var(--text-mid); }

/* ─ Marquee strip stays gold ─ */
/* ─ Hero, Experiences, Parallax, Instagram, Contact, Footer stay dark ─ (no override needed) */
