/* ═══════════════════════════════════════════════════════════
   HAMPITRIPS.COM — ROCK SHIVA EXPLORE HAMPI
   Design System v4 · "Vijayanagara"
   Obsidian · Saffron · Carved Stone · River Mist

   Fonts   : Cormorant Garamond (display) + DM Sans (body)
   Palette : #0E0C09 obsidian · #B8431C terracotta · #D4872A saffron
             · #F0A832 marigold · #F8F4EC parchment · #FFFFFF milk
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Obsidian palette — dark surfaces */
  --obsidian:     #0E0C09;
  --granite:      #1A1611;
  --basalt:       #252018;
  --charcoal:     #312A20;

  /* Warm action colours */
  --terra:        #B8431C;
  --rust:         #B8431C;   /* alias for --terra */   /* temple terracotta — primary CTA */
  --terra-dk:     #922F10;
  --terra-lt:     #D4542A;
  --saffron:      #D4872A;   /* Karnataka saffron — accent */
  --marigold:     #F0A832;   /* bright accent, stars */
  --marigold-lt:  #F7C96A;

  /* Light surfaces */
  --parchment:    #F8F4EC;   /* warm page background */
  --stone-lt:     #F0EBE0;   /* subtle section bg */
  --milk:         #FFFFFF;   /* card surfaces */
  --sand:         #E4D9C4;   /* borders, dividers */

  /* Text */
  --ink:          #1A1208;   /* near-black, warmth */
  --ink-body:     #3A2C1A;
  --ink-muted:    #7A6248;
  --ink-light:    rgba(255,255,255,.78);
  --ink-dim:      rgba(255,255,255,.48);

  /* Shadows — calibrated depth system */
  --sh-0: 0 1px 3px rgba(14,12,9,.06);
  --sh-1: 0 2px 10px rgba(14,12,9,.08), 0 1px 3px rgba(14,12,9,.06);
  --sh-2: 0 8px 28px rgba(14,12,9,.10), 0 2px 8px rgba(14,12,9,.07);
  --sh-3: 0 20px 56px rgba(14,12,9,.14), 0 6px 16px rgba(14,12,9,.08);
  --sh-hero: 0 4px 24px rgba(212,135,42,.38);

  /* Borders */
  --b-lt:   1px solid rgba(180,140,80,.14);
  --b-md:   1px solid rgba(180,140,80,.24);
  --b-gold: 1px solid rgba(212,135,42,.32);

  /* Radii */
  --r:    18px;
  --r-sm: 12px;
  --r-xs: 8px;
  --pill: 999px;

  /* Easing */
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out:    cubic-bezier(.22,.68,0,1.2);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { color: inherit; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--parchment);
  color: var(--ink-body);
  line-height: 1.68;
  padding-bottom: 96px;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION — Glassmorphism pill on scroll
   ═══════════════════════════════════════════════════════════ */
.nav-container {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248,244,236,.94);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(212,135,42,.18);
  box-shadow: 0 1px 0 rgba(212,135,42,.10), 0 4px 20px rgba(14,12,9,.07);
  transition: background .3s;
}
.nav-header {
  display: flex; align-items: center;
  justify-content: space-between; padding: 12px 18px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: 18px;
  color: var(--obsidian); text-decoration: none;
  letter-spacing: -.4px; line-height: 1;
}
.nav-logo em { font-style: italic; color: var(--terra); }

/* Hamburger */
.hamburger {
  background: none; border: 1.5px solid rgba(184,67,28,.28);
  border-radius: 8px; cursor: pointer;
  padding: 8px 10px; display: flex; flex-direction: column;
  gap: 4.5px; transition: border-color .25s;
}
.hamburger:hover { border-color: var(--terra); }
.hamburger span {
  display: block; width: 20px; height: 1.8px;
  background: var(--obsidian); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.3px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.3px) rotate(-45deg); }

.nav-menu {
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1), padding .3s;
  display: flex; flex-direction: column; gap: 5px; padding: 0 14px;
}
.nav-menu.open { max-height: 420px; padding: 8px 14px 16px; }
.nav-item {
  padding: 10px 18px;
  color: var(--ink-body); text-decoration: none;
  border-radius: var(--r-xs); font-weight: 500; font-size: 14px;
  text-align: center; transition: background .2s, color .2s;
  letter-spacing: .1px;
}
.nav-item:hover  { background: var(--stone-lt); color: var(--terra); }
.nav-item.active { background: var(--terra); color: #fff; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   HERO — Deep obsidian with amber dawn
   ═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--obsidian);
  padding: 96px 22px 60px;
  text-align: center; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
}

/* Layered ambient glows — dawn breaking over Hampi boulders */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 110% 70% at 85% -10%, rgba(212,135,42,.28) 0%, transparent 52%),
    radial-gradient(ellipse 80% 60% at 10% 110%, rgba(184,67,28,.20) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 120%, rgba(212,135,42,.10) 0%, transparent 60%);
}

