/* ================================================================
   GRAND HOLIDAYS — EDITORIAL WHITE THEME v4.0
   Inspired by Condé Nast Traveller · Aman Resorts · &Beyond
   ================================================================ */

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

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Warm White Palette */
  --cream:        #FFFEFB;
  --cream-alt:    #F8F4EE;
  --cream-deep:   #F0EAE0;
  --linen:        #E8E0D4;

  /* Ink – Text */
  --ink:          #18130E;
  --ink-mid:      #3B3228;
  --ink-soft:     #6B5F54;
  --ink-faint:    #A89E94;

  /* Antique Gold */
  --gold:         #A67C31;
  --gold-bright:  #C4922A;
  --gold-pale:    #D4AF6A;
  --gold-bg:      rgba(166,124,49,0.07);
  --gold-border:  rgba(166,124,49,0.28);
  --gold-glow:    rgba(166,124,49,0.22);
  --gold-shadow:  0 8px 32px rgba(166,124,49,0.2);

  /* Borders */
  --b-soft:       rgba(24,19,14,0.07);
  --b-mid:        rgba(24,19,14,0.13);
  --b-strong:     rgba(24,19,14,0.22);

  /* Shadows */
  --sh-xs:  0 1px 4px rgba(24,19,14,0.06);
  --sh-sm:  0 3px 12px rgba(24,19,14,0.08), 0 1px 4px rgba(24,19,14,0.04);
  --sh-md:  0 8px 30px rgba(24,19,14,0.10), 0 2px 8px rgba(24,19,14,0.05);
  --sh-lg:  0 20px 60px rgba(24,19,14,0.13), 0 6px 18px rgba(24,19,14,0.06);
  --sh-xl:  0 36px 90px rgba(24,19,14,0.16), 0 10px 28px rgba(24,19,14,0.08);

  /* Typography */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-serif:   'Cormorant Garamond', Georgia, serif;
  --f-logo:    'Cinzel', serif;
  --f-body:    'Outfit', sans-serif;

  /* Spacing */
  --py:   5.5rem;
  --cw:   1280px;

  /* Radii */
  --r1: 3px;
  --r2: 8px;
  --r3: 16px;
  --rp: 9999px;

  /* Motion */
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t1: 0.18s ease;
  --t2: 0.38s var(--ease);
  --t3: 0.65s var(--ease);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink-mid);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; transition: var(--t1); }
button { font-family: var(--f-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: var(--f-body); }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-alt); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container { max-width: var(--cw); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }

/* ── TYPOGRAPHY SYSTEM ────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label {
  font-family: var(--f-body);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: none;
  color: var(--gold);
}
.text-center { text-align: center; }
.gold-text { color: var(--gold) !important; }
.gold-text-bright { color: var(--gold-bright) !important; }

/* ── UTILITY ──────────────────────────────────────────────── */
.top-glow { display: none; }
.float-anim { animation: float 6s ease-in-out infinite; }
.reveal { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 2.4rem;
  font-family: var(--f-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: none;
  border-radius: var(--r1); border: 1.5px solid transparent;
  cursor: pointer; transition: var(--t2); white-space: nowrap;
}
.btn-solid {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
  box-shadow: var(--gold-shadow);
}
.btn-solid:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(166,124,49,0.3); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--cream); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); border-color: #fff; transform: translateY(-2px); }

.btn-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-mid); transform: translateY(-2px); }

.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.68rem; }
.btn-nav { padding: 0.6rem 1.5rem; font-size: 0.7rem; }

