/* ============================================
   MONGOLIA EXPERIENCE — Premium Travel Website
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --gold: #E09F3E;
  --gold-dark: #C9812E;
  --gold-light: #EFBE76;
  --orange: #D15A2A;
  --bg-dark: #0A0A0A;
  --bg-dark-2: #141414;
  --bg-dark-3: #1E1E1E;
  --bg-cream: #F5F0E8;
  --bg-warm: #1C1410;
  --text-light: #F5F0E8;
  --text-muted: #B3ABA1;   /* lightened from #9A9389 for WCAG AA contrast on dark */
  --text-dim: #837E77;     /* lightened from #6B6761 */
  --border: rgba(224, 159, 62, 0.15);
  --border-hover: rgba(224, 159, 62, 0.4);
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* overflow-x: clip prevents horizontal scroll WITHOUT creating a scroll
   container — unlike overflow-x:hidden, which breaks position:sticky */
html { scroll-behavior: smooth; overflow-x: clip; width: 100%; }

body {
  /* Luxury aesthetic — restrained champagne whisper of warmth on a deep
     espresso-black base. Think Aman / Belmond / Four Seasons: depth and
     atmosphere through subtraction, not saturation. */
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(196,158,98,0.10) 0%, rgba(140,100,50,0.04) 40%, transparent 75%),
    radial-gradient(ellipse 120% 80% at 50% 60%, rgba(28,20,12,0.6) 0%, transparent 80%),
    linear-gradient(180deg, #0B0907 0%, #060504 55%, #0B0907 100%);
  background-attachment: fixed, fixed, scroll;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
body.light-mode {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(196,158,98,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 120% 60% at 50% 100%, rgba(140,95,30,0.06) 0%, transparent 75%),
    linear-gradient(180deg, #FAF6F0 0%, #F4ECDF 50%, #FAF6F0 100%);
  background-attachment: fixed, fixed, scroll;
}

img { display: block; max-width: 100%; height: auto; }

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

/* ===== NAV ===== */
nav.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), rgba(10,10,10,0.7) 70%, transparent);
  transition: padding 0.4s var(--ease);
}
nav.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 20%;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: -1;
}
nav.navbar.scrolled { padding: 14px 48px; background: rgba(10,10,10,0.97); }

.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.nav-logo img { height: 180px; width: auto; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links .nav-item { display: flex; align-items: center; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.95;
  transition: all 0.3s var(--ease);
  position: relative;
  padding: 8px 0;
  font-weight: 500;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }

.btn-nav {
  padding: 10px 22px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.btn-nav:hover { background: var(--gold); color: var(--bg-dark); }

.mobile-toggle { display: none; background: none; border: none; color: var(--gold); cursor: pointer; padding: 8px; }
.mobile-toggle svg { width: 24px; height: 24px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 1;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  /* Last stop is fully opaque so the hero photo melts seamlessly into the
     dark section below — no visible edge between image and flat black */
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.30) 35%, rgba(10,10,10,0.85) 88%, rgba(10,10,10,1) 100%);
}

/* ── Hero Slideshow ── */
.hero-slideshow { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  animation: ken-burns 8s ease-out forwards;
}
@keyframes ken-burns {
  from { transform: scale(1.0); }
  to { transform: scale(1.12); }
}
.hero-slideshow::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.30) 35%, rgba(10,10,10,0.85) 88%, rgba(10,10,10,1) 100%);
}
.hero-slideshow-dots {
  position: absolute; bottom: 36px; right: 48px; z-index: 3;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(245,240,232,0.3);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.4s ease;
}
.hero-dot.active { background: var(--gold); }
@media (max-width: 720px) {
  .hero-slideshow-dots { right: 50%; transform: translateX(50%); bottom: 90px; }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  animation: fadeUp 1.2s var(--ease-smooth) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* "Established" badge above the hero eyebrow — small luxury signal */
.hero-established {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0.85;
}
.hero-est-line {
  width: 28px;
  height: 1px;
  background: rgba(224,159,62,0.6);
}
.hero-est-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(245,240,232,0.85);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: 13px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 50px; height: 1px; background: var(--gold); opacity: 0.5;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7.2vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--text-light);
  text-shadow: 0 6px 28px rgba(0,0,0,0.55);
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }
/* Line below the title — bumped up + soft translucent pill + shadow so it
   passes the 3-second readability test for older viewers */
.hero-subtitle {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300; font-style: italic;
  color: #F5F0E8;
  letter-spacing: 2px;
  margin-bottom: 44px;
  padding: 10px 30px;
  background: rgba(10,10,10,0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-desc {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(245,240,232,0.85);
  max-width: 620px;
  margin: 0 auto 52px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.hero-cta { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn-primary, .btn-outline {
  display: inline-block;
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
  position: relative;
}
.btn-primary { background: var(--gold); color: var(--bg-dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(224,159,62,0.25); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid rgba(224,159,62,0.5); }
.btn-outline:hover { border-color: var(--gold); background: rgba(224,159,62,0.08); transform: translateY(-2px); }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-muted);
}
.scroll-hint span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%,100%{opacity:0.3; transform:scaleY(0.7)} 50%{opacity:1; transform:scaleY(1)} }

/* ===== SECTIONS ===== */
section { padding: 110px 48px; position: relative; }
.container { max-width: 1240px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }

.section-head { margin-bottom: 72px; }
.section-tag {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 14px;
  font-weight: 500;
}
.section-tag::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 26px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  /* Bumped from 14px / 0.6 opacity (too thin & faded) to a comfortable
     reading size with stronger contrast — better for the older audience */
  font-size: 17px; line-height: 1.9;
  color: rgba(245,240,232,0.88);
  max-width: 620px;
  font-weight: 300;
  letter-spacing: 0.15px;
}
body.light-mode .section-body { color: #2A2018; }
.section-head.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
}
.section-head.split .section-title { margin-bottom: 0; }

/* ===== STATS ===== */
.stats {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 48px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1240px; margin: 0 auto; gap: 1px; }
.stat { text-align: center; padding: 24px 16px; position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: var(--border); }
.stat-num { font-family: var(--font-serif); font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 12px; transition: transform 0.4s var(--ease); display: inline-block; }
.stat:hover .stat-num { transform: scale(1.08); }
.stat-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }

/* ===== EXPERIENCES / FEATURE CARDS ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.feature-card {
  background: var(--bg-dark-2);
  padding: 52px 38px;
  position: relative;
  transition: background 0.5s var(--ease);
  cursor: pointer;
  border-top: 1px solid transparent;
  min-height: 340px;
}
.feature-card:hover { background: var(--bg-dark-3); border-top-color: var(--gold); }
.feature-num {
  position: absolute; top: 28px; right: 32px;
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  color: rgba(224,159,62,0.18);
  line-height: 1;
}
.feature-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-light);
  margin: 40px 0 16px;
  line-height: 1.25;
}
.feature-desc {
  font-size: 16px; line-height: 1.85;
  color: rgba(245,240,232,0.82);
  font-weight: 300;
  letter-spacing: 0.15px;
}
body.light-mode .feature-desc { color: #3A3028; }
.feature-link {
  display: inline-block;
  margin-top: 30px;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s;
  font-weight: 500;
}
.feature-card:hover .feature-link { letter-spacing: 3.5px; }

/* ===== DESTINATION CARDS WITH IMAGES ===== */
.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 2px;
}
.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-dark-3);
}
.dest-card.tall { grid-row: span 2; }
.dest-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease-smooth);
}
.dest-card:hover .dest-card-bg { transform: scale(1.08); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.35) 45%, transparent 80%);
  z-index: 1;
}
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2; }
.dest-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.dest-title { font-family: var(--font-serif); font-size: 24px; font-weight: 400; color: var(--text-light); margin-bottom: 6px; }
.dest-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ===== TOURS LIST ===== */
.tours-list { display: flex; flex-direction: column; }
.tour-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 8px;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.tour-item:first-child { border-top: 1px solid var(--border); }
.tour-item:hover { padding-left: 24px; background: rgba(224,159,62,0.03); }
.tour-num { font-family: var(--font-serif); font-size: 38px; font-weight: 300; color: rgba(224,159,62,0.25); }
.tour-name { font-family: var(--font-serif); font-size: 24px; font-weight: 400; color: var(--text-light); margin-bottom: 8px; }
.tour-meta { font-size: 11px; letter-spacing: 1.5px; color: var(--text-muted); }
.tour-meta span { color: var(--gold); margin-right: 18px; }
.tour-price { text-align: right; }
.tour-price-from { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.tour-price-num { font-family: var(--font-serif); font-size: 30px; font-weight: 300; color: var(--gold); }

/* ===== SPLIT IMAGE SECTION ===== */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}
.split-image { background-size: cover; background-position: center; will-change: transform; }
.page-hero-bg, .cta-banner-bg, .booking-hero-bg, .terms-hero-bg { will-change: transform; }
.split-content { padding: 96px 72px; display: flex; flex-direction: column; justify-content: center; background: var(--bg-dark-2); }
.split-content .section-title { font-size: clamp(32px, 3.5vw, 48px); }

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.55) 70%, rgba(10,10,10,0.92) 92%, rgba(10,10,10,1) 100%); }
.page-hero-content { position: relative; z-index: 2; text-align: center; padding: 240px 24px 0; }
.page-hero-eyebrow { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; text-shadow: 0 2px 10px rgba(0,0,0,0.55); }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(42px, 6vw, 78px); font-weight: 300; line-height: 1.05; text-shadow: 0 4px 24px rgba(0,0,0,0.55); }
.page-hero h1 em { font-style: italic; color: var(--gold); }
/* Subtitle line gets stronger contrast — text-shadow + a soft translucent
   pill backdrop so it reads in 3 seconds against any photo behind it */
.page-hero-sub {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: #F5F0E8;
  letter-spacing: 1.5px;
  padding: 10px 28px;
  background: rgba(10,10,10,0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ===== ARTICLE CONTENT (for info pages) ===== */
/* ===== LUXURY ELEMENTS ===== */

/* Ornamental gold divider — used between major sections.
   Two hairlines with a centered diamond accent — Aman / Belmond style. */
.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 460px;
  margin: 0 auto;
  padding: 56px 24px;
  opacity: 0.7;
}
.luxury-divider::before,
.luxury-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(224,159,62,0.55) 50%, transparent);
}
.luxury-divider-mark {
  width: 7px; height: 7px;
  transform: rotate(45deg);
  border: 1px solid rgba(224,159,62,0.6);
  background: rgba(224,159,62,0.15);
  position: relative;
}
.luxury-divider-mark::before {
  content: '';
  position: absolute; inset: -8px;
  border: 1px solid rgba(224,159,62,0.2);
}
body.light-mode .luxury-divider::before,
body.light-mode .luxury-divider::after {
  background: linear-gradient(to right, transparent, rgba(140,95,30,0.55) 50%, transparent);
}
body.light-mode .luxury-divider-mark {
  border-color: rgba(140,95,30,0.7);
  background: rgba(140,95,30,0.18);
}
body.light-mode .luxury-divider-mark::before { border-color: rgba(140,95,30,0.3); }

/* "As featured in" — restrained press / recognition strip */
.press-strip {
  padding: 70px 24px 80px;
  text-align: center;
  position: relative;
}
.press-strip-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  opacity: 0.85;
}
.press-strip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.press-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(245,240,232,0.55);
  letter-spacing: 0.5px;
  transition: color 0.5s ease;
}
.press-name:hover { color: rgba(245,240,232,0.9); }
body.light-mode .press-name { color: rgba(40,28,16,0.55); }
body.light-mode .press-name:hover { color: rgba(40,28,16,0.9); }

/* Trust badges row — review count, memberships */
.trust-strip {
  padding: 60px 24px;
  text-align: center;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
}
.trust-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
}
.trust-value {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-light);
  font-style: italic;
}
body.light-mode .trust-label { color: rgba(40,28,16,0.6); }

/* Bespoke / Private journey badge — small pill on tour cards & headers */
.private-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 12px;
  border: 1px solid rgba(224,159,62,0.4);
  background: rgba(224,159,62,0.06);
  backdrop-filter: blur(4px);
}
.private-badge::before {
  content: '✦';
  font-size: 10px;
  color: var(--gold);
}

/* ===== YOUR JOURNEY IN 3 ACTS ===== */
.journey-acts {
  padding: 120px 48px;
  position: relative;
}
.acts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.act-card {
  position: relative;
  text-align: left;
  padding: 0 8px;
}
.act-num {
  font-family: var(--font-serif);
  font-size: 88px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.45;
  margin-bottom: 4px;
  letter-spacing: -2px;
}
.act-line {
  width: 48px;
  height: 1px;
  background: rgba(224,159,62,0.6);
  margin: 22px 0 28px;
}
.act-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.act-desc {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(245,240,232,0.72);
  font-weight: 300;
  letter-spacing: 0.2px;
}
body.light-mode .act-title { color: #1A1208; }
body.light-mode .act-desc { color: #3A3028; }

@media (max-width: 880px) {
  .acts-grid { grid-template-columns: 1fr; gap: 48px; }
  .journey-acts { padding: 80px 24px; }
  .act-num { font-size: 64px; }
}

.article { max-width: 860px; margin: 0 auto; }
.article h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--gold);
  margin: 64px 0 20px;
  line-height: 1.2;
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-light);
  margin: 40px 0 14px;
}
.article h4 {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 32px 0 12px;
  font-weight: 500;
}
.article p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245,240,232,0.75);
  margin-bottom: 18px;
  font-weight: 300;
}
.article ul { margin: 12px 0 20px 20px; }
.article li { font-size: 15px; line-height: 1.9; color: rgba(245,240,232,0.75); padding: 4px 0; list-style: none; position: relative; padding-left: 20px; }
.article li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.article hr { border: none; border-top: 1px solid var(--border); margin: 60px 0; }

.article-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.info-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 24px;
}
.info-card h3 { margin-top: 0; color: var(--gold); font-size: 20px; }

/* ===== TOUR DETAIL SIDEBAR — sticky booking card =====
   Defined here (loaded by every tour page) with .tour-layout .sidebar so it
   beats the per-page inline `.sidebar` rule by specificity. The booking card
   is pulled to the top via order:-1 so the price + "Book Now" CTA always
   follows the visitor down the long day-by-day itinerary. */
.tour-layout .sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(224,159,62,0.4) transparent;
}
.tour-layout .sidebar::-webkit-scrollbar { width: 6px; }
.tour-layout .sidebar::-webkit-scrollbar-thumb { background: rgba(224,159,62,0.35); border-radius: 3px; }
.tour-layout .sidebar .sidebar-card { margin-bottom: 0 !important; }
/* "Book This Tour" is the last card in markup — float it to the top */
.tour-layout .sidebar .sidebar-card:last-child { order: -1; }

@media (max-width: 900px) {
  .tour-layout .sidebar {
    position: static;
    display: block;
    max-height: none;
    overflow: visible;
  }
  .tour-layout .sidebar .sidebar-card { margin-bottom: 24px !important; }
  .tour-layout .sidebar .sidebar-card:last-child { order: 0; }
}