/* Subtle stone-carved diagonal grain */
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px, transparent 80px,
    rgba(255,255,255,.018) 80px, rgba(255,255,255,.018) 81px
  );
  opacity: .7;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--marigold); padding: 5px 16px;
  border: 1px solid rgba(240,168,50,.28); border-radius: var(--pill);
  background: rgba(240,168,50,.07); margin-bottom: 20px;
  position: relative; z-index: 1;
  animation: fadeUp .5s .1s ease both;
}
.hero-logo {
  width: 84px; height: 84px; object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 28px rgba(0,0,0,.5));
  border-radius: 50%;
  border: 2px solid rgba(212,135,42,.35);
  position: relative; z-index: 1;
  animation: fadeUp .5s .18s ease both;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 9vw, 58px);
  font-weight: 600; color: #fff;
  line-height: 1.1; letter-spacing: -.5px;
  margin-bottom: 14px; position: relative; z-index: 1;
  animation: fadeUp .5s .26s ease both;
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--marigold-lt);
}
.hero-sub {
  color: var(--ink-light); font-size: 14.5px;
  margin-bottom: 5px; position: relative; z-index: 1;
  animation: fadeUp .5s .34s ease both;
  font-weight: 300; letter-spacing: .2px;
}
.hero-tagline {
  color: var(--saffron); font-size: 13px; font-weight: 500;
  margin-bottom: 30px; position: relative; z-index: 1;
  animation: fadeUp .5s .4s ease both;
  letter-spacing: .3px;
}

/* CTA row */
.hero-ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; position: relative; z-index: 1;
  animation: fadeUp .5s .46s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--terra); color: #fff;
  padding: 14px 32px; border-radius: var(--pill); text-decoration: none;
  font-weight: 600; font-size: 14.5px;
  box-shadow: 0 6px 28px rgba(184,67,28,.50);
  transition: transform .22s var(--ease-spring), box-shadow .22s;
  font-family: 'DM Sans', sans-serif; letter-spacing: .1px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(184,67,28,.60);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.22); color: rgba(255,255,255,.90);
  padding: 13px 28px; border-radius: var(--pill); text-decoration: none;
  font-weight: 500; font-size: 14px;
  transition: background .22s, border-color .22s;
  font-family: 'DM Sans', sans-serif;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.40);
}

/* Advance booking badge */
.hero-adv-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(212,135,42,.12); border: 1px solid rgba(212,135,42,.30);
  color: var(--marigold-lt); font-size: 11.5px; font-weight: 500;
  padding: 7px 18px; border-radius: var(--pill);
  margin-top: 20px; position: relative; z-index: 1;
  animation: fadeUp .5s .52s ease both;
  letter-spacing: .2px;
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR — Elegant data strip
   ═══════════════════════════════════════════════════════════ */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--milk);
  border-bottom: 1px solid var(--sand);
  box-shadow: var(--sh-1);
  animation: fadeUp .45s .1s ease both;
}
.stat-item {
  padding: 20px 8px; text-align: center;
  border-right: 1px solid var(--sand);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--terra); font-weight: 600;
  line-height: 1; letter-spacing: -.5px;
}
.stat-label {
  font-size: 9px; color: var(--ink-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-top: 5px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION TITLES — Editorial, left-leaning feel
   ═══════════════════════════════════════════════════════════ */
.section-title {
  text-align: center; padding: 44px 20px 20px;
  max-width: 1100px; margin: 0 auto;
}
.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 5.5vw, 40px);
  color: var(--obsidian); font-weight: 600;
  line-height: 1.18; letter-spacing: -.4px;
}
.section-title h2 em {
  font-style: italic; font-weight: 400; color: var(--terra);
}
.section-title p {
  font-size: 14px; color: var(--ink-muted); margin-top: 8px;
  font-weight: 400; max-width: 440px; margin-left: auto; margin-right: auto;
  line-height: 1.72;
}
.title-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 16px auto 0; max-width: 160px;
}
.title-ornament::before,
.title-ornament::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}
.title-ornament span { font-size: 12px; color: var(--saffron); }

/* ═══════════════════════════════════════════════════════════
   TOUR / SERVICE CARDS
   ═══════════════════════════════════════════════════════════ */
.tours-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 18px; padding: 0 16px 10px;
  max-width: 960px; margin: 0 auto;
}
.tour-card {
  background: var(--milk);
  border-radius: var(--r); overflow: hidden;
  border: var(--b-lt);
  box-shadow: var(--sh-1);
  transition: transform .3s var(--ease-spring), box-shadow .28s;
  display: flex; flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-3);
}

.tour-card-img {
  position: relative; overflow: hidden; height: 188px;
}
.tour-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }

.tour-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14,12,9,0) 40%,
    rgba(14,12,9,.72) 100%
  );
}
.tour-card-img-tag {
  position: absolute; top: 12px; left: 14px;
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; background: var(--terra); color: #fff;
  padding: 4px 12px; border-radius: var(--pill);
  box-shadow: 0 2px 8px rgba(184,67,28,.45);
}
.tour-card-img-time {
  position: absolute; bottom: 12px; right: 14px;
  font-size: 10.5px; font-weight: 500; color: rgba(255,255,255,.92);
  background: rgba(14,12,9,.52); backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: var(--pill);
  border: 1px solid rgba(255,255,255,.15);
}

/* Gradient fallback */
.tour-card-grad {
  height: 148px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  position: relative; overflow: hidden;
  background: var(--basalt);
}
.tour-card-grad-icon { font-size: 40px; }
.tour-card-grad-name { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500; text-align: center; }