/* ── GLASS CARD (legacy compat) ───────────────────────────── */
.glass-card {
  background: #fff;
  border: 1px solid var(--b-soft);
  border-radius: var(--r3);
  box-shadow: var(--sh-md);
  position: relative; overflow: hidden;
}
.card-glow-effect { display: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.main-header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; transition: var(--t2);
  padding: 1rem 0;
  background: rgba(255,254,251,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--b-soft);
  box-shadow: var(--sh-sm);
}
.main-header.scrolled {
}
.nav-container {
  max-width: 1340px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.logo-accent {
  font-family: var(--f-body); font-size: 0.5rem; font-weight: 700;
  letter-spacing: 6px; color: var(--gold); text-transform: none;
}
.logo-main {
  font-family: var(--f-logo); font-size: 1.38rem; font-weight: 700;
  letter-spacing: 3px; color: var(--ink); transition: color 0.3s ease;
}
.main-header.scrolled .logo-main { color: var(--ink); }
.logo-sub {
  font-family: var(--f-body); font-size: 0.78rem; letter-spacing: 1px; font-weight: 900;
  color: var(--ink); text-transform: none; transition: color 0.3s ease;
}
.main-header.scrolled .logo-sub { color: var(--ink); font-weight: 900; }

/* Nav Links */
.nav-menu { display: flex; align-items: center; gap: 3rem; }
.nav-link {
  font-family: var(--f-body); font-size: 0.75rem; font-weight: 900;
  letter-spacing: 1.5px; text-transform: none;
  color: var(--ink-soft); padding-bottom: 3px;
  position: relative; transition: color 0.2s ease;
}
.main-header.scrolled .nav-link { color: var(--ink-soft); }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold); border-radius: 1px;
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 24px; height: 17px; cursor: pointer; z-index: 1001;
}
.mobile-nav-toggle .bar {
  width: 100%; height: 1.5px; background: var(--ink); border-radius: 2px; transition: var(--t2);
}
.main-header.scrolled .mobile-nav-toggle .bar { background: var(--ink); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-section {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg-wrapper { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.55) saturate(1.1);
  animation: hero-ken 20s ease-in-out infinite alternate;
}
@keyframes hero-ken { 0%{transform:scale(1.04)} 100%{transform:scale(1.12)} }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(14,10,6,0.78) 0%, rgba(14,10,6,0.38) 50%, rgba(14,10,6,0.12) 100%);
}
.hero-glow { display: none; }
.hero-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Hero Content */
.hero-content {
  position: relative; z-index: 10;
  width: 100%; padding: 0 clamp(1.5rem, 7vw, 8rem);
  padding-top: 5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9); padding: 0.45rem 1.4rem;
  border-radius: var(--rp);
  font-family: var(--f-body); font-size: 0.78rem; font-weight: 900; letter-spacing: 3px; text-transform: none;
  margin-bottom: 2.2rem; animation: float 5s ease-in-out infinite;
}
.gold-star { color: var(--gold-pale); }

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 8.5vw, 8rem);
  line-height: 0.97; font-weight: 900;
  margin-bottom: 2.4rem; letter-spacing: -0.02em;
}
.title-light {
  display: block; font-weight: 400; font-style: italic;
  font-size: 0.46em; letter-spacing: 0.06em; color: var(--gold-pale);
  margin-bottom: 0.18em; font-family: var(--f-display);
  text-transform: none;
}
.title-bold {
  display: block; color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  -webkit-text-fill-color: unset;
  background: none; animation: none;
  letter-spacing: -0.02em;
}
.hero-description {
  font-family: var(--f-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 500px; margin-bottom: 3rem;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.play-icon { fill: transparent; }

/* Hero Mini-Stats */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10; padding: 0 clamp(1.5rem, 7vw, 8rem);
  padding-bottom: 3rem;
  display: flex; gap: 3rem; align-items: flex-end;
}
.h-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.h-stat-num {
  font-family: var(--f-display); font-size: 2rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.h-stat-label {
  font-family: var(--f-body); font-size: 0.78rem; font-weight: 900;
  letter-spacing: 2.5px; text-transform: none; color: rgba(255,255,255,0.5);
}

/* Scroll Indicator */
.scroll-down {
  position: absolute; bottom: 2.8rem; right: clamp(1.5rem, 7vw, 8rem);
  z-index: 10; display: flex; align-items: center; gap: 0.8rem;
  color: rgba(255,255,255,0.45); cursor: pointer; transition: color 0.2s ease;
}
.scroll-down:hover { color: var(--gold-pale); }
.scroll-text { font-size: 0.62rem; letter-spacing: 3px; text-transform: none; }
.scroll-arrow { animation: bounce-y 2.5s infinite; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MARQUEE STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.marquee-strip {
  background: var(--ink); padding: 1.3rem 0; overflow: hidden;
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
}
.marquee-track {
  display: flex; gap: 3.5rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--f-body); font-size: 0.68rem; font-weight: 900;
  letter-spacing: 4px; text-transform: none; color: rgba(255,255,255,0.55);
  white-space: nowrap; transition: color 0.2s ease;
}
.marquee-item:hover { color: var(--gold-pale); }
.marquee-sep { color: var(--gold); font-size: 0.5rem; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   JOURNEYS / TOURS SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.journeys-section { padding: var(--py) 0; background: var(--cream); }

.section-header { margin-bottom: 4.5rem; }
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--ink);
}
.section-subtitle { display: none; } /* replaced by .eyebrow */
.title-divider {
  width: 48px; height: 2px; margin: 1.6rem auto 0;
  background: linear-gradient(to right, var(--gold), transparent);
  border-radius: 2px;
}
.section-intro-text {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  font-size: 1.15rem; color: var(--ink-soft);
  max-width: 560px; margin: 1.2rem auto 0; line-height: 1.75;
}

/* Tour Cards Grid — Editorial Style */
.journeys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}
.journey-card {
  position: relative; overflow: hidden; border-radius: var(--r2);
  background: #fff;
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid var(--b-soft);
}
.journey-card:hover { transform: translateY(-12px); box-shadow: var(--sh-xl); }
.journey-card:hover .journey-img { transform: scale(1.07); }