/* ===== FORMS ===== */
.form-section { background: var(--bg-dark-2); padding: 80px 48px; }
.form-container { max-width: 780px; margin: 0 auto; }
.form-group { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="date"], textarea, select {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--gold);   /* visible focus ring for keyboard users (WCAG 2.4.7) */
  outline-offset: 2px;
  border-color: var(--gold);
}
textarea { min-height: 120px; resize: vertical; line-height: 1.6; }

/* ===== GLOBAL KEYBOARD FOCUS RING =====
   Visible only on keyboard navigation (:focus-visible), not on mouse click,
   so the design stays clean while remaining accessible (WCAG 2.4.7 AA). */
a:focus-visible,
button:focus-visible,
.btn-nav:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.dark-toggle:focus-visible,
.mobile-toggle:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%23E09F3E' d='M1 1l5 5 5-5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.radio-group, .checkbox-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 6px; }
.radio-group.single-col, .checkbox-group.single-col { grid-template-columns: 1fr; }
.radio-option, .checkbox-option {
  position: relative;
  border: 1px solid var(--border);
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 13px;
  color: rgba(245,240,232,0.8);
  font-weight: 300;
}
.radio-option:hover, .checkbox-option:hover { border-color: var(--border-hover); background: rgba(224,159,62,0.03); }
.radio-option input, .checkbox-option input { position: absolute; opacity: 0; }
.radio-option input:checked ~ span, .checkbox-option input:checked ~ span { color: var(--gold); font-weight: 500; }
.radio-option input:checked + span::before, .checkbox-option input:checked + span::before { content: '✓ '; color: var(--gold); }
.radio-option:has(input:checked), .checkbox-option:has(input:checked) { border-color: var(--gold); background: rgba(224,159,62,0.05); }

.btn-submit {
  display: inline-block;
  padding: 18px 56px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(224,159,62,0.25); }

.form-section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold);
  font-weight: 400;
  margin: 48px 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.form-section-title:first-of-type { margin-top: 0; }

/* ===== REVIEWS ===== */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.3s;
}
.review-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.review-stars { color: var(--gold); margin-bottom: 16px; font-size: 16px; letter-spacing: 3px; }
.review-text { font-family: var(--font-serif); font-style: italic; font-size: 18px; line-height: 1.7; color: rgba(245,240,232,0.85); margin-bottom: 24px; font-weight: 400; }
.review-author { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--border); }
.review-name { font-size: 13px; letter-spacing: 1px; color: var(--text-light); font-weight: 500; }
.review-origin { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { cursor: pointer; transition: transform 0.4s var(--ease); }
.blog-card:hover { transform: translateY(-6px); }
.blog-img { height: 280px; background-size: cover; background-position: center; margin-bottom: 20px; }
.blog-date { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-title { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--text-light); margin-bottom: 10px; line-height: 1.3; }
.blog-excerpt { font-size: 13px; line-height: 1.7; color: var(--text-muted); margin-bottom: 14px; font-weight: 300; }
.blog-link { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }

/* ===== ABOUT ===== */
.founder-section { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: center; }
.founder-img {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-dark-3), var(--bg-dark-2));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.contact-info-item { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.contact-info-value { font-size: 16px; color: var(--text-light); font-weight: 300; }
.contact-info-value a { color: var(--text-light); transition: color 0.3s; }
.contact-info-value a:hover { color: var(--gold); }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 120px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 1;
}
.cta-banner-bg::after { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,0.72); }
.cta-banner-content { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.cta-banner h2 { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 54px); font-weight: 300; color: var(--text-light); margin-bottom: 20px; line-height: 1.15; }
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p { font-size: 15px; color: rgba(245,240,232,0.75); margin-bottom: 36px; font-weight: 300; line-height: 1.8; }