.tour-card-body { padding: 20px 20px 8px; flex: 1; }
.tour-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; color: var(--obsidian); font-weight: 600;
  margin-bottom: 5px; line-height: 1.2;
}
.tour-card-sub {
  font-size: 12px; color: var(--ink-muted); margin-bottom: 12px;
  font-weight: 500; letter-spacing: .1px;
}
.tour-card-body p {
  font-size: 13.5px; color: var(--ink-body); line-height: 1.74;
  margin-bottom: 12px;
}

/* Stops list */
.stops-list { list-style: none; margin: 0 0 14px; }
.stops-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 12px; background: var(--parchment);
  border-radius: var(--r-xs); margin-bottom: 5px;
  font-size: 13px; color: var(--ink-body);
  border: 1px solid rgba(180,140,80,.14);
  border-left: 3px solid var(--terra);
}
.stops-list li a { color: var(--terra); font-weight: 600; text-decoration: none; }
.stops-list li a:hover { text-decoration: underline; }

.tour-trust {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 10px 20px 16px;
}
.trust-chip {
  font-size: 10.5px; font-weight: 600; color: var(--obsidian);
  background: rgba(14,12,9,.06); border-radius: var(--pill);
  padding: 4px 12px; border: 1px solid rgba(14,12,9,.10);
}

/* Sunrise strip */
.sunrise-strip {
  margin: 8px 0; padding: 11px 14px; border-radius: var(--r-xs);
  background: linear-gradient(135deg, rgba(120,50,0,.82), rgba(184,67,28,.82));
  color: white; font-size: 12.5px; font-weight: 500;
}

/* Stay amenities */
.stay-amenities {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; padding: 4px 0 10px;
}
.amenity-col-title {
  font-size: 10px; font-weight: 700; color: var(--obsidian);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 7px;
}

/* Package box */
.pkg-box {
  background: var(--obsidian);
  border-radius: var(--r-sm); padding: 18px; margin: 10px 0;
  color: white;
  border: 1px solid rgba(212,135,42,.15);
}
.pkg-box-title {
  font-size: 9px; font-weight: 700; color: var(--marigold);
  text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 10px;
}
.pkg-box-name {
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  font-weight: 500; margin-bottom: 12px; color: #fff;
}
.pkg-item {
  background: rgba(255,255,255,.08);
  border-left: 3px solid var(--saffron);
  border-radius: 6px; padding: 9px 13px;
  font-size: 12.5px; margin-bottom: 5px; font-weight: 400;
  color: rgba(255,255,255,.88);
}

/* Card CTA */
.tour-card-cta {
  display: block; text-align: center;
  background: var(--terra); color: white;
  padding: 13px; border-radius: 0 0 var(--r) var(--r);
  text-decoration: none; font-weight: 600; font-size: 14px;
  transition: background .22s; letter-spacing: .2px;
  font-family: 'DM Sans', sans-serif;
}
.tour-card-cta:hover { background: var(--terra-dk); }

/* ═══════════════════════════════════════════════════════════
   TRUST / GUIDE PROFILE CARD
   ═══════════════════════════════════════════════════════════ */
.trust-section {
  padding: 0 16px; max-width: 960px; margin: 0 auto;
}
.trust-card {
  background: var(--granite);
  border-radius: var(--r); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
  box-shadow: var(--sh-2);
  border: 1px solid rgba(212,135,42,.12);
}
.trust-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(212,135,42,.14) 0%, transparent 70%);
  pointer-events: none;
}
.trust-card::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(184,67,28,.10) 0%, transparent 70%);
  pointer-events: none;
}
.trust-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--saffron);
  box-shadow: 0 4px 20px rgba(0,0,0,.40), 0 0 0 5px rgba(212,135,42,.12);
  flex-shrink: 0; position: relative; z-index: 1;
}
.trust-avatar-fallback {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terra), var(--saffron));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; flex-shrink: 0;
  border: 2.5px solid var(--saffron);
  box-shadow: 0 4px 20px rgba(0,0,0,.40), 0 0 0 5px rgba(212,135,42,.12);
  position: relative; z-index: 1;
}
.trust-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 3px;
  position: relative; z-index: 1;
}
.trust-role {
  font-size: 10px; font-weight: 600; color: var(--saffron);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
  position: relative; z-index: 1;
}
.trust-bio {
  font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.76;
  margin-bottom: 12px; position: relative; z-index: 1;
  font-weight: 300;
}
.trust-pills { display: flex; flex-wrap: wrap; gap: 7px; position: relative; z-index: 1; }
.trust-pill {
  font-size: 10.5px; font-weight: 500;
  background: rgba(212,135,42,.15); color: var(--marigold-lt);
  border: 1px solid rgba(212,135,42,.25); border-radius: var(--pill);
  padding: 4px 12px;
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.reviews-section {
  padding: 0 16px; max-width: 960px; margin: 0 auto;
}
.reviews-row {
  display: flex; flex-direction: column; gap: 13px;
}
.rating-box {
  background: var(--milk); border: var(--b-lt);
  border-radius: var(--r); padding: 24px 20px;
  text-align: center; box-shadow: var(--sh-1);
  cursor: pointer; transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.rating-box:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.rating-stars { font-size: 22px; color: var(--marigold); letter-spacing: 2px; }
.rating-score {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  color: var(--obsidian); font-weight: 600; margin-top: 8px;
}
.rating-count { font-size: 13px; color: var(--ink-muted); margin-top: 4px; }
.rating-link {
  display: inline-block; color: #4285F4; font-weight: 500;
  font-size: 13px; margin-top: 12px; text-decoration: none;
}

/* Testimonial quotes */
.testimonial {
  background: var(--milk); border: var(--b-lt);
  border-radius: var(--r); padding: 20px 22px;
  box-shadow: var(--sh-1); position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif; font-size: 72px; line-height: 1;
  color: var(--terra); opacity: .12;
  position: absolute; top: 6px; left: 12px;
}
.testimonial-text {
  font-size: 13.5px; color: var(--ink-body); line-height: 1.76;
  margin-bottom: 14px; padding-top: 14px;
  font-style: italic; position: relative; z-index: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 10px;
}
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--basalt), var(--terra));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--obsidian); }
.testimonial-sub  { font-size: 11px; color: var(--ink-muted); }
.testimonial-stars { font-size: 12px; color: var(--marigold); margin-left: auto; letter-spacing: 1px; }