.card-img-container { position: relative; height: 260px; overflow: hidden; }
.journey-img { width: 100%; height: 100%; transition: transform 1s var(--ease); }
.card-img-container::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,19,14,0.6) 0%, transparent 50%);
}
.card-badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--gold); color: #fff;
  padding: 0.28rem 0.9rem; border-radius: var(--rp);
  font-family: var(--f-body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 2px; text-transform: none; z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.card-content { padding: 2rem 2rem 1.8rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-meta {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; letter-spacing: 2px; text-transform: none;
  font-weight: 900; color: var(--gold); margin-bottom: 0.8rem;
}
.card-meta .divider { color: var(--b-strong); }
.card-meta .location { color: var(--ink-faint); font-weight: 400; }

.card-title {
  font-family: var(--f-display);
  font-size: 1.4rem; font-weight: 700; color: var(--ink);
  margin-bottom: 0.8rem; line-height: 1.2;
}
.card-text {
  font-size: 0.88rem; color: var(--ink-soft); font-weight: 300;
  line-height: 1.7; margin-bottom: 1.5rem;
}
.card-highlights {
  border-top: 1px solid var(--b-soft); padding-top: 1.2rem;
  margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: 0.55rem;
}
.card-highlights li {
  font-size: 0.8rem; color: var(--ink-mid); padding-left: 1.4rem; position: relative;
  font-weight: 400; line-height: 1.45;
}
.card-highlights li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 1.4rem; border-top: 1px solid var(--b-soft);
}
.price { font-family: var(--f-display); font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.price .pp { font-family: var(--f-body); font-size: 0.7rem; color: var(--ink-faint); font-weight: 400; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PHILOSOPHY / STORY SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.story-section {
  padding: var(--py) 0;
  background: var(--cream-alt);
  border-top: 1px solid var(--b-soft);
  border-bottom: 1px solid var(--b-soft);
  position: relative; overflow: hidden;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
}
.story-img-col { position: relative; min-height: 600px; }
.story-img-col img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(1.06);
  border-radius: var(--r2);
  box-shadow: var(--sh-lg);
}
.story-img-caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255,254,251,0.93); backdrop-filter: blur(10px);
  padding: 1.2rem 1.6rem; border-radius: var(--r1);
  border-left: 3px solid var(--gold);
}
.story-img-caption p {
  font-family: var(--f-serif); font-style: italic;
  font-size: 0.88rem; color: var(--ink-mid); line-height: 1.55;
}

.story-text-col {
  padding: 5rem 5.5rem;
  display: flex; flex-direction: column; gap: 1.8rem; justify-content: center;
}
.story-subheading {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
  color: var(--ink); line-height: 1.2;
}
.story-text {
  font-size: 0.97rem; color: var(--ink-soft); font-weight: 300; line-height: 1.85;
}
.story-text strong { color: var(--gold); font-weight: 900; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.5rem; }
.feature-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: #fff; border: 1px solid var(--b-mid);
  border-radius: var(--rp); font-size: 0.8rem; color: var(--ink-mid);
  font-weight: 500; box-shadow: var(--sh-xs); transition: var(--t1);
}
.feature-pill:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.pill-icon { font-size: 1rem; }