/* ===== FOOTER ===== */
footer.footer {
  background: #080808;
  padding: 80px 48px 28px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { height: 60px; width: auto; align-self: flex-start; }
.footer-desc { font-size: 13px; line-height: 1.9; color: var(--text-muted); font-weight: 300; max-width: 320px; }
.footer-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1240px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(154,147,137,0.5); letter-spacing: 1px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 14px; height: 14px; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  /* Slower, more deliberate reveal — luxury brands don't rush */
  transition: opacity 1.6s var(--ease-smooth), transform 1.6s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav.navbar { padding: 16px 24px; }
  section { padding: 80px 24px; }
  .form-section { padding: 60px 24px; }
  .cta-banner, .stats { padding: 80px 24px; }
  footer.footer { padding: 60px 24px 24px; }
  .section-head.split { grid-template-columns: 1fr; gap: 20px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card.tall { grid-row: auto; min-height: 280px; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 400px; }
  .split-content { padding: 60px 32px; }
  .founder-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  nav.navbar { padding: 14px 18px; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(10,10,10,0.98); flex-direction: column; padding: 40px 24px; gap: 24px; border-top: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; }
  .nav-right .btn-nav { display: none; }
  .mobile-toggle { display: block; }

  /* ── Mobile: make dropdowns work on touch ──
     CSS :hover never fires on touch, so when the mobile menu is open we render
     every dropdown inline (always visible) instead of as a floating hover panel.
     This makes all tour, plan-your-trip and destination sublinks reachable. */
  .nav-links .nav-item { display: block; width: 100%; }
  .nav-links .dropdown,
  .nav-links .dropdown.mega {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    min-width: 0; width: 100%;
    background: transparent;
    border: none; border-top: none;
    backdrop-filter: none;
    padding: 4px 0 8px 14px;
    margin-top: 4px;
    border-left: 1px solid rgba(224,159,62,0.25);
  }
  .nav-links .mega-inner { display: block; grid-template-columns: none; padding: 0; }
  .nav-links .mega-col:first-child { border-right: none; }
  .nav-links .dropdown a { padding: 10px 0 10px 6px; font-size: 13px; }
  .nav-links .dropdown a:hover { padding-left: 12px; }
  /* hide the desktop dropdown caret indicator on mobile */
  .nav-item > a::before { display: none; }
  .hero { min-height: 580px; }
  .hero-title { font-size: 44px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; }
  section { padding: 64px 20px; }
  .form-section { padding: 48px 20px; }
  .stats { padding: 40px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .stat-num { font-size: 42px; }
  .stat:not(:last-child)::after { display: none; }
  .feature-grid, .blog-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .tour-item { grid-template-columns: 50px 1fr; gap: 16px; }
  .tour-price { grid-column: 1/-1; text-align: left; padding-top: 12px; border-top: 1px solid var(--border); }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .radio-group, .checkbox-group { grid-template-columns: 1fr; }
  .cta-banner { padding: 72px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; padding-top: 24px; }
  .nav-logo-text { font-size: 14px; letter-spacing: 2px; }
  .nav-logo img { height: 60px; max-width: 160px; object-fit: contain; }
}

/* ===== LIGHT MODE ===== */
body.light-mode {
  --bg-dark: #F8F4EE;
  --bg-dark-2: #EEEAE3;
  --bg-dark-3: #E0DAD0;
  --bg-warm: #F0EAE0;
  --text-light: #1A1208;
  --text-muted: #4A4038;
  --text-dim: #6B6055;
  --border: rgba(140, 95, 30, 0.25);
  --border-hover: rgba(140, 95, 30, 0.5);
}

/* Nav — over hero it stays transparent (like dark mode) so the image flows
   seamlessly behind it; only once scrolled does it become solid cream. */
body.light-mode nav.navbar {
  background: linear-gradient(to bottom, rgba(12,10,6,0.78), rgba(12,10,6,0.42) 65%, transparent);
  border-bottom: none;
}
body.light-mode nav.navbar .nav-links > a,
body.light-mode nav.navbar .nav-links > .nav-item > a { color: #F5F0E8; }
body.light-mode nav.navbar .nav-links > a:hover,
body.light-mode nav.navbar .nav-links > .nav-item > a:hover { color: var(--gold); }
body.light-mode nav.navbar .nav-links > a.active { color: var(--gold); }

/* Scrolled past the hero → solid cream bar with dark text */
body.light-mode nav.navbar.scrolled {
  background: rgba(248,244,238,0.98);
  border-bottom: 1px solid rgba(140,95,30,0.12);
  box-shadow: 0 2px 26px rgba(70,48,16,0.08);
}
body.light-mode nav.navbar.scrolled .nav-links > a,
body.light-mode nav.navbar.scrolled .nav-links > .nav-item > a { color: #1A1208; }
body.light-mode nav.navbar.scrolled .nav-links > a:hover,
body.light-mode nav.navbar.scrolled .nav-links > .nav-item > a:hover { color: var(--gold-dark); }
body.light-mode nav.navbar.scrolled .nav-links > a.active { color: var(--gold-dark); }

/* Mobile slide-down panel is always solid cream with dark links */
@media (max-width: 720px) {
  body.light-mode .nav-links,
  body.light-mode .nav-links.open { background: rgba(248,244,238,0.99); border-top-color: rgba(140,95,30,0.18); }
  body.light-mode nav.navbar .nav-links > a,
  body.light-mode nav.navbar .nav-links > .nav-item > a,
  body.light-mode nav.navbar.scrolled .nav-links > a,
  body.light-mode nav.navbar.scrolled .nav-links > .nav-item > a { color: #1A1208; }
}

/* Body & sections */
body.light-mode { color: #1A1208; }
body.light-mode section { color: #1A1208; }

/* Section text */
body.light-mode .section-title { color: #1A1208; }
body.light-mode .section-body { color: #4A4038; }
body.light-mode .hero-desc { color: rgba(26,18,8,0.75); }
body.light-mode .hero-subtitle { color: #6B6055; }
body.light-mode p { color: #3A3028; }

/* Cards */
body.light-mode .feature-card { background: #EEEAE3; border-top-color: transparent; }
body.light-mode .feature-card:hover { background: #E4DFD7; border-top-color: var(--gold); }
body.light-mode .feature-name { color: #1A1208; }
body.light-mode .feature-desc { color: #4A4038; }

/* Stats */
body.light-mode .stats { background: #EDE8E0; border-color: rgba(140,95,30,0.2); }
body.light-mode .stat-label { color: #4A4038; }

/* Tours */
body.light-mode .tour-name { color: #1A1208; }
body.light-mode .tour-meta { color: #4A4038; }
body.light-mode .tour-item { border-bottom-color: rgba(140,95,30,0.2); }
body.light-mode .tour-item:first-child { border-top-color: rgba(140,95,30,0.2); }
body.light-mode .tour-item:hover { background: rgba(140,95,30,0.04); padding-left: 24px; }

/* Destinations */
body.light-mode .dest-card { background: #E4DFD7; }

/* Reviews */
body.light-mode .review-card { background: #EEEAE3; border-color: rgba(140,95,30,0.2); }
body.light-mode .review-text { color: #2A2018; }
body.light-mode .review-name { color: #1A1208; }
body.light-mode .review-author { border-top-color: rgba(140,95,30,0.2); }

/* Blog */
body.light-mode .blog-title { color: #1A1208; }
body.light-mode .blog-excerpt { color: #4A4038; }

/* Article/Travel info */
body.light-mode .article p { color: #3A3028 !important; }
body.light-mode .article li { color: #3A3028 !important; }
body.light-mode .article h2 { color: #9A6516 !important; }
body.light-mode .article h3 { color: #1A1208 !important; }
body.light-mode .article h4 { color: #9A6516 !important; }
body.light-mode .info-card { background: #EEEAE3; border-color: rgba(140,95,30,0.2); }
body.light-mode .info-card h3 { color: #9A6516 !important; }

/* Many article elements hardcode a near-white inline colour
   (color:rgba(245,240,232,…)) that stays invisible on the cream light
   background. Catch every such element and flip it to readable dark.
   Gold accents use var(--gold)/rgba(224,159,62,…) so they're untouched. */
body.light-mode .article [style*="rgba(245,240,232"],
body.light-mode .article [style*="rgba(245, 240, 232"] { color: #3A3028 !important; }
body.light-mode .article [style*="rgba(245,240,232,0.6"],
body.light-mode .article [style*="rgba(245,240,232,0.65"] { color: #5A5048 !important; }
/* Highlight / callout boxes: lift the tint so they read on cream */
body.light-mode .article [style*="background:rgba(224,159,62,0.0"],
body.light-mode .article [style*="background:rgba(224, 159, 62, 0.0"] { background: rgba(224,159,62,0.12) !important; }

/* About */
body.light-mode .founder-img { background: #E4DFD7; }

/* Booking/Forms */
body.light-mode .booking-intro { background: #EEEAE3; border-color: rgba(140,95,30,0.2); }
body.light-mode .booking-intro p { color: #3A3028; }
body.light-mode .form-section { background: #EEEAE3; }
body.light-mode input, body.light-mode select, body.light-mode textarea { background: #F8F4EE; color: #1A1208; border-color: rgba(140,95,30,0.3); }
body.light-mode input::placeholder, body.light-mode textarea::placeholder { color: #9A9389; }
body.light-mode label { color: var(--gold-dark); }
body.light-mode .radio-option, body.light-mode .checkbox-option { border-color: rgba(140,95,30,0.2); color: #3A3028; }
body.light-mode .form-section-title { color: var(--gold-dark); border-bottom-color: rgba(140,95,30,0.2); }
body.light-mode .sig-container { background: #fff; border-color: rgba(140,95,30,0.3); }
body.light-mode .sig-placeholder { color: #bbb; }
body.light-mode .section-divider { color: var(--gold-dark); }
body.light-mode .section-divider::before, body.light-mode .section-divider::after { background: rgba(140,95,30,0.2); }

/* Tour detail pages */
body.light-mode .day-card { background: #EEEAE3; border-left-color: var(--gold); }
body.light-mode .day-title { color: #1A1208; }
body.light-mode .day-label { color: var(--gold-dark); }
body.light-mode .day-meta { color: #4A4038; border-top-color: rgba(140,95,30,0.2); }
body.light-mode .sidebar-card { background: #EEEAE3; border-color: rgba(140,95,30,0.2); }
body.light-mode .sidebar-stat-label { color: #4A4038; }
body.light-mode .sidebar-stat-value { color: #1A1208; }
body.light-mode .sidebar-stat { border-bottom-color: rgba(140,95,30,0.2); }
body.light-mode .brief-itinerary { background: #EEEAE3; border-color: rgba(140,95,30,0.2); }
body.light-mode .brief-day { border-bottom-color: rgba(140,95,30,0.2); }
body.light-mode .brief-day-text { color: #3A3028; }
body.light-mode .includes-list li { color: #3A3028; border-bottom-color: rgba(140,95,30,0.15); }
body.light-mode .tour-main p { color: #3A3028; }
body.light-mode .tour-main ul li { color: #3A3028; }

/* Terms */
body.light-mode .terms-body-text { color: #3A3028; }
body.light-mode .terms-title { color: #1A1208; }
body.light-mode .terms-highlight { background: rgba(224,159,62,0.08); color: #2A2018; }
body.light-mode .payment-table td { color: #3A3028; }
body.light-mode .payment-table tr { background: #EEEAE3; }
body.light-mode .payment-table tr:nth-child(even) { background: #E4DFD7; }
body.light-mode .accept-bar { background: rgba(248,244,238,0.97); border-top-color: rgba(140,95,30,0.2); }

/* Contact */
body.light-mode .contact-info-value { color: #1A1208; }
body.light-mode .contact-info-label { color: var(--gold-dark); }
body.light-mode .contact-info-item { border-bottom-color: rgba(140,95,30,0.2); }

/* Footer */
body.light-mode footer.footer { background: #E4DED4; border-top-color: rgba(140,95,30,0.2); }
body.light-mode .footer-desc { color: #4A4038; }
body.light-mode .footer-col a { color: #4A4038; }
body.light-mode .footer-col a:hover { color: var(--gold-dark); }
body.light-mode .footer-grid { border-bottom-color: rgba(140,95,30,0.2); }
body.light-mode .footer-bottom { color: #6B6055; }

/* Split sections */
body.light-mode .split-content { background: #EEEAE3; }

/* Hero & page hero — keep the exact same immersive dark gradient as dark mode
   so the photo reads as one cohesive full-bleed image with white text */
body.light-mode .page-hero-bg::after { background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.55) 72%, rgba(10,10,10,0.55) 86%, rgba(248,244,238,0.85) 96%, #F8F4EE 100%); }
body.light-mode .page-hero h1 { color: #F5F0E8; }
body.light-mode .page-hero h1 em { color: var(--gold); }
body.light-mode .page-hero-sub { color: rgba(245,240,232,0.85); }
body.light-mode .page-hero-eyebrow { color: var(--gold); }

/* Main hero section — identical gradient to dark mode */
body.light-mode .hero-bg::after { background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.30) 35%, rgba(10,10,10,0.65) 85%, rgba(248,244,238,0.85) 96%, #F8F4EE 100%); }
body.light-mode .hero-slideshow::after { background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.30) 35%, rgba(10,10,10,0.65) 85%, rgba(248,244,238,0.85) 96%, #F8F4EE 100%); }
body.light-mode .hero-title { color: #F5F0E8 !important; }
body.light-mode .hero-title em { color: var(--gold) !important; }
body.light-mode .hero-desc { color: rgba(245,240,232,0.85) !important; }
body.light-mode .hero-eyebrow { color: var(--gold) !important; }

/* CTA banner */
body.light-mode .cta-banner-content h2 { color: #F5F0E8; }
body.light-mode .cta-banner-content p { color: rgba(245,240,232,0.8); }

/* Split section зурагтай хэсэг */
body.light-mode .split-content h2 { color: #1A1208; }
body.light-mode .split-content p { color: #3A3028; }

/* Buttons — gold buttons must keep dark text in light mode (var(--bg-dark)
   flips to cream in light mode, which would wash the label out) */
body.light-mode .btn-primary { color: #1A1208; }
body.light-mode .btn-primary:hover { color: #1A1208; }

/* Reading progress bar stays visible on cream */
body.light-mode .reading-progress { background: rgba(140,95,30,0.1); }

/* Misc text accents */
body.light-mode .section-tag { color: var(--gold-dark); }
body.light-mode .scroll-hint { color: rgba(26,18,8,0.55); }
body.light-mode .quote-text { color: #2A2018; }
body.light-mode .quote-author { color: var(--gold-dark); }

/* Tour detail hero — title sits over a dark photo, so it must stay light
   (the inline color:var(--text-light) flips dark in light mode). !important
   is required to beat the inline style. Only affects text over the image. */
body.light-mode .tour-hero-content h1 { color: #F5F0E8 !important; }
body.light-mode .tour-hero-content h1 em { color: var(--gold) !important; }
body.light-mode .tour-hero-content p,
body.light-mode .tour-hero-content .tour-subtitle { color: rgba(245,240,232,0.85) !important; }

/* Dark mode toggle button */
.dark-toggle {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.dark-toggle:hover { background: rgba(224,159,62,0.1); }

/* ===== DROPDOWN MEGA MENU ===== */
.nav-item { position: relative; }

.nav-item > a { display: flex; align-items: center; gap: 5px; }
.nav-item > a::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 2px; opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
  order: 1;
}
.nav-item:hover > a::before { transform: rotate(-135deg) translateY(-2px); opacity: 1; color: var(--gold); }

.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(0);
  background: rgba(10,10,10,0.98);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  backdrop-filter: blur(16px);
  z-index: 200;
  padding-top: 8px; /* gap нөхөх нэмэлт padding */
}
/* gap нөхөх pseudo-element — cursor алдагдахгүй */
.nav-item::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 12px;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {            /* keyboard users can open submenus by tabbing in */
  opacity: 1; visibility: visible; pointer-events: all;
}

.dropdown-inner { padding: 8px 0; }

/* Luxury dropdown — clean editorial typography with a subtle gold accent
   bar on hover. No emoji icons. Aman / Belmond-style refined navigation. */
.dropdown a {
  display: block;
  position: relative;
  padding: 16px 28px 16px 32px;
  font-family: var(--font-serif);
  font-size: 14px; letter-spacing: 0.5px; text-transform: none;
  color: rgba(245,240,232,0.78);
  text-decoration: none;
  transition: color 0.35s var(--ease-smooth), background 0.35s var(--ease-smooth), padding 0.35s var(--ease-smooth);
  opacity: 1 !important;
  font-weight: 400;
}
.dropdown a::before {
  content: '';
  position: absolute;
  left: 20px; top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width 0.4s var(--ease-smooth);
}
.dropdown a::after { display: none !important; }
.dropdown a:hover {
  color: var(--gold);
  background: rgba(224,159,62,0.04);
  padding-left: 44px;
}
.dropdown a:hover::before { width: 16px; }
.dropdown a .dd-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: rgba(245,240,232,0.45);
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: 400;
}
.dropdown a:hover .dd-sub { color: rgba(224,159,62,0.7); }

.dropdown-divider { height: 1px; background: rgba(224,159,62,0.15); margin: 10px 22px; }

.dropdown-header {
  padding: 14px 28px 6px;
  font-size: 9px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
  font-family: var(--font-sans);
  font-weight: 500;
}

/* Mega menu — wide, refined */
.dropdown.mega {
  min-width: 580px; left: 0; transform: translateX(-20%);
}
.nav-item:hover .dropdown.mega { transform: translateX(-20%) translateY(0); }
.mega-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 14px 0 10px; }
.mega-col { padding: 0; }
.mega-col-title {
  padding: 6px 28px 12px;
  font-size: 9px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); opacity: 0.75;
  font-family: var(--font-sans);
  font-weight: 500;
  border-bottom: 1px solid rgba(224,159,62,0.12);
  margin-bottom: 6px;
}
.mega-col:first-child { border-right: 1px solid rgba(224,159,62,0.12); }

/* Light mode dropdown */
body.light-mode .dropdown {
  background: rgba(248,244,238,0.98);
  border-color: rgba(140,95,30,0.2);
}
body.light-mode .dropdown a { color: rgba(26,18,8,0.7); }
body.light-mode .dropdown a:hover { color: var(--gold); background: rgba(224,159,62,0.08); }
body.light-mode .dropdown-divider { background: rgba(140,95,30,0.15); }

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-btn::before {
  content: 'Chat with us';
  position: absolute; right: 68px; top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.92);
  color: #fff; font-size: 12px; letter-spacing: 1px;
  white-space: nowrap; padding: 8px 14px;
  border-radius: 4px;
  opacity: 0; visibility: hidden;
  transition: all 0.2s;
  border: 1px solid var(--border);
}
.whatsapp-btn:hover::before { opacity: 1; visibility: visible; }

/* ===== READING PROGRESS BAR ===== */
.reading-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(224,159,62,0.1);
  z-index: 1001;
  pointer-events: none;
}
.reading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(224,159,62,0.6);
}

/* ===== PHOTO STORIES (HOME) ===== */
.photo-stories {
  padding: 110px 48px;
  background: var(--bg-dark);
  position: relative;
}
.photo-marquee-wrap {
  margin-top: 56px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.photo-marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.photo-marquee:hover { animation-play-state: paused; }
.photo-marquee-item {
  flex-shrink: 0;
  width: 320px;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.photo-marquee-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}
.photo-marquee-item:hover img { transform: scale(1.08); }
.photo-marquee-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.photo-marquee-caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-light);
  font-style: italic;
}
.photo-marquee-caption-tag {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}

/* ===== ENHANCED TOUR CARDS WITH IMAGES ===== */
.tour-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.tour-card-v2 {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-dark-2);
  /* Taller, more cinematic ratio — gives the photo more presence */
  height: 580px;
  display: block;
  text-decoration: none;
  border: 1px solid rgba(196,158,98,0.10);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 30px 70px rgba(0,0,0,0.5),
    0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth), border-color 0.6s var(--ease-smooth);
}
.tour-card-v2:hover {
  transform: translateY(-12px);
  border-color: rgba(224,159,62,0.55);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 48px 100px rgba(0,0,0,0.6),
    0 12px 32px rgba(224,159,62,0.22);
}
.tour-card-v2-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.6s var(--ease-smooth);
  z-index: 1;
}
.tour-card-v2:hover .tour-card-v2-bg { transform: scale(1.08); }
.tour-card-v2-overlay {
  position: absolute; inset: 0;
  /* Deeper, more dramatic gradient — photo emerges into a dark base */
  background: linear-gradient(to top, rgba(8,6,4,0.97) 0%, rgba(8,6,4,0.78) 30%, rgba(10,8,5,0.30) 65%, rgba(10,8,5,0.05) 100%);
  z-index: 2;
}
/* Subtle gold hairline that fades in on hover — luxury detail */
.tour-card-v2::after {
  content: '';
  position: absolute;
  left: 32px; right: 32px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(224,159,62,0.6), transparent);
  z-index: 4;
  opacity: 0;
  transition: opacity 0.6s var(--ease-smooth), bottom 0.6s var(--ease-smooth);
}
.tour-card-v2:hover::after { opacity: 1; bottom: 16px; }
.tour-card-v2-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px 32px;
  z-index: 3;
  transform: translateY(28px);
  transition: transform 0.6s var(--ease-smooth);
}
.tour-card-v2:hover .tour-card-v2-content { transform: translateY(0); }
/* "VIEW JOURNEY →" CTA that reveals on hover — editorial luxury pattern */
.tour-card-v2-cta-reveal {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(224,159,62,0.25);
  opacity: 0;
  transition: opacity 0.6s var(--ease-smooth);
}
.tour-card-v2:hover .tour-card-v2-cta-reveal { opacity: 1; }
/* Tour cards sit on the "introduction" pages (home + /tours) — the audience
   skews older / higher-income, so type is sized for easy reading at arm's
   length: the 3-second readability test. */
.tour-card-v2-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 7px 14px;
  border: 1px solid rgba(224,159,62,0.4);
  background: rgba(224,159,62,0.08);
  backdrop-filter: blur(4px);
}
.tour-card-v2-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.4vw, 34px);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.tour-card-v2-meta {
  font-size: 15px;
  letter-spacing: 1.5px;
  color: rgba(245,240,232,0.85);
  margin-bottom: 20px;
  display: flex;
  gap: 18px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.tour-card-v2-meta span::before {
  content: '·';
  margin-right: 18px;
  color: var(--gold);
}
.tour-card-v2-meta span:first-child::before { display: none; }
.tour-card-v2-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(224,159,62,0.2);
}
.tour-card-v2-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.tour-card-v2-price span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  margin-right: 8px;
  font-family: var(--font-sans);
}
.tour-card-v2-arrow {
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s;
}
.tour-card-v2:hover .tour-card-v2-arrow { transform: translateX(6px); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, rgba(224,159,62,0.05), rgba(224,159,62,0.02));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
  text-align: center;
}
.newsletter-wrap { max-width: 620px; margin: 0 auto; }
.newsletter-section h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.2;
}
.newsletter-section h3 em { font-style: italic; color: var(--gold); }
.newsletter-section p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
  transition: border-color 0.3s;
}
.newsletter-form:focus-within { border-color: var(--gold); }
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(245,240,232,0.4); }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-success {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gold);
  display: none;
}
.newsletter-success.show { display: block; }

/* ===== QUOTE SECTION ===== */
.quote-section {
  padding: 120px 48px;
  background: var(--bg-dark-2);
  text-align: center;
  position: relative;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 200px;
  line-height: 1;
  color: rgba(224,159,62,0.08);
  font-weight: 400;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 880px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}
.quote-author {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.quote-author::before {
  content: '—';
  margin-right: 12px;
  color: var(--text-muted);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 96px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(224,159,62,0.4);
  color: var(--gold);
  cursor: pointer;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  font-size: 16px;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ===== ENHANCED SECTION TITLES ===== */
.section-title-deco {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title-deco::before,
.section-title-deco::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ===== LOADING SCREEN ===== */
#page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  pointer-events: all;
}
#page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo-img { width: 90px; height: auto; animation: loader-pulse 1.4s ease-in-out infinite; }
.loader-bar-wrap {
  width: 160px; height: 1px; background: rgba(224,159,62,0.15);
  margin: 28px auto 0; overflow: hidden;
}
.loader-bar { height: 100%; width: 0; background: var(--gold); animation: loader-fill 1.1s ease forwards; }
.loader-text {
  font-family: var(--font-sans); font-size: 9px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--text-muted); margin-top: 18px;
}
@keyframes loader-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes loader-fill { from { width: 0; } to { width: 100%; } }

/* ===== PAGE TRANSITIONS ===== */
.page-transition-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--bg-dark);
  opacity: 0; visibility: hidden;
  transition: opacity 0.38s ease, visibility 0.38s ease;
  pointer-events: none;
}
.page-transition-overlay.active { opacity: 1; visibility: visible; pointer-events: all; }
body { animation: page-fade-in 0.5s ease both; }
@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===== COOKIE CONSENT ===== */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9500;
  background: rgba(12,12,12,0.98);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-text { font-size: 13px; color: rgba(245,240,232,0.68); line-height: 1.65; flex: 1; }
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 10px 28px; font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; font-family: var(--font-sans); font-weight: 500;
  background: var(--gold); color: #000; border: none; cursor: pointer;
  transition: background 0.25s;
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline {
  padding: 10px 22px; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-family: var(--font-sans);
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); cursor: pointer; transition: all 0.25s;
}
.btn-cookie-decline:hover { border-color: rgba(154,147,137,0.6); color: var(--text-light); }
@media (max-width: 700px) {
  .cookie-bar { flex-direction: column; padding: 20px 24px; gap: 16px; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}

/* ===== MULTI-STEP BOOKING WIZARD ===== */
.booking-wizard-progress {
  max-width: 860px; margin: 0 auto 52px;
  display: flex; align-items: flex-start; gap: 0;
}
.wiz-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  position: relative; cursor: default;
}
.wiz-step:not(:last-child)::after {
  content: ''; position: absolute;
  top: 18px; left: 50%; width: 100%; height: 1px;
  background: var(--border); z-index: 0;
}
.wiz-step.done:not(:last-child)::after { background: var(--gold); }
.wiz-dot {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-dark-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0; color: var(--text-muted);
  font-family: var(--font-sans); font-weight: 500;
  position: relative; z-index: 1;
  transition: all 0.35s;
}
.wiz-step.active .wiz-dot {
  border-color: var(--gold); background: var(--gold); color: #000;
}
.wiz-step.done .wiz-dot {
  border-color: var(--gold); background: transparent; color: var(--gold);
}
.wiz-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 10px; text-align: center;
  transition: color 0.3s; line-height: 1.4;
}
.wiz-step.active .wiz-label { color: var(--gold); }
.wiz-step.done .wiz-label { color: rgba(224,159,62,0.6); }

.step-panel { display: none; }
.step-panel.active { display: block; animation: step-in 0.35s ease both; }
@keyframes step-in {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}
.step-panel.back-in { animation: step-back-in 0.35s ease both; }
@keyframes step-back-in {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}

.wiz-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.wiz-nav-left { display: flex; align-items: center; gap: 16px; }
.btn-wiz-back {
  padding: 14px 32px; font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; font-family: var(--font-sans);
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); cursor: pointer; transition: all 0.3s;
}
.btn-wiz-back:hover { border-color: var(--text-muted); color: var(--text-light); }
.btn-wiz-next {
  padding: 14px 40px; font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; font-family: var(--font-sans); font-weight: 500;
  background: var(--gold); color: #000; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-wiz-next:hover { background: var(--gold-light); transform: translateY(-1px); }
.wiz-step-count {
  font-size: 11px; letter-spacing: 2px; color: var(--text-muted);
  font-family: var(--font-sans); text-transform: uppercase;
}

/* ===== ROUTE MAP SECTION ===== */
.route-map-section {
  padding: 80px 0;
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border);
}
.route-map-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.route-map-inner .section-eyebrow { margin-bottom: 10px; }
.route-map-inner h2 {
  font-family: var(--font-serif); font-size: clamp(32px,4vw,52px);
  font-weight: 300; color: var(--text-light); margin-bottom: 8px; line-height: 1.1;
}
.route-map-inner .map-subtitle {
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; color: var(--text-muted); margin-bottom: 36px;
}
#tour-map { width: 100%; height: 460px; border: 1px solid var(--border); }
.map-legend {
  display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 24px;
}
.map-legend-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); font-family: var(--font-sans);
}
.map-legend-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
/* Override Leaflet popup for dark theme */
.leaflet-popup-content-wrapper {
  background: rgba(14,14,14,0.97) !important;
  color: var(--text-light) !important;
  border: 1px solid var(--border) !important;
  border-radius: 2px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
}
.leaflet-popup-tip { background: rgba(14,14,14,0.97) !important; }
.leaflet-popup-content { font-family: var(--font-sans); font-size: 12px; letter-spacing: 1px; }
.leaflet-popup-content strong { color: var(--gold); display: block; margin-bottom: 2px; }
.leaflet-popup-content span { color: var(--text-muted); font-size: 11px; }
.leaflet-container { background: #0f1a17; }
@media (max-width: 768px) {
  .route-map-inner { padding: 0 20px; }
  #tour-map { height: 320px; }
}

/* ═══════════════════════════════════════════
   MOBILE STICKY TOUR CTA BAR
═══════════════════════════════════════════ */
.tour-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(12,12,12,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(110%);
  transition: transform 0.45s var(--ease-smooth);
}
.tour-sticky-cta.visible { transform: translateY(0); }
.tour-sticky-cta-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tour-sticky-cta-label {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-muted);
}
.tour-sticky-cta-title {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tour-sticky-cta a {
  flex-shrink: 0;
  padding: 13px 26px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.tour-sticky-cta a:active { background: var(--gold-dark); }
@media (min-width: 901px) {
  .tour-sticky-cta { display: none; }
}

/* ═══════════════════════════════════════════
   TEAM MEMBERS
═══════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-member {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  text-align: center;
  padding-bottom: 28px;
  transition: transform 0.5s var(--ease-smooth), border-color 0.4s;
}
.team-member:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.team-photo {
  position: relative;
  height: 240px;
  background: linear-gradient(160deg, var(--bg-dark-3), var(--bg-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.team-photo span { font-size: 64px; opacity: 0.2; }
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform 0.7s ease; }
.team-member:hover .team-photo img { transform: scale(1.05); }
.team-photo.has-photo::after { display: none; }
.team-photo::after {
  content: attr(data-name);
  position: absolute; bottom: 14px; left: 0; right: 0;
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,240,232,0.25);
  font-family: var(--font-sans);
}
.team-info { padding: 0 20px; }
.team-info h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 8px;
}
.team-role {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.team-info p {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
}
.team-note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.7;
}
@media (max-width: 920px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   WHERE YOU'LL STAY (Accommodation)
═══════════════════════════════════════════ */
.stay-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.stay-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-smooth), border-color 0.4s;
}
.stay-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.stay-card-lg { grid-row: span 1; }
.stay-img {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, var(--bg-dark-3) 0%, var(--bg-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.stay-card-lg .stay-img { height: 340px; }
.stay-img::after {
  content: attr(data-photo);
  position: absolute;
  bottom: 16px; left: 20px;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  font-family: var(--font-sans);
}
.stay-img::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 40%, rgba(224,159,62,0.06), transparent 60%);
}
.stay-ph-icon {
  font-size: 56px;
  opacity: 0.25;
  filter: grayscale(0.3);
}
.stay-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.stay-card:hover .stay-img img { transform: scale(1.06); }
.stay-img.has-photo::after { color: rgba(245,240,232,0.85); text-shadow: 0 1px 4px rgba(0,0,0,0.7); z-index: 2; }
.stay-card-body { padding: 28px 28px 32px; flex: 1; }
.stay-tag {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.stay-card-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 12px;
}
.stay-card-lg .stay-card-body h3 { font-size: 26px; }
.stay-card-body p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245,240,232,0.55);
  font-weight: 300;
}
.stay-note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.7;
}
@media (max-width: 920px) {
  .stay-grid { grid-template-columns: 1fr 1fr; }
  .stay-card-lg { grid-column: span 2; }
}
@media (max-width: 620px) {
  .stay-grid { grid-template-columns: 1fr; }
  .stay-card-lg { grid-column: span 1; }
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
.why-section {
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-card {
  background: var(--bg-dark);
  padding: 48px 40px;
  transition: background 0.4s ease, transform 0.4s ease;
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-smooth);
}
.why-card:hover { background: var(--bg-dark-3); }
.why-card:hover::before { width: 100%; }
.why-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold);
  margin-bottom: 28px;
  transition: all 0.4s ease;
}
.why-card:hover .why-icon {
  background: rgba(224,159,62,0.08);
  border-color: var(--gold);
  transform: rotate(-4deg) scale(1.05);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.3;
}
.why-card p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(245,240,232,0.55);
  font-weight: 300;
}
.why-grid .why-card:nth-child(1) { transition-delay: 0s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.06s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.12s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.18s; }
.why-grid .why-card:nth-child(5) { transition-delay: 0.24s; }
.why-grid .why-card:nth-child(6) { transition-delay: 0.30s; }
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 36px 28px; }
}
body.light-mode .why-card { background: var(--bg-dark); }
body.light-mode .why-card:hover { background: var(--bg-dark-2); }

/* ═══════════════════════════════════════════
   MICRO-ANIMATIONS & PREMIUM INTERACTIONS
═══════════════════════════════════════════ */

/* Custom cursor removed */

/* ── 2. Button Ripple ── */
.btn-primary, .btn-outline, .btn-nav, .btn-wiz-next, .btn-submit {
  position: relative; overflow: hidden;
}
.ripple-wave {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transform: scale(0);
  animation: ripple-expand 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-expand {
  to { transform: scale(4); opacity: 0; }
}

/* ── 3. Image Skeleton Shimmer ── */
.img-skeleton {
  background: linear-gradient(90deg,
    var(--bg-dark-2) 25%,
    var(--bg-dark-3) 50%,
    var(--bg-dark-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer {
  from { background-position: 200% center; }
  to { background-position: -200% center; }
}
.m-item img, .tour-card-v2-bg, .photo-marquee-item img {
  transition: opacity 0.5s ease, transform 0.6s ease, filter 0.4s;
}
img.lazy-loaded { animation: img-fade-in 0.5s ease both; }
@keyframes img-fade-in {
  from { opacity: 0; filter: blur(4px) scale(1.02); }
  to { opacity: 1; filter: blur(0) scale(1); }
}

/* ── 4. Stats Counter ── */
.stat-num {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.stat-num.counting { animation: count-pop 0.4s var(--ease) both; }
@keyframes count-pop {
  0% { transform: scale(1.0); }
  50% { transform: scale(1.12); color: var(--gold-light); }
  100% { transform: scale(1.0); }
}

/* ── 5. Mobile Menu Slide Animation ── */
@media (max-width: 720px) {
  .nav-links {
    display: flex !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ── 6. Tour Card 3D Tilt ── */
.tour-card-v2 {
  transform-style: preserve-3d;
  will-change: transform;
}
.tour-card-v2 .tour-card-v2-content {
  transform: translateZ(0);
  transition: transform 0.4s ease;
}
.tour-card-v2:hover .tour-card-v2-content { transform: translateZ(20px); }

/* "View Details" slide-up on hover */
.tour-card-v2-cta {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-sans); font-weight: 500;
  margin-top: 14px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.tour-card-v2:hover .tour-card-v2-cta { opacity: 1; transform: translateY(0); }
.tour-card-v2-cta::after {
  content: '→'; transition: transform 0.3s ease;
}
.tour-card-v2:hover .tour-card-v2-cta::after { transform: translateX(4px); }

/* ── 7. Staggered Grid Reveal ── */
.tour-card-grid .tour-card-v2:nth-child(1) { transition-delay: 0s; }
.tour-card-grid .tour-card-v2:nth-child(2) { transition-delay: 0.08s; }
.tour-card-grid .tour-card-v2:nth-child(3) { transition-delay: 0.16s; }
.tour-card-grid .tour-card-v2:nth-child(4) { transition-delay: 0.24s; }
.tour-card-grid .tour-card-v2:nth-child(5) { transition-delay: 0.32s; }
.tour-card-grid .tour-card-v2:nth-child(6) { transition-delay: 0.40s; }

.feature-grid .reveal:nth-child(1) { transition-delay: 0s; }
.feature-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.feature-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.feature-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.feature-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.feature-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ── 8. Gold Shimmer Headings ── */
.shimmer-text {
  background: linear-gradient(90deg,
    var(--gold) 0%,
    var(--gold-light) 40%,
    var(--gold) 60%,
    var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shimmer 3.5s linear infinite;
}
@keyframes text-shimmer {
  from { background-position: 200% center; }
  to { background-position: -200% center; }
}

/* ── 9. Input Focus Glow ── */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(224,159,62,0.6) !important;
  box-shadow: 0 0 0 3px rgba(224,159,62,0.08), 0 0 16px rgba(224,159,62,0.08);
  transition: border-color 0.25s, box-shadow 0.25s;
}

/* ── 10. Scroll-to-top Button Pulse ── */
.back-to-top.visible {
  animation: btn-pulse 2.4s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,159,62,0.35); }
  50% { box-shadow: 0 0 0 8px rgba(224,159,62,0); }
}

/* ── 11. Destination Card Shine ── */
.dest-card {
  position: relative; overflow: hidden;
}
.dest-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 4;
  background: linear-gradient(135deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.dest-card:hover::before { transform: translateX(100%); }

/* ── 12. WhatsApp Button Bounce ── */
.whatsapp-btn {
  animation: wa-bounce 3s ease-in-out infinite;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.whatsapp-btn:hover { animation: none; transform: scale(1.08); }

/* ═══════════════════════════════════════════
   END MICRO-ANIMATIONS
═══════════════════════════════════════════ */

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 1024px) {
  .tour-card-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-marquee-item { width: 260px; height: 360px; }
}
@media (max-width: 720px) {
  .tour-card-grid { grid-template-columns: 1fr; }
  .photo-marquee-item { width: 220px; height: 300px; }
  .photo-stories { padding: 72px 20px; }
  .newsletter-section { padding: 56px 20px; }
  .quote-section { padding: 80px 20px; }
  .newsletter-form { flex-direction: column; gap: 8px; border: none; background: transparent; }
  .newsletter-form input { border: 1px solid var(--border); background: rgba(0,0,0,0.3); }
  .newsletter-form button { padding: 14px; }
  .back-to-top { right: 20px; bottom: 96px; }
}

/* ===== FLOATING BUTTONS vs STICKY TOUR CTA (mobile) =====
   On tour pages a fixed "Book This Tour" bar appears at bottom:0 on screens
   <=900px. script.js adds body.has-sticky-cta while it is visible. Lift the
   floating buttons so they never cover the primary booking CTA, and hide the
   off-screen WhatsApp tooltip on small screens. */
@media (max-width: 900px) {
  .whatsapp-btn::before { display: none; }            /* tooltip runs off-screen on mobile */
  body.has-sticky-cta .whatsapp-btn { bottom: 92px; }
  body.has-sticky-cta .back-to-top { display: none; } /* avoid stacking 3 buttons over the CTA */
  body.has-sticky-cta #me-chat-btn { bottom: 92px; }  /* chatbot button (bottom-left) */
}

/* ============================================================
   ACCESSIBILITY & POLISH (audit "later" tier)
   ============================================================ */

/* Skip-to-content link — visible only on keyboard focus */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 10000;
  background: var(--gold); color: #0A0A0A;
  padding: 10px 18px; font-family: var(--font-sans);
  font-size: 12px; letter-spacing: 1px; font-weight: 600;
  border-radius: 2px; text-decoration: none;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 12px; }
#main-content { position: relative; }

/* Larger, easier touch targets + 16px inputs (prevents iOS zoom) for the older audience */
@media (max-width: 720px) {
  .mobile-toggle { padding: 12px; }
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="number"], input[type="date"], textarea, select {
    font-size: 16px; padding: 16px 18px;
  }
  .whatsapp-btn::before { display: none; }
}

/* Respect users who prefer reduced motion (vestibular sensitivity — common in older travellers) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide.active { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== TOUR COMPARISON TABLE (tours.html) ===== */
.compare-table {
  width: 100%; border-collapse: collapse;
  max-width: 1100px; margin: 0 auto;
  font-family: var(--font-sans);
}
.compare-table th {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); text-align: left; padding: 16px 18px;
  border-bottom: 1px solid var(--border-hover); font-weight: 600;
}
.compare-table td {
  padding: 18px; font-size: 14px; color: rgba(245,240,232,0.85);
  border-bottom: 1px solid var(--border); vertical-align: middle;
}
.compare-table tbody tr { transition: background 0.3s; }
.compare-table tbody tr:hover { background: rgba(224,159,62,0.05); }
.compare-table td:first-child { font-family: var(--font-serif); font-size: 17px; color: var(--text-light); }
.compare-table td:nth-child(3) { color: var(--gold); font-family: var(--font-serif); font-size: 16px; }
.compare-table td a { color: var(--gold); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; }
body.light-mode .compare-table td { color: #3A3028; }
body.light-mode .compare-table td:first-child { color: #1A1208; }
body.light-mode .compare-table th { color: var(--gold-dark); }

@media (max-width: 760px) {
  .compare-table, .compare-table tbody, .compare-table tr, .compare-table td { display: block; width: 100%; }
  .compare-table thead { display: none; }
  .compare-table tr { margin-bottom: 20px; border: 1px solid var(--border); padding: 8px 0; }
  .compare-table td { border: none; padding: 8px 18px; display: flex; justify-content: space-between; gap: 16px; }
  .compare-table td::before {
    content: attr(data-label); font-size: 10px; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gold); font-family: var(--font-sans);
  }
  .compare-table td:first-child { font-size: 18px; }
  .compare-table td:first-child::before { display: none; }
}