/* ═══════════════════════════════════════════════════════════
   EXPLORE GRID — Landmark cards
   ═══════════════════════════════════════════════════════════ */
.explore-section { padding: 0 16px 18px; max-width: 960px; margin: 0 auto; }
.explore-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px; }
.explore-card {
  background: var(--milk); border-radius: var(--r);
  overflow: hidden; border: var(--b-lt);
  box-shadow: var(--sh-1); text-decoration: none;
  transition: transform .28s var(--ease-spring), box-shadow .25s;
  display: block;
}
.explore-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.explore-card-top {
  height: 116px; overflow: hidden; position: relative;
}
.explore-card-top img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform .5s ease;
}
.explore-card:hover .explore-card-top img { transform: scale(1.09); }
.explore-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 25%, rgba(14,12,9,.58));
}
.explore-card-body { padding: 11px 13px 15px; }
.explore-card-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; color: var(--obsidian); font-weight: 600;
  margin-bottom: 3px;
}
.explore-card-body p { font-size: 11.5px; color: var(--ink-muted); line-height: 1.55; }
.explore-tag {
  display: inline-block; background: var(--terra); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: .8px;
  padding: 3px 9px; border-radius: var(--pill); text-transform: uppercase;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════
   CITY CARDS — Departure cities
   ═══════════════════════════════════════════════════════════ */
.origin-section { padding: 0 16px; max-width: 960px; margin: 0 auto; }
.city-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 4px; }
.city-card {
  background: var(--obsidian);
  border-radius: var(--r); padding: 20px 18px;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
  box-shadow: var(--sh-1);
  border: 1px solid rgba(212,135,42,.10);
  position: relative; overflow: hidden;
}
.city-card::after {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(212,135,42,.16) 0%, transparent 70%);
  pointer-events: none;
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.city-card-icon { font-size: 26px; margin-bottom: 10px; }
.city-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: #fff; margin-bottom: 4px; font-weight: 600;
}
.city-card-dist { font-size: 11px; color: var(--saffron); font-weight: 600; margin-bottom: 7px; letter-spacing: .3px; }
.city-card-desc { font-size: 12px; color: rgba(255,255,255,.60); line-height: 1.58; flex: 1; }
.city-card-link {
  display: inline-block; margin-top: 13px;
  font-size: 12px; font-weight: 600; color: var(--marigold);
  background: rgba(212,135,42,.14); border: 1px solid rgba(212,135,42,.28);
  padding: 5px 13px; border-radius: var(--pill); letter-spacing: .2px;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════════════════════════ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--sand) 20%, var(--sand) 80%, transparent 100%);
  margin: 28px 16px; max-width: 960px;
}

/* ═══════════════════════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════════════════════ */
.map-section  { padding: 0 16px; max-width: 960px; margin: 0 auto 22px; }
.map-label    { font-size: 14px; font-weight: 600; color: var(--obsidian); margin-bottom: 10px; }
.map-frame {
  border-radius: var(--r); overflow: hidden;
  border: 1.5px solid var(--obsidian);
  box-shadow: 0 0 0 2px var(--saffron), var(--sh-2);
  position: relative; padding-bottom: 56%; height: 0;
  -webkit-mask-image: -webkit-radial-gradient(white,black);
  transform: translateZ(0);
}
.map-frame iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none; display: block;
}
.map-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,12,9,.82));
  color: white; font-size: 12px; font-weight: 500;
  padding: 28px 14px 10px; text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT CARDS
   ═══════════════════════════════════════════════════════════ */
.contact-section { padding: 0 16px; max-width: 960px; margin: 0 auto; }
.contact-card {
  background: var(--milk); border: var(--b-lt);
  border-radius: var(--r); padding: 24px 22px;
  box-shadow: var(--sh-1); margin-bottom: 16px;
}
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; color: var(--obsidian); margin-bottom: 16px; font-weight: 600;
}
.contact-btn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-call {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; background: var(--obsidian); color: #fff;
  padding: 16px; border-radius: var(--r-sm); text-decoration: none;
  font-weight: 600; font-size: 14px; transition: opacity .2s;
  line-height: 1.5;
}
.cta-call:hover { opacity: .88; }
.cta-call span { font-size: 11px; font-weight: 400; opacity: .72; }
.cta-wa {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; background: #22C55E; color: #fff;
  padding: 16px; border-radius: var(--r-sm); text-decoration: none;
  font-weight: 600; font-size: 14px;
  transition: opacity .2s, transform .22s var(--ease-spring);
  line-height: 1.5;
  box-shadow: 0 4px 18px rgba(34,197,94,.30);
}
.cta-wa:hover { opacity: .90; transform: translateY(-2px); }
.cta-wa span { font-size: 11px; font-weight: 400; opacity: .85; }
.social-row {
  display: flex; justify-content: center; gap: 16px; margin-top: 10px;
}
.social-row a img { width: 44px; height: 44px; transition: transform .22s var(--ease-spring); }
.social-row a:hover img { transform: scale(1.16) translateY(-2px); }