/* Visual card kept for compat */
.story-visuals { display: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY CHOOSE US
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.why-section { padding: var(--py) 0; background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 4rem;
}
.why-item {
  padding: 3.5rem 2.8rem;
  border-right: 1px solid var(--b-soft);
  transition: var(--t2); cursor: default;
}
.why-item:last-child { border-right: none; }
.why-item:hover { background: var(--gold-bg); }
.why-num {
  font-family: var(--f-display); font-size: 3.5rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.5px var(--gold);
  line-height: 1; margin-bottom: 1.5rem; display: block; opacity: 0.35;
}
.why-icon-wrap { font-size: 2.4rem; margin-bottom: 1.4rem; }
.why-title { font-family: var(--f-display); font-size: 1.2rem; color: var(--ink); margin-bottom: 0.8rem; }
.why-text { font-size: 0.88rem; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials-section { padding: var(--py) 0; background: var(--cream-alt); border-top: 1px solid var(--b-soft); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 4.5rem;
}
.testimonial-card {
  background: #fff; border: 1px solid var(--b-soft);
  border-radius: var(--r2); padding: 3rem 2.8rem;
  box-shadow: var(--sh-sm); transition: var(--t2);
  display: flex; flex-direction: column; gap: 1.4rem;
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: -1rem; left: 2rem;
  font-family: var(--f-display); font-size: 8rem; font-weight: 700;
  color: var(--gold-bg); line-height: 1; pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--f-serif); font-style: italic;
  font-size: 1rem; color: var(--ink-mid); line-height: 1.75;
  font-weight: 300; flex-grow: 1;
}
.testimonial-author {
  border-top: 1px solid var(--b-soft); padding-top: 1.2rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.author-name { font-family: var(--f-body); font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.author-loc { font-family: var(--f-body); font-size: 0.75rem; color: var(--ink-faint); text-transform: none; letter-spacing: 1.5px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BESPOKE CTA SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.concierge-section {
  padding: var(--py) 0;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.concierge-section::before {
  content: '';
  position: absolute; top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(166,124,49,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.concierge-box {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.concierge-box::before { display: none; }
.concierge-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.concierge-info { display: flex; flex-direction: column; gap: 1.8rem; }
.concierge-info .eyebrow { color: var(--gold-pale); }
.concierge-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; font-weight: 700; line-height: 1.15;
}
.concierge-description { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.8; }

.contact-details { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 0.5rem; }
.contact-item { display: flex; align-items: center; gap: 1.4rem; }
.contact-link-wrapper { display: flex; align-items: center; gap: 1.4rem; }
.contact-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold-pale); flex-shrink: 0; transition: var(--t1);
}
.contact-link-wrapper:hover .contact-icon { background: var(--gold); border-color: var(--gold); color: #fff; }
.contact-link-wrapper:hover .whatsapp-icon-bg { background: #25d366; border-color: #25d366; }
.contact-link-wrapper:hover h4 { color: var(--gold-pale); }
.contact-item h4 { font-family: var(--f-body); font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.contact-item p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* Form on dark bg */
.concierge-form-wrapper {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r3); padding: 3.5rem 3rem;
}
.concierge-form { display: flex; flex-direction: column; gap: 1.6rem; }
.form-row { display: flex; gap: 1.4rem; }
.form-group { position: relative; flex-grow: 1; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r1); padding: 1rem 1.2rem;
  font-family: var(--f-body); font-size: 0.9rem; color: #fff;
  outline: none; transition: var(--t2); -webkit-appearance: none;
}
.form-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.09); box-shadow: 0 0 0 3px var(--gold-glow); }
.form-input::placeholder { color: rgba(255,255,255,0); }
.form-label {
  position: absolute; top: 50%; left: 1.2rem;
  transform: translateY(-50%);
  font-size: 0.86rem; color: rgba(255,255,255,0.4);
  pointer-events: none; transition: var(--t2);
}
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 0; font-size: 0.78rem; font-weight: 700;
  color: var(--gold-pale); background: var(--ink);
  padding: 0 0.5rem; margin-left: -0.2rem;
}
.select-input {
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d4af6a' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: calc(100% - 1.2rem) center;
}
.select-input option { background: #1a1410; color: #fff; }
.text-area-input { resize: none; }
.form-input.text-area-input ~ .form-label { top: 1.4rem; transform: none; }
.form-input.text-area-input:focus ~ .form-label,
.form-input.text-area-input:not(:placeholder-shown) ~ .form-label { top: 0; }
.btn-submit { width: 100%; padding: 1.1rem; letter-spacing: 2.5px; }
.select-label { color: rgba(255,255,255,0.4); }

.success-message {
  display: none; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 4rem 1rem;
  animation: fadein 0.5s ease forwards;
}
.success-message h3 { font-family: var(--f-display); font-size: 2rem; color: var(--gold-pale); margin-bottom: 1rem; }
.success-message p { color: rgba(255,255,255,0.55); font-weight: 300; max-width: 360px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.luxury-footer {
  background: #100D09; border-top: 1px solid rgba(255,255,255,0.06);
  padding: 6rem 0 2.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.4fr;
  gap: 3.5rem; margin-bottom: 4.5rem;
}
.footer-brand .logo { margin-bottom: 1.5rem; }
.footer-brand .logo-accent { color: var(--gold); }
.footer-brand .logo-main { color: #fff; }
.footer-brand .logo-sub { color: #ffffff; font-weight: 800; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.38); font-weight: 300; line-height: 1.75; }

.footer-links-col { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-links-col h4 {
  font-family: var(--f-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 3px; text-transform: none; color: var(--gold-pale);
  margin-bottom: 0.5rem;
}
.footer-links-col a, .footer-links-col span {
  font-size: 0.82rem; color: rgba(255,255,255,0.38); transition: color 0.2s ease;
}
.footer-links-col a:hover { color: var(--gold-pale); }
.footer-links-col p { font-size: 0.82rem; color: rgba(255,255,255,0.38); font-weight: 300; line-height: 1.65; }

.footer-newsletter {
  display: flex; margin-top: 0.8rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r1);
  background: rgba(255,255,255,0.04); transition: border-color 0.3s ease;
}
.footer-newsletter:focus-within { border-color: var(--gold); }
.newsletter-input {
  flex-grow: 1; background: transparent; border: none; outline: none;
  padding: 0.8rem 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.8);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.28); }
.btn-newsletter-submit {
  background: var(--gold); border: none; padding: 0 1.3rem;
  cursor: pointer; color: #fff; font-size: 0.95rem; font-weight: 700;
  transition: background 0.2s ease;
}
.btn-newsletter-submit:hover { background: var(--gold-bright); }
.newsletter-success { display: none; font-size: 0.72rem; color: #4ade80; margin-top: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
}
.footer-legal { display: flex; align-items: center; gap: 1.2rem; }
.footer-legal a { color: rgba(255,255,255,0.28); }
.footer-legal a:hover { color: var(--gold-pale); }
.bullet { opacity: 0.3; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MODALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(16,13,9,0.75);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-card {
  max-width: 560px; width: 94%;
  background: var(--cream); border-radius: var(--r3);
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--sh-xl);
  border-top: 4px solid var(--gold);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.45s var(--spring);
}
.modal-overlay.active .modal-card { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 1.4rem; right: 1.6rem;
  background: transparent; border: none; font-size: 1.7rem;
  color: var(--ink-faint); cursor: pointer; line-height: 1; transition: color 0.2s ease;
}
.modal-close:hover { color: var(--gold); }
.modal-header { text-align: center; margin-bottom: 2.5rem; }
.modal-title { font-family: var(--f-display); font-size: 1.7rem; color: var(--ink); margin-bottom: 0.5rem; }
.modal-subtitle { font-size: 0.85rem; color: var(--ink-faint); }
.modal-form { display: flex; flex-direction: column; gap: 1.5rem; }
/* Override form styles for light modal */
.modal-card .form-input {
  background: var(--cream-alt); border-color: var(--b-mid); color: var(--ink);
}
.modal-card .form-input:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px var(--gold-glow); }
.modal-card .form-label { color: var(--ink-soft); }
.modal-card .form-input:focus ~ .form-label,
.modal-card .form-input:not(:placeholder-shown) ~ .form-label { color: var(--gold); background: var(--cream); }
.modal-card .form-input::placeholder { color: transparent; }
.modal-card .select-input { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23a67c31' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }
.modal-card .select-input option { background: #fff; color: var(--ink); }

/* Concept Modal */
.concept-modal-content {
  max-width: 700px; width: 94%;
  background: var(--cream); border-radius: var(--r3);
  padding: clamp(2.5rem, 4vw, 4rem);
  box-shadow: var(--sh-xl); border-top: 4px solid var(--gold);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.45s var(--spring);
}
.modal-overlay.active .concept-modal-content { transform: scale(1) translateY(0); }
.concept-header { text-align: center; margin-bottom: 2rem; }
.concept-header h3 { font-family: var(--f-display); font-size: 1.6rem; color: var(--ink); margin-bottom: 0.4rem; }
.concept-header p { font-size: 0.85rem; color: var(--ink-faint); }
.interactive-concept-display {
  height: 280px; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--cream-alt); border-radius: var(--r2);
  border: 1px solid var(--b-soft); overflow: hidden;
}
.floating-ring {
  position: absolute; border: 1px dashed var(--gold-border);
  border-radius: 50%; pointer-events: none;
  animation: rotate 22s linear infinite;
}
.floating-ring.ring-1 { width: 200px; height: 200px; }
.floating-ring.ring-2 { width: 330px; height: 330px; animation-duration: 38s; animation-direction: reverse; }
.concept-arch { display: flex; gap: 1rem; z-index: 2; flex-wrap: wrap; justify-content: center; }
.concept-arch span {
  font-family: var(--f-logo); font-size: 0.78rem; letter-spacing: 2px;
  color: var(--ink); background: #fff; border: 1px solid var(--b-mid);
  padding: 0.65rem 1.2rem; border-radius: var(--r1); box-shadow: var(--sh-xs);
  animation: float 5s ease-in-out infinite;
}
.concept-arch span:nth-child(2) { animation-delay: -1.6s; }
.concept-arch span:nth-child(3) { animation-delay: -3.4s; }
.concept-visual-text { margin-top: 2.2rem; text-align: center; padding: 0 2rem; z-index: 2; }
.concept-visual-text p { font-family: var(--f-serif); font-style: italic; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHATSAPP FLOATING BUTTON
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.whatsapp-float-widget {
  position: fixed; bottom: 2rem; right: 2rem;
  background: #25d366; border-radius: var(--rp);
  padding: 0.42rem; display: flex; align-items: center; color: #fff;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4); z-index: 999;
  overflow: hidden; max-width: 52px; height: 52px;
  transition: max-width 0.5s var(--ease), box-shadow 0.3s ease, transform 0.3s ease;
}
.whatsapp-float-widget:hover { max-width: 230px; transform: scale(1.03); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.whatsapp-widget-text {
  font-size: 0.8rem; font-weight: 700; white-space: nowrap;
  opacity: 0; width: 0; overflow: hidden; color: #fff;
  transition: width 0.5s var(--ease), opacity 0.3s ease;
}
.whatsapp-float-widget:hover .whatsapp-widget-text {
  opacity: 1; width: 148px; padding: 0 0.4rem 0 0.9rem;
  transition-delay: 0.1s;
}
.whatsapp-widget-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEYFRAME ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes float   { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-9px)} }
@keyframes floating-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes bounce-y { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-8px)} 60%{transform:translateY(-4px)} }
@keyframes rotate  { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
@keyframes fadein  { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
@keyframes text-shine { 0%{background-position:0% center} 100%{background-position:200% center} }
@keyframes pulse-glow { 0%{opacity:0.6} 100%{opacity:1} }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-strip { background: var(--gold); padding: 2.2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0.8rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.3);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--f-display); font-size: 2.4rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-label { font-family: var(--f-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: none; color: rgba(255,255,255,0.7); margin-top: 0.35rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — TABLET ≤ 1100px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1100px) {
  .journeys-grid     { grid-template-columns: repeat(2,1fr); }
  .why-grid          { grid-template-columns: repeat(2,1fr); }
  .why-item          { border-bottom: 1px solid var(--b-soft); }
  .why-item:nth-child(2) { border-right: none; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .story-grid        { grid-template-columns: 1fr; }
  .story-img-col     { min-height: 420px; }
  .story-text-col    { padding: 4rem 3rem; }
  .concierge-grid    { grid-template-columns: 1fr; gap: 4rem; }
  .footer-top        { grid-template-columns: repeat(2,1fr); gap: 3rem; }
  .nav-menu          { gap: 2.2rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — MOBILE ≤ 768px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  :root { --py: 5rem; }
  .mobile-nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 82%; max-width: 310px; height: 100vh;
    background: var(--cream); border-left: 1px solid var(--b-soft);
    flex-direction: column; justify-content: center;
    gap: 2.5rem; padding: 2.5rem 2.2rem;
    transition: right 0.45s var(--ease); box-shadow: -10px 0 50px rgba(24,19,14,0.15);
  }
  .nav-menu.active  { right: 0; }
  .nav-link { font-size: 1rem; color: var(--ink-soft); }
  .nav-link:hover, .nav-link.active { color: var(--gold); }
  .btn-nav { display: none; }

  .hero-stats-bar    { display: none; }
  .hero-content      { padding: 0 1.5rem; text-align: center; align-items: center; }
  .hero-ctas         { flex-direction: column; width: 100%; max-width: 280px; }
  .hero-description  { text-align: center; }
  .scroll-down       { right: 50%; transform: translateX(50%); }

  .journeys-grid     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .why-item          { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-strip,
  .stats-grid        { display: none !important; }

  .story-text-col    { padding: 3.5rem 2rem; }
  .concierge-box     { padding: 0; }
  .concierge-form-wrapper { padding: 2.5rem 1.8rem; }
  .form-row          { flex-direction: column; }

  .footer-top        { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom     { flex-direction: column; gap: 1.2rem; text-align: center; }
  .modal-card        { padding: 2.5rem 1.5rem; }
  .concept-modal-content { padding: 2rem 1.5rem; }
  .concept-arch      { flex-direction: column; gap: 0.7rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — SMALL ≤ 480px
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.6rem,13vw,3.8rem); }
  .card-img-container { height: 210px; }
  .whatsapp-float-widget { bottom: 1.4rem; right: 1.4rem; }
  .marquee-strip { display: none; }
}

/* ── HEADER CONTACT STRIP ─────────────────────────────────── */
.header-contact-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-right: 1.5rem;
}
.header-contact-link {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: none;
  color: var(--ink-soft);
  transition: var(--t1);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.main-header.scrolled .header-contact-link {
  color: var(--ink-soft);
}
.header-contact-link:hover {
  color: var(--gold);
}
.main-header.scrolled .header-contact-link:hover {
  color: var(--gold);
}
.header-contact-sep {
  color: var(--b-strong);
  font-size: 0.8rem;
}
.main-header.scrolled .header-contact-sep {
  color: var(--b-strong);
}

@media (max-width: 1024px) {
  .header-contact-info {
    display: none; /* Hide on tablets and mobile to avoid clutter */
  }
}

/* ── NAV DROPDOWN STYLING ─────────────────────────────────── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-toggle .arrow {
  font-size: 0.78rem;
  transition: transform 0.2s ease;
  display: inline-block;
  vertical-align: middle;
}

/* Dropdown Menu Container */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--cream);
  border: 1px solid var(--b-soft);
  border-top: 3px solid var(--gold);
  border-radius: var(--r2);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  padding: 0.7rem 0;
  box-shadow: var(--sh-md);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 1000;
  margin-top: 0.6rem;
}

/* Hover Behavior for Desktop */
@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg);
  }
}

/* Dropdown Items */
.dropdown-item {
  display: block;
  padding: 0.6rem 1.4rem;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: all 0.18s ease;
  text-align: left;
}

.dropdown-item:hover {
  background: var(--gold-bg);
  color: var(--gold);
  padding-left: 1.7rem;
}

/* Active status in dropdown */
.dropdown-item.active {
  color: var(--gold);
  background: var(--gold-bg);
}

/* Dropdown Mobile Overrides */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }
  .dropdown-toggle {
    justify-content: center;
    font-size: 1rem !important;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--gold-border);
    border-radius: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    display: none; /* Toggle via class */
    padding: 0.5rem 0 0 1.5rem;
    min-width: unset;
    text-align: left;
    margin-top: 0.5rem;
  }
  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
  .nav-dropdown.active .dropdown-toggle .arrow {
    transform: rotate(180deg);
  }
  .dropdown-item {
    font-size: 0.85rem;
    padding: 0.5rem 0;
    color: var(--ink-soft);
  }
  .dropdown-item:hover {
    padding-left: 0.3rem;
  }
}