/* Train info */
.train-box {
  background: var(--parchment); border: var(--b-lt);
  border-radius: var(--r-sm); padding: 16px 18px; margin-top: 14px;
}
.train-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: var(--obsidian); margin-bottom: 12px; font-weight: 600;
}
.train-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px;
}
.train-item {
  background: var(--milk); border-radius: var(--r-xs);
  padding: 11px 13px; border-left: 3px solid var(--terra);
  box-shadow: var(--sh-0);
}
.train-item h5 { font-size: 12px; font-weight: 700; color: var(--obsidian); margin-bottom: 4px; }
.train-item p  { font-size: 11.5px; color: var(--ink-muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   ENQUIRY FORM
   ═══════════════════════════════════════════════════════════ */
.form-header {
  background: var(--obsidian);
  padding: 88px 22px 40px; text-align: center; position: relative; overflow: hidden;
}
.form-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% -5%, rgba(212,135,42,.26) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 110%, rgba(184,67,28,.18) 0%, transparent 50%);
  pointer-events: none;
}
.form-header-back {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.85); padding: 7px 16px; border-radius: var(--pill);
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: background .2s;
}
.form-header-back:hover { background: rgba(255,255,255,.20); }
.form-header-icon { font-size: 44px; margin-bottom: 12px; position: relative; z-index: 1; }
.form-header h1 {
  font-family: 'Cormorant Garamond', serif; font-size: 30px; color: #fff;
  font-weight: 600; margin-bottom: 8px; position: relative; z-index: 1;
}
.form-header p { color: rgba(255,255,255,.65); font-size: 14px; position: relative; z-index: 1; font-weight: 300; }
.form-header-badge {
  display: inline-block; background: rgba(212,135,42,.15);
  border: 1px solid rgba(212,135,42,.35); color: var(--marigold-lt);
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: var(--pill); margin-bottom: 14px;
  position: relative; z-index: 1;
}
.form-wrap { max-width: 540px; margin: 0 auto; padding: 26px 16px 64px; }
.form-card {
  background: var(--milk); border: var(--b-lt);
  border-radius: var(--r); padding: 24px 22px;
  box-shadow: var(--sh-1); margin-bottom: 16px;
}
.field-label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--obsidian); margin-bottom: 7px; letter-spacing: .3px;
  text-transform: uppercase;
}
.field-label .req { color: var(--terra); margin-left: 2px; }
.field-input, .field-select, .field-textarea {
  width: 100%; padding: 12px 14px;
  background: var(--parchment); border: 1px solid rgba(180,140,80,.20);
  border-radius: var(--r-xs); font-size: 14px;
  color: var(--ink); font-family: 'DM Sans', sans-serif;
  transition: border-color .22s, box-shadow .22s;
  outline: none; appearance: none;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(184,67,28,.12);
  background: var(--milk);
}
.field-textarea { resize: vertical; min-height: 96px; }
.field-group { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

.submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px;
  background: var(--terra); color: #fff;
  border: none; border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 600; cursor: pointer;
  box-shadow: 0 6px 24px rgba(184,67,28,.42);
  transition: background .22s, transform .18s var(--ease-spring);
}
.submit-btn:hover { background: var(--terra-dk); transform: translateY(-2px); }
.submit-btn:active { transform: scale(.98); }

.success-screen {
  display: none; text-align: center;
  background: var(--milk); border: var(--b-lt);
  border-radius: var(--r); padding: 40px 26px;
  box-shadow: var(--sh-1);
}
.success-screen.visible { display: block; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--obsidian); margin-bottom: 9px; }
.success-text { font-size: 14px; color: var(--ink-muted); line-height: 1.72; }

.service-badge {
  background: var(--obsidian); color: #fff;
  border-radius: var(--r); padding: 16px 18px;
  margin-bottom: 22px; display: flex; align-items: center;
  gap: 14px; box-shadow: var(--sh-1);
  border: 1px solid rgba(212,135,42,.14);
}
.service-badge-icon { font-size: 30px; flex-shrink: 0; }
.service-badge h3 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.service-badge p { font-size: 12px; opacity: .70; }

/* ═══════════════════════════════════════════════════════════
   LANDMARK PAGES
   ═══════════════════════════════════════════════════════════ */
.landmark-hero {
  padding: 96px 22px 52px; text-align: center;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  min-height: 290px; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
}
.landmark-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14,12,9,.50) 0%,
    rgba(14,12,9,.32) 40%,
    rgba(14,12,9,.80) 100%
  );
}
.landmark-hero > * { position: relative; z-index: 1; }
.landmark-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 7.5vw, 46px); color: #fff;
  font-weight: 600; line-height: 1.12;
  margin-bottom: 10px; letter-spacing: -.3px;
}
.landmark-hero h1 em { font-style: italic; color: var(--marigold-lt); font-weight: 400; }
.landmark-hero p {
  color: rgba(255,255,255,.76); font-size: 14px;
  max-width: 440px; margin: 0 auto 22px; line-height: 1.72;
  font-weight: 300;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; margin-bottom: 16px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.50); font-size: 11px; text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--marigold-lt); }
.breadcrumb span { color: rgba(255,255,255,.25); font-size: 11px; }
.breadcrumb strong { color: var(--marigold-lt); font-size: 11px; }

.lm-body { padding: 0 16px; max-width: 700px; margin: 0 auto; }
.lm-section {
  background: var(--milk); border: var(--b-lt);
  border-radius: var(--r); padding: 24px 22px; margin: 15px 0;
  box-shadow: var(--sh-1);
}
.lm-section h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 21px;
  color: var(--obsidian); font-weight: 600; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--sand);
}
.lm-section h2 span { color: var(--terra); }
.lm-section p { font-size: 14px; color: var(--ink-body); line-height: 1.82; margin-bottom: 10px; }
.lm-section p:last-child { margin-bottom: 0; }

.lm-list { list-style: none; margin: 6px 0; }
.lm-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 12px; background: var(--parchment); border-radius: var(--r-xs);
  margin-bottom: 5px; font-size: 13.5px; color: var(--ink-body);
  border-left: 3px solid var(--terra);
}
.lm-tip {
  background: linear-gradient(135deg, rgba(184,67,28,.06), rgba(212,135,42,.06));
  border: 1px solid rgba(184,67,28,.18); border-radius: var(--r-xs);
  padding: 13px 17px; margin: 10px 0; font-size: 13.5px; line-height: 1.68;
}
.lm-tip strong { color: var(--terra); }

.lm-img {
  border-radius: var(--r); overflow: hidden;
  border: 1.5px solid var(--obsidian); box-shadow: var(--sh-2);
  margin: 15px 0; line-height: 0;
}
.lm-img img { width: 100%; height: 230px; object-fit: cover; display: block; }

.lm-cta {
  background: var(--obsidian);
  border-radius: var(--r); padding: 26px 22px; text-align: center; margin: 15px 0;
  border: 1px solid rgba(212,135,42,.12);
  position: relative; overflow: hidden;
}
.lm-cta::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,135,42,.15) 0%, transparent 70%);
}
.lm-cta h3 {
  font-family: 'Cormorant Garamond', serif; color: var(--marigold-lt);
  font-size: 20px; font-weight: 600; margin-bottom: 9px; position: relative; z-index: 1;
}
.lm-cta p { color: rgba(255,255,255,.64); font-size: 13px; margin-bottom: 18px; line-height: 1.62; position: relative; z-index: 1; font-weight: 300; }
.lm-cta-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; z-index: 1; }
.btn-call {
  display: block; text-align: center; background: var(--terra); color: #fff;
  padding: 14px; border-radius: var(--r-sm); text-decoration: none;
  font-weight: 600; font-size: 14px; transition: background .2s;
  box-shadow: 0 4px 16px rgba(184,67,28,.40);
}
.btn-call:hover { background: var(--terra-dk); }
.btn-wa {
  display: block; text-align: center; background: #22C55E; color: #fff;
  padding: 14px; border-radius: var(--r-sm); text-decoration: none;
  font-weight: 600; font-size: 14px; transition: opacity .2s;
  box-shadow: 0 4px 16px rgba(34,197,94,.32);
}
.btn-wa:hover { opacity: .88; }

.related-places { padding: 0 16px 18px; max-width: 700px; margin: 0 auto; }
.related-places h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--obsidian);
  margin-bottom: 14px; text-align: center; font-weight: 600;
}
.related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.related-card {
  background: var(--milk); border-radius: var(--r);
  overflow: hidden; border: var(--b-lt); box-shadow: var(--sh-0);
  text-decoration: none; transition: transform .22s var(--ease-spring), box-shadow .22s; display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.related-card-inner { padding: 15px 13px; }
.related-card-icon { font-size: 22px; margin-bottom: 6px; }
.related-card h4 { font-size: 13px; color: var(--obsidian); font-weight: 600; margin-bottom: 3px; }
.related-card p  { font-size: 11px; color: var(--ink-muted); }

/* ═══════════════════════════════════════════════════════════
   CITY PAGES
   ═══════════════════════════════════════════════════════════ */
.city-hero {
  background: var(--obsidian);
  padding: 96px 22px 52px; text-align: center;
  position: relative; overflow: hidden;
}
.city-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(212,135,42,.24) 0%, transparent 52%),
    radial-gradient(ellipse at 10% 100%, rgba(184,67,28,.16) 0%, transparent 50%);
  pointer-events: none;
}
.city-hero > * { position: relative; z-index: 1; }
.city-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px,7.5vw,48px); color: #fff;
  font-weight: 600; line-height: 1.18; margin-bottom: 11px;
}
.city-hero h1 em { color: var(--marigold-lt); font-style: italic; }
.city-hero p { color: var(--ink-light); font-size: 14px; max-width: 460px; margin: 0 auto 24px; line-height: 1.72; font-weight: 300; }