/* ================================================================
   FAQ ACCORDION — Luxury Gold & Cream Theme
   ================================================================ */

.faq-section {
  padding: var(--py) 0;
  background: linear-gradient(180deg, var(--cream-alt) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header .eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.faq-header h2 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.faq-header p {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--b-mid);
  overflow: hidden;
}

.faq-item:first-child,
.faq-item:nth-child(2) {
  border-top: 1px solid var(--b-mid);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.4rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--f-body);
  font-size: 0.97rem;
  font-weight: 900;
  color: var(--ink-mid);
  line-height: 1.45;
  transition: color 0.22s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question.open {
  color: var(--gold-bright);
}

.faq-q-text {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s var(--ease), transform 0.3s var(--ease);
}

.faq-question.open .faq-icon {
  background: var(--gold-bg);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s var(--ease);
  opacity: 0;
}

.faq-answer.open {
  max-height: 600px;
  opacity: 1;
}

.faq-answer-inner {
  padding-bottom: 1.4rem;
  padding-right: 3rem;
}

.faq-answer-inner p {
  font-family: var(--f-body);
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--ink-soft);
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq-item:nth-child(2) {
    border-top: none;
  }
  .faq-answer-inner {
    padding-right: 0.5rem;
  }
}

/* Related Tours Carousel */
.related-tours-section {
    padding: 4rem 0;
    background: #fdfaf6;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.related-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #eee;
}
.related-carousel::-webkit-scrollbar {
    height: 8px;
}
.related-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.related-carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
.related-card {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 260px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.related-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.related-info {
    padding: 1.5rem;
}
.related-info h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    color: var(--secondary-dark);
}
.related-info p {
    font-size: 0.9rem;
    opacity: 0.75;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .related-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}
@media (max-width: 768px) {
    .related-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}
@media (max-width: 480px) {
    .related-card {
        flex: 0 0 85%;
    }
}

/* SEO Internal Links */
.seo-internal-link {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: inherit;
    font-weight: 500;
}
.seo-internal-link:hover {
    color: var(--primary);
}


/* Modern Card Style based on reference */
.modern-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}
.modern-card:hover {
    transform: translateY(-5px);
}
.modern-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.modern-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modern-card-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: #b89047;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.modern-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.modern-card-meta {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.modern-card-meta .meta-days {
    color: #b89047;
    font-weight: 700;
}
.modern-card-meta .meta-sep {
    color: #ccc;
    margin: 0 0.5rem;
}
.modern-card-meta .meta-locs {
    color: #999;
    font-weight: 500;
}
.modern-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #111;
    margin: 0 0 1rem 0;
    font-weight: 700;
}
.modern-card-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}
.modern-card-divider {
    border: 0;
    border-top: 1px solid #eaeaea;
    margin: 0 0 1.5rem 0;
}
.modern-card-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modern-card-highlights li {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}
.modern-card-highlights li::before {
    content: '—';
    color: #b89047;
    font-weight: bold;
}

/* Dropdown Header Grouping */
.dropdown-header { padding: 0.8rem 1.4rem 0.3rem; font-family: var(--f-body, 'Outfit'); font-size: 0.75rem; font-weight: 700; color: var(--gold, #A67C31); text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.85; }
@media (max-width: 768px) { .dropdown-header { padding: 1rem 0 0.3rem 1.5rem; font-size: 0.8rem; } }

/* ── MOBILE MENU OVERLAY & CLOSE BUTTON ──────────────────── */
/* Injected by global-ux.js — needs CSS to actually work     */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(24, 19, 14, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s var(--ease, cubic-bezier(0.22, 1, 0.36, 1));
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}
body.menu-open {
  overflow: hidden;
}
.nav-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--ink-soft, #6B5F54);
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.nav-close-btn:hover {
  color: var(--gold, #A67C31);
  transform: rotate(90deg);
}
@media (min-width: 769px) {
  .nav-close-btn { display: none; }
  .nav-overlay   { display: none !important; }
}
/* Mobile hamburger open state — bar animation */
.mobile-nav-toggle.open .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.open .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* =========================================================================
   GLOBAL PRICE SUMMARY BOX (Tour Pages)
   ========================================================================= */
.price-summary-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1F1912;
    border-radius: var(--r1, 8px);
    padding: 1.5rem 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.summary-label {
    font-family: var(--f-body, 'Outfit', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.8;
    color: #cca45c;
    text-align: right;
    max-width: 110px;
    flex-shrink: 0;
}

.summary-value {
    font-family: var(--f-display, 'Playfair Display', serif);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #e5b869;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    max-width: 170px;
}

/* Adjust sizes for smaller screens */
@media (max-width: 480px) {
    .price-summary-box {
        gap: 1rem;
        padding: 1.25rem 0.75rem;
    }
    .summary-label {
        font-size: 0.65rem;
        max-width: 90px;
    }
    .summary-value {
        font-size: 1.7rem;
        max-width: 130px;
    }
}