.city-body { padding: 0 16px; max-width: 800px; margin: 0 auto; }
.city-section {
  background: var(--milk); border: var(--b-lt);
  border-radius: var(--r); padding: 24px 22px; margin: 15px 0;
  box-shadow: var(--sh-1);
}
.city-section h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--obsidian);
  font-weight: 600; margin-bottom: 14px; padding-bottom: 11px;
  border-bottom: 1px solid var(--sand);
}
.city-section p { font-size: 14px; color: var(--ink-body); line-height: 1.82; margin-bottom: 10px; }
.city-section h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 17px;
  color: var(--terra); font-weight: 600; margin: 16px 0 9px;
}

.train-card {
  background: var(--parchment); border: var(--b-lt);
  border-radius: var(--r-sm); padding: 15px 17px; margin-bottom: 10px;
  border-left: 3px solid var(--terra);
}
.train-card h4 { font-size: 14px; font-weight: 700; color: var(--obsidian); margin-bottom: 6px; }
.train-card p  { font-size: 13px; color: var(--ink-body); line-height: 1.66; }

.itinerary-step {
  display: flex; gap: 15px; margin-bottom: 15px; align-items: flex-start;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terra), var(--saffron));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
  margin-top: 2px; box-shadow: 0 2px 10px rgba(184,67,28,.35);
}
.step-content h4 { font-size: 14px; font-weight: 700; color: var(--obsidian); margin-bottom: 4px; }
.step-content p  { font-size: 13px; color: var(--ink-body); line-height: 1.62; }

.faq-item {
  border-bottom: 1px solid var(--sand); padding: 15px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 14px; font-weight: 600; color: var(--obsidian); margin-bottom: 6px; }
.faq-a { font-size: 13.5px; color: var(--ink-body); line-height: 1.68; }

/* ═══════════════════════════════════════════════════════════
   STRIPS & CALLOUTS
   ═══════════════════════════════════════════════════════════ */
.adv-strip {
  background: linear-gradient(135deg, rgba(184,67,28,.07), rgba(212,135,42,.08));
  border: 1px solid rgba(184,67,28,.22); border-radius: var(--r-xs);
  padding: 11px 15px; margin: 9px 0;
  font-size: 12.5px; color: var(--ink-body); font-weight: 500;
}
.adv-strip strong { color: var(--terra); }

.city-tip-box {
  background: linear-gradient(135deg, rgba(14,12,9,.04), rgba(184,67,28,.04));
  border: 1px solid rgba(14,12,9,.12); border-radius: var(--r-xs);
  padding: 15px 17px; margin: 13px 0;
}
.city-tip-box h4 { font-size: 13px; font-weight: 700; color: var(--obsidian); margin-bottom: 6px; }
.city-tip-box p  { font-size: 13px; color: var(--ink-body); line-height: 1.62; }
.city-tip-box a  { color: var(--terra); font-weight: 600; text-decoration: none; }

/* ═══════════════════════════════════════════════════════════
   FIXED FOOTER — Floating dock, not edge-to-edge
   ═══════════════════════════════════════════════════════════ */
.fixed-footer {
  position: fixed; bottom: 16px;
  left: 50%; transform: translateX(-50%);
  background: rgba(14,12,9,.86);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(212,135,42,.20);
  border-radius: var(--pill);
  padding: 10px 22px;
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  z-index: 1000;
  box-shadow: 0 8px 36px rgba(14,12,9,.45), 0 2px 8px rgba(14,12,9,.28), inset 0 1px 0 rgba(255,255,255,.06);
  min-width: 280px;
  animation: dockSlideUp .55s .2s var(--ease-spring) both;
}
.fixed-footer a img {
  width: 32px; height: 32px;
  transition: transform .22s var(--ease-spring), filter .2s;
  filter: none;
}
.fixed-footer a:hover img {
  transform: scale(1.28) translateY(-5px);
  filter: drop-shadow(0 3px 8px rgba(255,255,255,.25));
}
/* WhatsApp glow */
.fixed-footer a[href*="wa.me"]:hover img {
  filter: drop-shadow(0 3px 10px rgba(34,197,94,.65));
}
/* YouTube glow */
.fixed-footer a[href*="youtube"]:hover img {
  filter: drop-shadow(0 3px 10px rgba(255,59,48,.65));
}
/* Hide YouTube from floating footer on mobile — keeps dock compact */
@media (max-width: 600px) {
  .fixed-footer a[href*="youtube"] { display: none; }
}

/* WhatsApp heartbeat glow */
.fixed-footer a[href*="wa.me"] img {
  animation: waPulse 3.2s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 90%, 100% { box-shadow: none; transform: scale(1); }
  95%            { transform: scale(1.08); box-shadow: 0 0 14px rgba(34,197,94,.60); }
}

@keyframes dockSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Copyright bar */
.copyright-bar {
  background: var(--obsidian); color: rgba(255,255,255,.42);
  font-size: 11.5px; text-align: center; padding: 12px 16px;
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 8px; margin-bottom: 92px;
  font-weight: 400; letter-spacing: .2px;
}
.credit-link { color: var(--saffron); font-weight: 600; text-decoration: none; }
.credit-link:hover { color: var(--marigold); }

/* Gallery page tabs — keep existing behaviour */
.gallery-tabs {
  display: flex; border-bottom: 1px solid var(--sand);
  padding: 0 16px; background: var(--milk);
  position: sticky; top: 56px; z-index: 100;
}
.gallery-tab {
  padding: 14px 18px; font-size: 13px; font-weight: 600;
  color: var(--ink-muted); cursor: pointer; border: none;
  background: none; border-bottom: 2.5px solid transparent;
  transition: color .2s, border-color .2s;
  font-family: 'DM Sans', sans-serif;
}
.gallery-tab:hover { color: var(--obsidian); }
.gallery-tab.active { color: var(--terra); border-bottom-color: var(--terra); }
.gallery-pane { display: none; }
.gallery-pane.active { display: block; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 3px; padding: 3px;
}
.gallery-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-img-wrap:hover img { transform: scale(1.07); }
.gallery-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,12,9,.75));
  color: rgba(255,255,255,.88); font-size: 11px; font-weight: 500;
  padding: 20px 9px 7px; opacity: 0; transition: opacity .3s;
}
.gallery-img-wrap:hover .gallery-img-caption { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero     { animation: fadeUp .5s ease both; }
.stats-bar { animation: fadeUp .45s .1s ease both; }

/* Scroll-reveal — lightweight pure CSS approach */
.reveal {
  opacity: 0; transform: translateY(22px);
  animation: fadeUp .55s ease forwards;
  animation-play-state: paused;
}
.reveal.visible { animation-play-state: running; }

/* ═══════════════════════════════════════════════════════════
   DESKTOP — 768px+
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .nav-container {
    display: flex; align-items: center;
    justify-content: space-between; padding: 0 52px;
  }
  .nav-header { padding: 14px 0; flex: 0 0 auto; }
  .hamburger { display: none; }
  .nav-menu {
    display: flex !important; flex-direction: row !important;
    max-height: none !important; overflow: visible !important;
    padding: 0 !important; gap: 4px; align-items: center;
  }
  .nav-item { padding: 8px 16px; font-size: 13px; border-radius: var(--r-xs); }

  .hero { padding: 120px 72px 76px; }
  .hero h1 { font-size: clamp(46px, 4.5vw, 66px); }
  .hero-logo { width: 102px; height: 102px; }
  .hero-sub { font-size: 16px; }

  .stats-bar { max-width: 1020px; margin: 0 auto; }
  .stat-num  { font-size: 32px; }
  .stat-label { font-size: 10px; }
  .stat-item { padding: 24px 16px; }

  .section-title { padding: 54px 0 24px; }
  .section-title h2 { font-size: clamp(32px, 3vw, 44px); }

  .tours-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 26px 14px;
    max-width: 1080px; gap: 22px; margin: 0 auto;
  }
  .tour-card-img { height: 220px; }

  .trust-card { flex-direction: row; padding: 32px 36px; }
  .trust-avatar,
  .trust-avatar-fallback { width: 94px; height: 94px; }

  .reviews-row { flex-direction: row; flex-wrap: wrap; }
  .rating-box { flex: 0 0 230px; }
  .testimonial { flex: 1; min-width: 240px; }

  .explore-section { padding: 0 26px 22px; max-width: 1080px; margin: 0 auto; }
  .explore-grid { grid-template-columns: repeat(4,1fr); gap: 16px; }
  .explore-card-top { height: 144px; }

  .city-cards-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .origin-section { max-width: 1080px; padding: 0 26px; margin: 0 auto; }

  .map-section { padding: 0 26px; max-width: 1080px; margin: 0 auto; }
  .map-frame { padding-bottom: 44%; }

  .contact-section,
  .trust-section,
  .reviews-section { max-width: 960px; padding: 0 26px; margin: 0 auto; }
  .divider { max-width: 1020px; margin: 34px auto; }

  .lm-body { max-width: 840px; padding: 0 36px; margin: 0 auto; }
  .lm-section { padding: 30px 34px; }
  .lm-section h2 { font-size: 24px; }
  .lm-section p { font-size: 15px; }
  .lm-img img { height: 296px; }
  .lm-cta { padding: 34px 40px; }

  .related-places { max-width: 840px; padding: 0 36px 26px; margin: 0 auto; }
  .related-grid { grid-template-columns: repeat(4,1fr); }

  .city-body { max-width: 880px; padding: 0 36px; margin: 0 auto; }
  .city-section { padding: 30px 34px; }
  .city-section h2 { font-size: 24px; }

  .landmark-hero { padding: 130px 72px 68px; min-height: 360px; }
  .landmark-hero h1 { font-size: clamp(36px, 4.5vw, 52px); }
  .landmark-hero p  { font-size: 16px; max-width: 560px; }

  .form-wrap { padding: 30px 26px 72px; }
  .form-card { padding: 30px 30px; }

  .fixed-footer { gap: 22px; padding: 12px 28px; }
  .fixed-footer a img { width: 32px; height: 32px; }

  .gallery-grid { grid-template-columns: repeat(3,1fr); }
}

/* ═══════════════════════════════════════════════════════════
   LARGE DESKTOP — 1100px+
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 1100px) {
  .nav-container { padding: 0 72px; }
  .tours-grid { padding: 0 52px 18px; }
  .explore-section { padding: 0 52px 22px; }
  .hero h1 { font-size: 70px; }
  .hero-logo { width: 112px; height: 112px; }
}
