/* ============================================================
   INDIA KARNI — Master stylesheet
   Editorial-luxe + Indian rural soul
   ============================================================ */

:root {
  --ink:        #1A1814;
  --ink-soft:   #3A352C;
  --paper:      #F5EFE3;
  --paper-2:    #EDE4D3;
  --paper-3:    #FBF7EF;
  --terracotta: #B85B3D;
  --terracotta-d:#8C3B22;
  --teal:       #1B4A4A;
  --teal-soft:  #2E6463;
  --gold:       #C9962E;
  --gold-soft:  #D4A24A;
  --sage:       #6E7A4D;
  --line:       rgba(26, 24, 20, 0.14);
  --line-soft:  rgba(26, 24, 20, 0.08);

  --shadow-card: 0 22px 60px -28px rgba(40, 28, 16, 0.35);
  --shadow-pop:  0 30px 80px -36px rgba(40, 28, 16, 0.55);

  --container: 1320px;
  --ease-out: cubic-bezier(.2, .65, .3, 1);
  --ease-soft: cubic-bezier(.4, .1, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  --bg-page: var(--paper);
  --bg-page-alt: var(--paper-3);
  --bg-card: #FAF6ED;
  --line-card: var(--line);
  --text-main: var(--ink);
  --text-muted: var(--ink-soft);
  
  /* --user-bg: optional override set by the demo panel's Background control. */
  background: var(--user-bg, var(--bg-page));
  color: var(--text-main);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

/* Version/theme/colour controls are ADMIN-ONLY. They show only when the page is
   unlocked via ?admin=<key> (which adds html.admin-mode). The public never sees them. */
html:not(.admin-mode) .hero-switcher,
html:not(.admin-mode) .header-theme-switcher {
  display: none !important;
}

/* Customer/presenter demo mode — html.present-mode hides every demo control
   so the customer window shows only the site, mirroring the presenter live. */
html.present-mode .hero-switcher,
html.present-mode .header-theme-switcher {
  display: none !important;
}

/* Full-bleed video hero (.hero-royal) — generic layout, always loaded so any
   theme can use it. Each theme's stylesheet only toggles the .hero/.hero-royal swap. */
.hero-royal {
  position: relative;
  min-height: 78vh;
  margin: 0;
  padding: 0;
  background: #000;
  overflow: hidden;
}
.hero-royal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
/* Per-clip caption overlay — fades out/in as the reel moves between clips. */
.hero-royal-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: clamp(48px, 9vw, 120px) clamp(22px, 7vw, 96px) clamp(28px, 5vw, 64px);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.62));
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.hero-royal-cap.is-changing { opacity: 0; }
.hero-royal-cap .hrc-title {
  margin: 0 0 10px;
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.hero-royal-cap .hrc-title em { font-style: italic; color: #FFE4A0; }
.hero-royal-cap .hrc-sub {
  margin: 0;
  max-width: 52ch;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}
@media (max-width: 1100px) { .hero-royal { min-height: 60vh; } }
@media (max-width: 640px)  { .hero-royal { min-height: 52vh; } }

/* Header colour override — set by the demo panel's Header control.
   Gated by the html[data-user-header] attribute; !important beats every theme's
   header gradient regardless of stylesheet load order. */
html[data-user-header] .royal-topbar,
html[data-user-header] .royal-strip,
html[data-user-header] .pdf-nav,
html[data-user-header] .pdf-nav.shrunk {
  background: var(--user-header) !important;
}

/* Card colour override — demo panel's Cards control. Gated by html[data-user-card].
   Covers home-page AND internal-page card types across all four themes. */
html[data-user-card] .home-itin-card,
html[data-user-card] .home-dest-card,
html[data-user-card] .home-fleet-card,
html[data-user-card] .hs-card,
html[data-user-card] .affil-card,
html[data-user-card] .video-review-card,
html[data-user-card] .text-review-card,
html[data-user-card] .home-why-card,
html[data-user-card] .dest-card,
html[data-user-card] .itin-card,
html[data-user-card] .itin-tour-card,
html[data-user-card] .itin-soon-card,
html[data-user-card] .vehicle-card,
html[data-user-card] .loc-card,
html[data-user-card] .review-card,
html[data-user-card] .review-form-card,
html[data-user-card] .blog-card,
html[data-user-card] .contact-form-card,
html[data-user-card] .enquiry-card,
html[data-user-card] .theme-card,
html[data-user-card] .rajasthan-card,
html[data-user-card] .mon-visual-card {
  background: var(--user-card) !important;
}

/* "Why Choose" benefit cards — icon + heading + text. */
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.home-why-card {
  background: var(--bg-card);
  border: 1px solid var(--line-card);
  border-radius: 16px;
  padding: 42px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -20px rgba(0, 0, 0, 0.4);
}
.hwc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FFD93D;
}
.hwc-icon svg { width: 30px; height: 30px; }
.home-why-card h3 {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.home-why-card p {
  line-height: 1.65;
  font-size: 0.95rem;
}
@media (max-width: 860px) {
  .home-why-grid { grid-template-columns: 1fr; }
}

/* Background also reaches internal pages: force the body and every solid-background
   content section to follow the custom background. (Transparent sections already do.)
   Decorative feature sections — .why-section, .cta-block — are intentionally excluded. */
html[data-user-bg] body { background: var(--user-bg) !important; }
html[data-user-bg] .about-section,
html[data-user-bg] .itin-section,
html[data-user-bg] .dest-section,
html[data-user-bg] .themes-section,
html[data-user-bg] .fleet-section,
html[data-user-bg] .reviews-section,
html[data-user-bg] .gallery-section,
html[data-user-bg] .blog-section,
html[data-user-bg] .article-section,
html[data-user-bg] .faq-section,
html[data-user-bg] .contact-section,
html[data-user-bg] .enquiry-section {
  background: var(--user-bg) !important;
}

/* Text colour override — demo panel's Text control. Redefines every theme's text
   variables; gold accents (which use the *-gold vars) are intentionally unaffected. */
html[data-user-text] {
  --royal-cream:   var(--user-text);
  --royal-cream-m: var(--user-text);
  --navy-cream:    var(--user-text);
  --navy-cream-m:  var(--user-text);
  --text-main:     var(--user-text);
  --text-muted:    var(--user-text);
  --text-light:    var(--user-text);
  --ink:           var(--user-text);
  --ink-soft:      var(--user-text);
}

/* Footer colour override — demo panel's Footer control. Gated by html[data-user-footer]. */
html[data-user-footer] footer.site-footer,
html[data-user-footer] .site-footer {
  background: var(--user-footer) !important;
}

/* Button colour override — demo panel's Buttons control. Gated by html[data-user-btn].
   Filled buttons take it as background; outline buttons take it as border. */
html[data-user-btn] .btn-primary,
html[data-user-btn] .btn-cta-primary,
html[data-user-btn] .btn-submit,
html[data-user-btn] .btn-search {
  background: var(--user-btn) !important;
  border-color: var(--user-btn) !important;
}
html[data-user-btn] .btn-ghost,
html[data-user-btn] .btn-cta-secondary {
  border-color: var(--user-btn) !important;
}

/* Button text colour override — demo panel's Button Text control. Gated by html[data-user-btn-text]. */
html[data-user-btn-text] .btn-primary,
html[data-user-btn-text] .btn-ghost,
html[data-user-btn-text] .btn-cta,
html[data-user-btn-text] .btn-cta-primary,
html[data-user-btn-text] .btn-cta-secondary,
html[data-user-btn-text] .btn-submit,
html[data-user-btn-text] .btn-search {
  color: var(--user-btn-text) !important;
}

body[data-theme="cream"] {
  --bg-page: #FAF5EB;
  --bg-page-alt: #FFFDF9;
  --bg-card: #FFFDF9;
  --line-card: rgba(26, 24, 20, 0.08);
}

body[data-theme="mist"] {
  --bg-page: #EFEFE9;
  --bg-page-alt: #FAF9F6;
  --bg-card: #FAF9F6;
  --line-card: rgba(26, 24, 20, 0.1);
}

body[data-theme="midnight"] {
  --bg-page: #141310;
  --bg-page-alt: #1C1A16;
  --bg-card: #1C1A16;
  --line-card: rgba(255, 255, 255, 0.08);
  --text-main: #FBF7EF;
  --text-muted: rgba(245, 239, 227, 0.7);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.06);
}

body::before {
  content: ""; position: fixed; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(184,91,61,0.04), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(27,74,74,0.04), transparent 40%);
  pointer-events: none; z-index: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* TYPOGRAPHY */
.display, h1, h2, h3 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(2.6rem, 5.8vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 1.8vw, 1.7rem); line-height: 1.18; }
h4 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 1.25rem; line-height: 1.2; }
em, .italic-accent {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--terracotta);
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  color: var(--terracotta-d);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: currentColor;
}

.container {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative; z-index: 1;
}

/* ============================================================
   ROYAL HEADER — Maroon backdrop + gold ornamental frame
   Slim contact bar on top, three-zone header below
   (logo card | central headline frame | ratings + director)
   ============================================================ */

/* --- Slim contact bar above the royal strip --- */
.royal-topbar {
  position: relative;
  z-index: 102;
  background: linear-gradient(90deg, #3d0e22 0%, #4a1330 50%, #3d0e22 100%);
  color: rgba(245, 239, 227, 0.92);
  font-size: 13.5px; /* Scaled up from 11px */
  border-bottom: 1px solid rgba(212, 162, 74, 0.35);
}
.royal-topbar-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 7px clamp(16px, 2vw, 32px); /* Enhanced padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.rtb-left, .rtb-right { display: inline-flex; align-items: center; gap: 18px; } /* Increased gap */
.rtb-link,
.rtb-link:visited {
  display: inline-flex; align-items: center; gap: 9px; /* Increased gap */
  color: #F5EFE3 !important;
  text-decoration: none;
  font-family: 'Manrope', sans-serif; font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s;
}
.rtb-link svg {
  width: 16px !important;
  height: 16px !important;
  color: #E8C677 !important;
}
.rtb-link:hover,
.rtb-link:hover svg { color: #F5C76A !important; }
.rtb-sep { color: rgba(212, 162, 74, 0.65) !important; font-size: 14px; }
.rtb-follow {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px; /* Scaled up from 10px */
  color: rgba(245, 239, 227, 0.92) !important;
  margin-right: 4px;
}
.rtb-soc {
  width: 24px; height: 24px; /* Scaled up from 20px */
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .25s var(--ease-out), filter .25s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.18);
}
.rtb-soc svg { width: 13px; height: 13px; } /* Scaled up from 10px */
.rtb-soc:hover { transform: translateY(-2px) scale(1.08); filter: brightness(1.15); }
.rtb-fb { background: #1877F2; }
.rtb-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.rtb-li { background: #0077B5; }
.rtb-tw { background: #000000; }

/* --- Main royal strip --- */
.royal-strip {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.22) 100%),
    radial-gradient(ellipse at 25% 50%, rgba(184, 91, 61, 0.32) 0%, rgba(184, 91, 61, 0) 55%),
    radial-gradient(ellipse at 75% 50%, rgba(212, 162, 74, 0.18) 0%, rgba(212, 162, 74, 0) 55%),
    linear-gradient(135deg, #5a1d36 0%, #6a1f3e 35%, #5a1d36 70%, #4a1330 100%);
  padding: 6px 0;
  min-height: 108px;
  border-bottom: 2px solid rgba(212, 162, 74, 0.55);
  box-shadow:
    inset 0 -1px 0 rgba(212, 162, 74, 0.4),
    0 8px 22px -14px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 100;
  color: #F5EFE3;
  overflow: visible;
}
.royal-pattern { clip-path: inset(0); }
.royal-pattern {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}
.royal-strip::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #D4A24A 12%,
    #E8C677 50%,
    #D4A24A 88%,
    transparent 100%
  );
  pointer-events: none;
}
body.scrolled .royal-strip { padding: 4px 0; min-height: 90px; transition: padding .3s, min-height .3s; }

.royal-strip-inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  padding: 0 clamp(16px, 2vw, 32px);
  width: 100%;
  max-width: none;
  margin: 0;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* --- LEFT: Logo cartouche · royal ivory parchment with gold-leaf frame --- */
.rs-logo-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  background:
    radial-gradient(ellipse at 50% 0%, #FBF7EF 0%, #F5EAD0 70%, #ECDDB6 100%);
  border-radius: 6px;
  /* Multi-layered gold-leaf border: outer gold edge → maroon ring → inner gold rim */
  box-shadow:
    inset 0 0 0 1px #B07F2A,
    inset 0 0 0 2px #E8C677,
    inset 0 0 0 5px #4a1330,
    inset 0 0 0 6px #E8C677,
    inset 0 0 0 7px #C99A35,
    inset 0 2px 10px rgba(120, 70, 20, 0.18),
    inset 0 -2px 10px rgba(120, 70, 20, 0.10),
    0 6px 18px -8px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(232, 198, 119, 0.45);
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  isolation: isolate;
  min-width: 220px;
  min-height: 80px;
}
/* Corner star ornaments — gold-leaf fleurons */
.rs-logo-card::before,
.rs-logo-card::after {
  position: absolute;
  color: #B07F2A;
  font-size: 11px;
  line-height: 1;
  pointer-events: none;
  text-shadow:
    0 1px 0 rgba(255, 230, 170, 0.9),
    0 0 4px rgba(232, 198, 119, 0.7);
  z-index: 2;
}
.rs-logo-card::before {
  content: "❖";
  top: 5px; left: 10px;
}
.rs-logo-card::after {
  content: "❖";
  bottom: 5px; right: 10px;
}
.rs-logo-img {
  height: 60px;
  width: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(74, 19, 48, 0.25));
}

/* --- CENTER: Borderless headline area (text block + medallion side-by-side) --- */
.rs-frame {
  flex: 1 1 auto;
  max-width: none;
  padding: 6px 20px 8px 12px;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  text-align: left;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.rs-frame-corner { display: none; }
.rs-frame-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

/* --- "Since 2005" calligraphic banner above the headline --- */
.rs-since-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  align-self: center;
  color: #E8C677;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 10px rgba(232, 198, 119, 0.4));
}
.rs-since-text {
  font-family: 'Allura', cursive;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
  letter-spacing: 0.01em;
  background: linear-gradient(
    100deg,
    #E8C677 0%,
    #FBE6A4 25%,
    #FFF1C2 50%,
    #FBE6A4 75%,
    #E8C677 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: rs-foil 6s ease-in-out infinite;
  padding: 0 2px 4px;
}
.rs-since-flourish {
  display: inline-block;
  width: clamp(48px, 6vw, 80px);
  height: 12px;
  opacity: 0.9;
}
.rs-since-flourish svg { width: 100%; height: 100%; display: block; }

.rs-est {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #E8C677;
  margin-bottom: 2px;
  align-self: center;
}
.rs-diamond { color: #D4A24A; font-size: 8px; transform: translateY(-1px); }
.rs-est-text { padding: 0 2px; }

.rs-headline {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: 0.005em;
  position: relative;
}
.rs-h-line1 {
  font-style: normal;
  margin-right: 10px;
  letter-spacing: 0.01em;
  font-weight: 600;
  background: linear-gradient(
    180deg,
    #FFE9A8 0%,
    #F5C76A 30%,
    #D4A24A 60%,
    #B07F2A 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  filter:
    drop-shadow(0 1px 0 rgba(74, 19, 48, 0.6))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 14px rgba(232, 198, 119, 0.55));
}
.rs-h-line2 em {
  font-style: italic;
  font-weight: 600;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    100deg,
    #E8C677 0%,
    #FBE6A4 22%,
    #FFF1C2 50%,
    #FBE6A4 78%,
    #E8C677 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 12px rgba(232, 198, 119, 0.5));
  animation: rs-foil 6s ease-in-out infinite;
}
@keyframes rs-foil {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.rs-h-line2 em::before,
.rs-h-line2 em::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, #E8C677 40%, #E8C677 60%, transparent);
  opacity: 0.65;
}
.rs-h-line2 em::before { right: 100%; margin-right: 10px; }
.rs-h-line2 em::after  { left: 100%;  margin-left: 10px;  }
/* Animated golden sheen sweeping across the headline */
.rs-headline::before {
  content: "";
  position: absolute;
  inset: -4px -10px;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 240, 200, 0.35) 50%,
    transparent 62%,
    transparent 100%
  );
  background-size: 250% 100%;
  background-position: -50% 0;
  -webkit-mask: linear-gradient(#000, #000);
          mask: linear-gradient(#000, #000);
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: rs-sheen 7s ease-in-out infinite;
}
@keyframes rs-sheen {
  0%, 100% { background-position: -50% 0; }
  50%      { background-position: 150% 0; }
}
/* Decorative under-flourish below "with Karni" */
.rs-h-flourish {
  display: block;
  width: clamp(180px, 22vw, 260px);
  height: 12px;
  margin: 4px auto 0;
  color: #E8C677;
  opacity: 0.85;
  filter: drop-shadow(0 0 4px rgba(232, 198, 119, 0.5));
}
.rs-h-flourish svg { width: 100%; height: 100%; display: block; }

/* --- 30 YEARS golden medallion seal · sits on top-right corner, fully visible --- */
.rs-medallion {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: auto; height: auto;
  pointer-events: none;
  z-index: 5;
  transform: rotate(3deg);
  filter:
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 16px rgba(232, 198, 119, 0.3));
  animation: rs-med-tilt 5s ease-in-out infinite;
}
.rs-seal-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
@keyframes rs-med-tilt {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(-1deg) translateY(-1px); }
}
.rs-med-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #FBE6A4 0%, #E8C677 25%, #C99A35 55%, #8C6A1F 95%);
  box-shadow:
    0 0 0 2px #5a1d36,
    0 0 0 3px #E8C677,
    inset 0 0 0 2px rgba(74, 19, 48, 0.55),
    inset 0 0 0 3px rgba(232, 198, 119, 0.55),
    inset 0 -4px 14px rgba(74, 19, 48, 0.45),
    inset 0 4px 10px rgba(255, 240, 200, 0.45);
}
.rs-med-ring::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(74, 19, 48, 0.55);
}
.rs-med-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FBE6A4 0%, #D4A24A 70%, #B07F2A 100%);
  box-shadow:
    inset 0 0 0 1px rgba(74, 19, 48, 0.4),
    inset 0 2px 6px rgba(255, 240, 200, 0.55),
    inset 0 -2px 6px rgba(74, 19, 48, 0.35);
}
.rs-med-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  z-index: 2;
  color: #4a1330;
  font-family: 'Cormorant Garamond', serif;
}
.rs-med-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #4a1330;
  margin-bottom: 2px;
  opacity: 0.85;
}
.rs-med-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  line-height: 0.9;
  color: #4a1330;
  text-shadow:
    0 1px 0 rgba(255, 240, 200, 0.85),
    0 -1px 0 rgba(74, 19, 48, 0.25);
  letter-spacing: -0.02em;
}
.rs-med-label {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #4a1330;
  margin-bottom: 1px;
}
/* Arc text wrapping around the medallion */
.rs-med-arc {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  z-index: 3;
  pointer-events: none;
}
.rs-med-arc-text {
  font-family: 'Manrope', sans-serif;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  fill: #4a1330;
}

/* --- Scalloped Trust Seal Ribbons --- */
.rs-seal-ribbons {
  position: absolute;
  top: 74%;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 58px;
  z-index: -1;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}
.rs-seal-ribbon {
  width: 26px;
  height: 56px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 82%, 0% 100%);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.rs-ribbon-left {
  background: 
    linear-gradient(90deg, #8b1834 0%, #8b1834 25%, #D4A24A 32%, #FFF1C2 50%, #D4A24A 68%, #8b1834 75%, #8b1834 100%);
  transform: rotate(-15deg) translate(4px, -6px);
}
.rs-ribbon-right {
  background: 
    linear-gradient(90deg, #8b1834 0%, #8b1834 25%, #D4A24A 32%, #FFF1C2 50%, #D4A24A 68%, #8b1834 75%, #8b1834 100%);
  transform: rotate(15deg) translate(-4px, -6px);
}

/* --- Scalloped Rosette SVG Trust Seal --- */
.rs-seal-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.rs-seal-cog {
  transform-origin: center;
  transition: transform 0.5s ease;
}
.rs-seal-text {
  font-family: 'Manrope', sans-serif;
  font-size: 7.8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rs-subhead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-top: 4px;
  text-align: left;
  align-self: flex-start;
}
.rs-sub-main {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(13px, 1.05vw, 16px);
  letter-spacing: 0.07em; /* Compact, premium tracking */
  text-transform: uppercase;
  color: #E8C677;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.rs-sub-since {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(11px, 0.95vw, 14px);
  letter-spacing: 0.06em;
  color: rgba(245, 239, 227, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.rs-subhead .rs-dot { display: none; }

/* --- RIGHT: Ratings + Director (single row, ratings first) --- */
.rs-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.rs-ratings {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.rs-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 8px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(212, 162, 74, 0.65);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #1A1814;
  text-decoration: none;
  box-shadow: 0 3px 8px -6px rgba(0, 0, 0, 0.4);
  transition: transform .2s var(--ease-out), box-shadow .2s, border-color .2s;
}
.rs-rating:hover {
  transform: translateY(-1px);
  border-color: #E8C677;
  box-shadow: 0 5px 12px -6px rgba(0, 0, 0, 0.55);
}
.rs-rating .brand-icon { flex-shrink: 0; width: 18px; height: 18px; }
.rs-rating-body {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.rs-rating-body strong {
  font-weight: 800;
  font-size: 17px;
  color: #1A1814;
  letter-spacing: -0.005em;
}
.rs-rating-body .rs-stars { color: #E8A11A; font-size: 12px; letter-spacing: -0.5px; }
.rs-rating-body small { color: #5b5246; font-size: 10px; letter-spacing: 0.04em; font-weight: 600; }

.rs-director {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #F5EFE3;
  flex-shrink: 0;
}
.rs-dir-frame {
  display: inline-block;
  padding: 3px;
  background: linear-gradient(135deg, #E8C677, #D4A24A 50%, #B07F2A);
  border-radius: 6px;
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.55);
  transition: transform .25s var(--ease-out);
}
.rs-director:hover .rs-dir-frame { transform: translateY(-2px); }
.rs-dir-frame img {
  width: auto; height: auto;
  border-radius: 4px;
  display: block;
}
.rs-dir-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 4px;
}
.rs-dir-meta strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  color: #F5EFE3;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.rs-dir-tag {
  background: #E8C677;
  color: #4a1330;
  padding: 2px 9px;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  border-radius: 2px;
}

/* CSS recreation of "Popular India Vacations Pvt. Ltd." logo (fallback if no image) */
.pdf-since {
  background: transparent;
  color: #C0392B;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 2px;
}
.pdf-brand {
  font-family: 'Allura', cursive;
  font-size: 38px;
  color: #002366;
  line-height: 0.85;
  white-space: nowrap;
}
.pdf-popular, .pdf-india { color: #002366; }
.pdf-india::before { content: " "; }
.pdf-subname {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #1d72b8;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 4px;
  text-align: center;
}

/* PDF-style horizontal nav strip below the royal strip — sticky on scroll */
.pdf-nav {
  background: linear-gradient(180deg, #4a1330 0%, #3d0e22 100%);
  border-top: 1px solid rgba(212, 162, 74, 0.3);
  border-bottom: 1px solid rgba(212, 162, 74, 0.45);
  position: sticky;
  top: 0;
  z-index: 101;
  transition: box-shadow .25s, background .3s, color .25s;
}
.pdf-nav.shrunk {
  box-shadow: 0 4px 18px -10px rgba(0,0,0,0.35);
  background: rgba(74, 19, 48, 0.98);
}
body.header-tint .pdf-nav.shrunk {
  background: var(--hero-tint-strong, rgba(74, 19, 48, 0.98));
}
.pdf-nav.shrunk .pdf-nav-links a {
  color: #F5EFE3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.pdf-nav.stuck { box-shadow: 0 6px 22px -12px rgba(0,0,0,0.4); }
.pdf-nav-inner {
  padding: 0 clamp(16px, 3vw, 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.pdf-nav-links {
  list-style: none;
  display: flex;
  gap: clamp(4px, 0.6vw, 10px);
  padding: 6px 0;
  margin: 0;
  align-items: center;
}
.pdf-nav-links li { position: relative; }
.pdf-nav-links a {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
  position: relative;
  padding: 5px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  transition: color .2s, background .2s, border-color .2s, backdrop-filter .2s;
  text-decoration: none;
  white-space: nowrap;
}
.pdf-nav-links a:hover,
.pdf-nav-links a.is-active,
.pdf-nav.shrunk .pdf-nav-links a:hover,
.pdf-nav.shrunk .pdf-nav-links a.is-active {
  color: rgba(245, 239, 227, 0.95);
  border-color: rgba(245, 239, 227, 0.35);
  background: rgba(26, 24, 20, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}
.pdf-nav-links a.enquiry-link,
.pdf-nav.shrunk .pdf-nav-links a.enquiry-link {
  background: var(--terracotta);
  color: #ffffff;
  border-color: var(--terracotta);
  text-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.pdf-nav-links a.enquiry-link:hover,
.pdf-nav-links a.enquiry-link.is-active,
.pdf-nav.shrunk .pdf-nav-links a.enquiry-link:hover,
.pdf-nav.shrunk .pdf-nav-links a.enquiry-link.is-active {
  background: var(--terracotta-d);
  color: #ffffff;
  border-color: var(--terracotta-d);
  text-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.pdf-nav-links .has-dropdown .caret {
  font-size: 9px;
  margin-left: 2px;
  display: inline-block;
  transition: transform .2s;
}
.pdf-nav-links .has-dropdown:hover .caret { transform: rotate(180deg); }

.pdf-submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: linear-gradient(180deg, #5a1d36 0%, #4a1330 100%);
  border: 1px solid rgba(232, 198, 119, 0.40);
  border-radius: 8px;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.55);
  padding: 6px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 70;
}
.pdf-submenu::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}
.pdf-nav-links .has-dropdown:hover .pdf-submenu,
.pdf-nav-links .has-dropdown:focus-within .pdf-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.pdf-submenu li { display: block; border-bottom: 1px solid rgba(212, 162, 74, 0.35); }
.pdf-submenu li:last-child { border-bottom: 0; }
.pdf-submenu a {
  display: block;
  padding: 10px 18px;
  font-family: 'Inter', 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #F5EFE3;
  text-decoration: none;
  text-shadow: none;
  border: 0;
  background: transparent;
  transition: background .15s, color .15s, padding .15s;
  white-space: normal;
  line-height: 1.35;
}
.pdf-submenu a::after { display: none; }
.pdf-submenu a:hover {
  background: rgba(232, 198, 119, 0.14);
  color: #FFE9A8;
  padding-left: 22px;
}

/* --- Itineraries dropdown — compact list, maroon background matches header --- */
.pdf-itin-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  max-height: 70vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #5a1d36 0%, #4a1330 100%);
  border: 1px solid rgba(232, 198, 119, 0.40);
  border-radius: 8px;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.55);
  padding: 6px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 70;
}
.pdf-itin-menu::before {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}
.pdf-nav-links .has-itin-menu:hover .pdf-itin-menu,
.pdf-nav-links .has-itin-menu:focus-within .pdf-itin-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.pdf-itin-menu::-webkit-scrollbar { width: 6px; }
.pdf-itin-menu::-webkit-scrollbar-thumb { background: rgba(232, 198, 119, 0.35); border-radius: 999px; }
.pdf-itin-menu li { display: block; border-bottom: 1px solid rgba(212, 162, 74, 0.35); }
.pdf-itin-menu li:last-child { border-bottom: 0; }
.pdf-itin-menu a {
  display: block;
  padding: 10px 18px;
  font-family: 'Inter', 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #F5EFE3;
  text-decoration: none;
  text-shadow: none;
  border: 0;
  background: transparent;
  transition: background .15s, color .15s, padding .15s;
  white-space: normal;
  line-height: 1.35;
}
.pdf-itin-menu a:hover {
  background: rgba(232, 198, 119, 0.14);
  color: #FFE9A8;
  padding-left: 22px;
}
.pdf-itin-menu a::after { display: none; }
.pdf-itin-menu .pim-divider {
  height: 1px;
  margin: 6px 14px;
  background: rgba(232, 198, 119, 0.25);
}
.pdf-itin-menu .pim-all a {
  font-weight: 700;
  color: #E8C677;
  letter-spacing: 0.04em;
}
.pdf-itin-menu .pim-all a:hover { color: #FFE9A8; }

@media (max-width: 760px) {
  .pdf-itin-menu {
    position: static;
    transform: none;
    min-width: 0;
    max-height: none;
    box-shadow: none;
    border-radius: 0;
    border: 0;
  }
}

.pdf-menu-toggle {
  display: none;
  padding: 10px;
  position: absolute;
  left: 16px;
}

@media (max-width: 1180px) {
  .rs-subhead { letter-spacing: 0.22em; gap: 6px; }
  .rs-rating-body small { display: none; }
  .rs-medallion { width: 100px; height: auto; top: auto; right: auto; bottom: auto; }
  .rs-seal-img { width: 100%; height: auto; }
  .rs-med-num { font-size: 26px; }
  .rs-med-eyebrow { font-size: 6.5px; }
  .rs-med-label { font-size: 7.5px; }
}
@media (max-width: 980px) {
  .royal-strip-inner { flex-wrap: wrap; row-gap: 14px; justify-content: center; }
  .royal-strip { min-height: 0; padding: 14px 0 18px; }
  .rs-frame { order: 3; width: 100%; max-width: 100%; margin: 0; }
  .rs-logo-card { order: 1; }
  .rs-right { order: 2; }
  .rs-director .rs-dir-meta { display: none; }
}
@media (max-width: 760px) {
  .royal-topbar { font-size: 10px; }
  .royal-topbar-inner { flex-wrap: wrap; justify-content: center; gap: 6px 14px; }
  .rs-headline { font-size: clamp(24px, 7vw, 32px); }
  .rs-subhead { font-size: 10px; letter-spacing: 0.16em; }
  .rs-rating { padding: 4px 8px 4px 6px; }
  .rs-rating-body small { display: none; }
  .rs-medallion { width: 80px; height: auto; top: auto; right: auto; bottom: auto; }
  .rs-seal-img { width: 100%; height: auto; }
  .rs-med-num { font-size: 22px; }
  .pdf-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #4a1330;
    flex-direction: column;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(212, 162, 74, 0.4);
    align-items: stretch;
    gap: 0;
  }
  .pdf-nav-links.open { display: flex; }
  .pdf-nav-links li { width: 100%; }
  .pdf-nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 162, 74, 0.15);
    display: block;
    color: #F5EFE3;
  }
  .pdf-submenu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
  .pdf-submenu a { color: #F5EFE3; }
  .pdf-menu-toggle { display: inline-flex; color: #F5EFE3; }
  .pdf-nav-inner { justify-content: flex-end; padding: 8px 16px; min-height: 48px; }
  .pdf-brand { font-size: 32px; }
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.util-bar {
  background: var(--ink); color: var(--paper-3);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 60;
}
.util-inner {
  max-width: none; margin: 0 auto;
  padding: 9px clamp(24px, 3vw, 72px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.util-left, .util-right { display: flex; align-items: center; gap: 22px; }
.util-bar a { display: inline-flex; align-items: center; gap: 7px; opacity: .85; transition: opacity .2s; }
.util-bar a:hover { opacity: 1; color: var(--gold-soft); }
.util-bar svg { width: 13px; height: 13px; }
.ratings-mini {
  display: inline-flex; align-items: center; gap: 14px;
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.rating-mini {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600;
  color: rgba(245,239,227,0.92);
  transition: color .2s, opacity .2s;
}
.rating-mini:hover { color: var(--gold-soft); }
.rating-mini .stars  { color: var(--gold-soft); font-size: 11px; letter-spacing: -1px; }
.rating-mini .brand-icon { display: inline-block; flex-shrink: 0; }

/* Larger rating chips used on the homepage Reviews section header */
.rating-chips { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.rating-chip {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px;
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  transition: border-color .25s, transform .25s var(--ease-out), box-shadow .25s;
}
.rating-chip:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -12px rgba(40,28,16,.25);
}
.rating-chip strong { font-weight: 700; }
.rating-chip .brand-icon { flex-shrink: 0; }
.lang-switch {
  display: inline-flex; gap: 6px; padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.lang-switch a {
  padding: 2px 6px; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; opacity: .55;
}
.lang-switch a.active { opacity: 1; color: var(--gold-soft); font-weight: 700; }
.util-socials { display: inline-flex; gap: 12px; }
.util-socials a {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
}
.util-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ============================================================
   MAIN HEADER
   ============================================================ */
.main-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 239, 227, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: padding .3s var(--ease-soft), background .3s;
}
.main-header.shrunk {
  background: rgba(245, 239, 227, 0.97);
  box-shadow: 0 6px 24px -16px rgba(40,28,16,.25);
}
.header-inner {
  max-width: none; margin: 0 auto;
  padding: 18px clamp(24px, 3vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: clamp(20px, 3vw, 56px);
  transition: padding .3s var(--ease-soft);
}
.main-header.shrunk .header-inner { padding: 12px clamp(24px, 3vw, 72px); }

.logo { display: inline-flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--ink); color: var(--paper-3);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
  transition: transform .4s var(--ease-out);
}
.logo-mark::before {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid var(--gold-soft); border-radius: 50%;
  opacity: .55;
}
.logo-mark span {
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 22px; font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.logo:hover .logo-mark { transform: rotate(-8deg); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-line1 {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.01em; color: var(--ink);
}
.logo-line1 em {
  font-style: italic; color: var(--terracotta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.logo-line2 {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 600;
  color: var(--ink-soft); margin-top: 5px;
}

/* Rajasthani vintage-poster wordmark — three-line stacked tagline */
.logo-rajasthani {
  font-family: 'Rye', 'Fraunces', Georgia, serif;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.05;
  gap: 3px;
  letter-spacing: 0.01em;
  text-shadow: 1px 1px 0 rgba(245,239,227,0.6);
}
.logo-rajasthani .logo-tag-1 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--teal);
}
.logo-rajasthani .logo-tag-2 {
  font-size: 10.5px;
  color: var(--terracotta-d);
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.logo-rajasthani .logo-tag-3 {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-top: 3px;
}
footer.site-footer .logo-rajasthani { text-shadow: none; }
footer.site-footer .logo-rajasthani .logo-tag-1 { color: var(--gold-soft); }
footer.site-footer .logo-rajasthani .logo-tag-2 { color: rgba(245,239,227,0.78); }
footer.site-footer .logo-rajasthani .logo-tag-3 { color: rgba(245,239,227,0.55); }
@media (max-width: 980px) {
  .logo-rajasthani .logo-tag-1 { font-size: 16px; }
  .logo-rajasthani .logo-tag-2 { font-size: 9.5px; }
  .logo-rajasthani .logo-tag-3 { font-size: 9px; }
}
@media (max-width: 640px) {
  .logo-rajasthani .logo-tag-2,
  .logo-rajasthani .logo-tag-3 { display: none; }
}

.primary-nav {
  display: flex; justify-content: center; gap: clamp(18px, 2.4vw, 36px);
}
.primary-nav a {
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  position: relative; padding: 8px 0;
  transition: color .2s;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--terracotta);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.primary-nav a:hover, .primary-nav a.is-active { color: var(--terracotta); }
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
.primary-nav a .nav-num {
  font-family: 'Fraunces', serif; font-size: 9px;
  font-style: italic; vertical-align: top;
  margin-right: 3px; color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--ink); color: var(--paper-3);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  transition: background .25s, transform .25s var(--ease-out);
  position: relative; overflow: hidden;
}
.cta-pill::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, var(--terracotta), var(--gold));
  transform: translateY(101%); transition: transform .35s var(--ease-out);
}
.cta-pill span { position: relative; z-index: 1; }
.cta-pill:hover::before { transform: translateY(0); }
.cta-pill:hover { transform: translateY(-1px); }
.cta-pill .arrow { transition: transform .25s; position: relative; z-index: 1; }
.cta-pill:hover .arrow { transform: translateX(3px); }

.menu-toggle { display: none; }
@media (max-width: 980px) {
  .primary-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper-3);
    flex-direction: column; gap: 0;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .menu-toggle { display: inline-flex; align-items: center; gap: 6px; padding: 10px; }
  .util-bar { font-size: 12px; }
  .util-left .hide-sm { display: none; }
  .lang-switch { padding: 0 10px; }
}
@media (max-width: 640px) {
  .util-left a:not(:first-child) { display: none; }
  .ratings-mini, .lang-switch { display: none; }
  .logo-line2 { display: none; }
  .logo-line1 { font-size: 20px; }
}

/* ============================================================
   HEADER v2 (hot pink + travel motifs) lives in a separate
   stylesheet at public/css/header-pink.css. It's conditionally
   loaded by app/Views/partials/head.php based on the active theme.
   This file keeps only the original v1 (maroon) styling.
   ============================================================ */

/* Hide the travel-motif decoration band by default — only the pink theme reveals it */
.rs-decor { display: none; }

/* ============================================================
   HERO (homepage + page hero variant)
   ============================================================ */
.hero {
  position: relative; min-height: 78vh;
  overflow: hidden;
  display: flex; align-items: center;
  color: var(--paper-3); isolation: isolate;
  padding-top: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  will-change: transform; z-index: -2;
}
.hero-bg.hero-zoom {
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.15) translateY(-2%); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    /* Soft top + bottom darken so text reads, but photo dominates */
    linear-gradient(180deg, rgba(26,24,20,0.30) 0%, rgba(26,24,20,0.05) 30%, rgba(26,24,20,0.45) 100%),
    /* Stronger fade on the left where text sits, clear on the right where the photo shines */
    linear-gradient(90deg, rgba(26,24,20,0.55) 0%, rgba(26,24,20,0.25) 35%, rgba(26,24,20,0) 60%);
  z-index: 1;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero mode layers — only the active one shows */
.hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 30%;
  display: none;
  z-index: 0;
}
.hero[data-hero-mode="static"] .hero-layer-static { display: block; }
.hero[data-hero-mode="slides"] .hero-layer-slides { display: block; }
.hero[data-hero-mode="video"]  .hero-layer-video  { display: block; }

/* ============================================================
   CINEMATIC HERO TRANSITIONS — Butter-Smooth Ken-Burns
   Uses GPU-accelerated opacity fades and subtle transform zooms
   for maximum 60fps/120fps fluid performance without lag.
   ============================================================ */
/* Horizontal carousel slide — no fade, no zoom, no blur.
   Default state: off-screen to the right.
   Active: centered.
   Prev (just left active): off-screen to the left.
   Each transition is a clean lateral slide. */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  opacity: 1;
  transform: translate3d(100%, 0, 0);
  z-index: 1;
  transition: transform 0.7s ease-in-out;
  will-change: transform;
}
.hero-slide.active { transform: translate3d(0, 0, 0); z-index: 2; }
.hero-slide.prev   { transform: translate3d(-100%, 0, 0); z-index: 1; transition: transform 0.7s ease-in-out; }

/* Hero text fade — applied while text content is being swapped */
.hero-title, .hero-sub {
  transition: opacity .45s ease, transform .45s ease;
}
.hero-title.hero-fade-out,
.hero-sub.hero-fade-out {
  opacity: 0;
  transform: translateY(10px);
}

/* Demo switcher — hidden by default, shown when body has .demo-mode */
.hero-switcher { display: none; }
body.demo-mode .hero-switcher {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  max-width: 480px;
  padding: 10px 14px;
  background: rgba(26, 24, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
  font-family: 'Manrope', sans-serif;
}
.hero-switcher .hsl-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px 2px 4px;
  margin-left: 4px;
}
.hero-switcher .hsl-close:hover { color: #fff; }
.hero-switcher .hsl-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 4px;
}
.hero-switcher .hsl-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
}
.hero-switcher button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 5px 11px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: inherit;
  transition: all .2s ease;
}
.hero-switcher button:hover { background: rgba(255, 255, 255, 0.12); }
.hero-switcher button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.hero-switcher .hsl-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-switcher .hsl-browse-container {
  display: none;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 10px;
  margin-top: 2px;
}

/* Show browse sections depending on selected mode */
.hero-switcher[data-active-mode="slides"] #hslBrowseSlides {
  display: flex;
}
.hero-switcher[data-active-mode="video"] #hslBrowseVideos {
  display: flex;
}

.hero-switcher .hsl-browse-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.hero-switcher button.hsl-browse-btn {
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.7;
  border-color: rgba(255, 255, 255, 0.15);
  text-transform: capitalize;
}

.hero-switcher button.hsl-browse-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.hero-switcher button.hsl-browse-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--paper-1);
  opacity: 1;
  font-weight: 700;
}

.hero-content {
  max-width: 600px;
  margin: 0;
  width: 100%;
  padding: 60px clamp(20px, 4vw, 48px) 90px;
  position: relative;
  text-align: left;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.20em;
  text-transform: uppercase; font-weight: 600;
  color: rgba(245,239,227,0.95);
  padding: 6px 14px;
  border: 1px solid rgba(245,239,227,0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(26,24,20,0.18);
}
.hero-eyebrow .eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(212,162,74,0.25);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(212,162,74,0.25); }
  50%     { box-shadow: 0 0 0 8px rgba(212,162,74,0.05); }
}
.hero-title {
  margin-top: 18px;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1.08;
  font-weight: 400;
  max-width: 20ch;
  color: var(--paper-3);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}
.hero-title em { color: var(--gold-soft); }
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.2s var(--ease-out) forwards;
}
.reveal-line:nth-child(1) > span { animation-delay: 0.15s; }
.reveal-line:nth-child(2) > span { animation-delay: 0.35s; }
.reveal-line:nth-child(3) > span { animation-delay: 0.55s; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero-sub {
  margin-top: 18px; max-width: 44ch;
  font-size: clamp(13px, 0.95vw, 15px);
  color: rgba(245,239,227,0.92);
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeIn 0.9s var(--ease-out) 0.85s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-actions {
  margin-top: 26px;
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.9s var(--ease-out) 1.05s forwards;
}
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 999px;
  transition: all .3s var(--ease-out);
}
.btn-primary { background: var(--paper-3); color: var(--ink); }
.btn-primary:hover {
  background: var(--gold); transform: translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(212,162,74,.5);
}
.btn-ghost { color: var(--paper-3); border: 1px solid rgba(245,239,227,0.45); }
.btn-ghost:hover { background: rgba(245,239,227,0.12); border-color: var(--paper-3); }
.btn-ghost.dark { color: var(--ink); border-color: var(--line); padding: 14px 22px; }
.btn-ghost.dark:hover { background: var(--paper-2); border-color: var(--ink); }

.hero-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px clamp(20px, 4vw, 48px);
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(245,239,227,0.18);
  backdrop-filter: blur(4px);
  background: linear-gradient(180deg, transparent, rgba(26,24,20,0.35));
  flex-wrap: wrap; gap: 18px;
  opacity: 0;
  animation: fadeIn 0.9s var(--ease-out) 1.25s forwards;
}
.hero-meta-item {
  font-size: 13px; letter-spacing: 0.04em;
  color: rgba(245,239,227,0.85);
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-meta-item strong {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  color: var(--gold-soft); font-size: 22px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.scroll-cue {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.7);
}
.scroll-cue .scroll-line {
  width: 36px; height: 1px;
  background: rgba(245,239,227,0.4); position: relative; overflow: hidden;
}
.scroll-cue .scroll-line::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 40%;
  background: var(--gold-soft);
  animation: scrollLine 2.4s infinite var(--ease-out);
}
@keyframes scrollLine { 0% { left: -40%; } 100% { left: 100%; } }

/* Page hero (compact) for inner pages */
.page-hero {
  position: relative; min-height: 56vh;
  display: flex; align-items: flex-end;
  color: var(--paper-3); overflow: hidden;
  isolation: isolate;
}
.page-hero .hero-bg { inset: 0; }
.page-hero .hero-content { padding: 80px clamp(20px, 4vw, 48px) 56px; }
.page-hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.8rem); max-width: 22ch; }
.page-hero .breadcrumb {
  margin-bottom: 26px;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(245,239,227,0.7);
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: rgba(245,239,227,0.85); }
.page-hero .breadcrumb a:hover { color: var(--gold-soft); }
.page-hero .breadcrumb .sep { opacity: .5; }

/* ============================================================
   TRUST STRIP / AFFILIATIONS
   ============================================================ */
.trust-strip {
  background: var(--ink); color: var(--paper-3);
  padding: 28px 0; position: relative; overflow: hidden;
}
.trust-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.trust-label {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold-soft); flex-shrink: 0;
}
.trust-marquee {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust-track {
  display: inline-flex; gap: 56px; align-items: center;
  animation: marquee 32s linear infinite;
  padding-left: 56px; white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 18px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: rgba(245,239,227,0.92);
  display: inline-flex; align-items: center; gap: 14px;
}
.trust-item .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-soft);
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section.block {
  padding: clamp(72px, 9vw, 128px) 0;
  position: relative;
}
.block.tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { max-width: 880px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .section-sub {
  margin-top: 22px; max-width: 60ch;
  font-size: clamp(15px, 1.05vw, 17px);
  color: var(--ink-soft);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.row {
  max-width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.section-head.row > div:first-child { max-width: 720px; }

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .60s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .65s; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--paper-3); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-copy h2 { margin: 16px 0 24px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; max-width: 56ch; }
.about-copy ul {
  list-style: none; margin: 22px 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.about-copy ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--ink-soft);
}
.about-copy ul li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background-image: linear-gradient(135deg, var(--gold), var(--terracotta));
  margin-top: 2px;
}
.about-image {
  position: relative; aspect-ratio: 4/5;
  border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image .badge {
  position: absolute; top: 22px; left: 22px;
  background: var(--paper-3); color: var(--ink);
  padding: 10px 16px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 700;
}

/* ============================================================
   RAJASTHAN SOUL (homepage feature)
   ============================================================ */
.rajasthan-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  position: relative;
  overflow: hidden;
}
.rajasthan-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(184,91,61,0.10), transparent 35%),
    radial-gradient(circle at 92% 88%, rgba(201,150,46,0.10), transparent 35%);
  pointer-events: none;
}
.rajasthan-section .section-head h2 .display-tag {
  font-family: 'Rye', serif;
  font-size: 0.55em;
  letter-spacing: 0.02em;
  color: var(--teal);
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  margin-right: 6px;
  font-style: normal;
  font-weight: 400;
}
.rajasthan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .rajasthan-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .rajasthan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .rajasthan-grid { grid-template-columns: 1fr; } }
.rajasthan-card {
  position: relative;
  aspect-ratio: 3/5;
  overflow: hidden;
  border-radius: 4px;
  isolation: isolate;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.rajasthan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.rajasthan-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter .8s;
  filter: saturate(1.05) contrast(1.05);
}
.rajasthan-card:hover img { transform: scale(1.08); }
.rajasthan-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,24,20,0.05) 30%, rgba(26,24,20,0.92));
  z-index: 1;
}
.rajasthan-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 20px;
  color: var(--paper-3);
}
.rajasthan-content .raj-eyebrow {
  font-family: 'Rye', serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-block;
  margin-bottom: 10px;
}
.rajasthan-content h4 {
  font-size: 1.4rem;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--paper-3);
}
.rajasthan-content h4 em { color: var(--gold-soft); }
.rajasthan-content p {
  font-size: 12.5px;
  color: rgba(245,239,227,0.86);
  line-height: 1.6;
}
.rajasthan-tagline {
  margin-top: 56px;
  text-align: center;
  font-family: 'Rye', serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  font-size: clamp(13px, 1.6vw, 18px);
}
.rajasthan-tagline span { color: var(--teal); }
.rajasthan-tagline::before,
.rajasthan-tagline::after {
  content: "✦"; color: var(--gold);
  margin: 0 14px; font-size: 0.8em; vertical-align: middle;
}

/* ============================================================
   FEATURED ITINERARIES
   ============================================================ */
.itin-section { background: var(--paper); }
.itin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}
.itin-card {
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  position: relative;
}
.itin-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pop);
}
.itin-image { position: relative; height: 280px; overflow: hidden; }
.itin-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.itin-card:hover .itin-image img { transform: scale(1.06); }
.itin-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,24,20,0.55));
  pointer-events: none;
}
.itin-badge {
  position: absolute; top: 18px; left: 18px;
  padding: 7px 13px;
  background: rgba(245,239,227,0.95);
  color: var(--ink);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px; z-index: 2;
}
.itin-badge.teal { background: var(--teal); color: var(--paper-3); }
.itin-badge.sage { background: var(--sage); color: var(--paper-3); }
.itin-badge.gold { background: var(--gold); color: var(--ink); }

.itin-duration {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  color: var(--paper-3);
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 22px; font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
}
.itin-duration .nights {
  font-size:11px; letter-spacing:.1em; color:rgba(245,239,227,.75);
  font-style:normal; font-family:Manrope; font-weight:600; text-transform:uppercase;
}
.itin-price {
  font-family: 'Manrope', sans-serif;
  font-style: normal; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: rgba(245,239,227,0.85);
  text-align: right;
}
.itin-price strong {
  display: block; font-size: 20px; font-style: italic;
  font-family: 'Fraunces', serif; color: var(--gold-soft);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.itin-content { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
.itin-title { margin-bottom: 12px; font-size: 1.5rem; }
.itin-desc {
  color: var(--ink-soft); font-size: 14px; line-height: 1.6;
  margin-bottom: 22px; flex: 1;
}
.itin-monuments-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--terracotta-d);
  margin-bottom: 10px;
}
.itin-monuments {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px;
}
.pill {
  display: inline-flex; align-items: center;
  padding: 5px 11px;
  background: var(--paper-2);
  color: var(--ink); font-size: 11px;
  font-weight: 600; letter-spacing: 0.02em;
  border-radius: 3px;
}
.pill.muted { color: var(--ink-soft); background: transparent;
  border: 1px dashed var(--line); }

.itin-map {
  margin-top: auto; padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.route-svg { flex: 1; height: 28px; }
.route-svg .route-line {
  fill: none; stroke: var(--terracotta);
  stroke-width: 1.4; stroke-dasharray: 3 3;
}
.route-svg .route-dot { fill: var(--terracotta); }
.route-svg .route-dot-active { fill: var(--gold); stroke: var(--terracotta-d); stroke-width: 1.5; }
.route-cities {
  display: flex; gap: 10px; font-size: 11px; font-weight: 600;
  color: var(--ink-soft); letter-spacing: 0.04em;
}
.route-cities span:not(:last-child)::after { content: " ·"; margin-left: 6px; color: var(--gold); }
.itin-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding-top: 14px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink);
  border-top: 1px solid var(--line-soft);
  transition: gap .25s, color .25s;
}
.itin-cta:hover { gap: 14px; color: var(--terracotta); }

.itin-card.bespoke {
  background: linear-gradient(160deg, var(--terracotta) 0%, var(--terracotta-d) 100%);
  color: var(--paper-3);
}
.itin-card.bespoke .itin-content { padding: 40px 32px; }
.itin-card.bespoke h3 { color: var(--paper-3); font-size: 2.2rem; margin-bottom: 18px; }
.itin-card.bespoke p { color: rgba(245,239,227,.85); margin-bottom: 28px; }
.itin-card.bespoke ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  font-size: 13px; color: rgba(245,239,227,0.85); margin-bottom: 28px;
}
.itin-card.bespoke ul li::before { content: "—"; margin-right: 10px; color: var(--gold-soft); }
.itin-card.bespoke .itin-cta {
  background: var(--paper-3); color: var(--ink);
  border-radius: 999px; align-self: flex-start;
  padding: 14px 22px; border: 0;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-section {
  background: var(--ink); color: var(--paper-3);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.why-section .section-head h2 { color: var(--paper-3); }
.why-section .section-head h2 em { color: var(--gold-soft); }
.why-section .section-sub { color: rgba(245,239,227,0.7); }
.why-section .eyebrow { color: var(--gold-soft); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(245,239,227,0.18);
}
.stat {
  padding: 36px 28px;
  border-right: 1px solid rgba(245,239,227,0.18);
  border-bottom: 1px solid rgba(245,239,227,0.18);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 300; line-height: 0.95;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--gold-soft);
  display: flex; align-items: baseline; gap: 4px;
}
.stat-num em {
  font-size: 0.55em; color: var(--paper-3);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.stat-label {
  margin-top: 14px;
  font-size: 13px; letter-spacing: 0.06em;
  color: rgba(245,239,227,0.78);
  line-height: 1.5;
}
.why-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}
.why-item { padding-right: 12px; }
.why-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.why-item h4 { margin-bottom: 10px; color: var(--paper-3); }
.why-item p {
  font-size: 14px; color: rgba(245,239,227,0.7); line-height: 1.65;
}

/* ============================================================
   DESTINATIONS (tabbed magazine grid)
   ============================================================ */
.dest-section { background: var(--paper); }
.dest-tabs {
  display: inline-flex; gap: 4px;
  background: var(--paper-2);
  padding: 5px;
  border-radius: 999px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.dest-tab {
  padding: 10px 20px;
  font-size: 13px; font-weight: 600;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all .25s var(--ease-out);
  cursor: pointer;
}
.dest-tab.active { background: var(--ink); color: var(--paper-3); }
.dest-tab:hover:not(.active) { color: var(--ink); background: rgba(255,255,255,0.5); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.dest-card {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 4/5; cursor: pointer; isolation: isolate;
  display: block;
}
.dest-card.wide { aspect-ratio: 16/10; }
.dest-card.tall { aspect-ratio: 4/6; }
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.dest-card:hover img { transform: scale(1.07); }
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,24,20,0.85));
  z-index: 1;
}
.dest-card-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 26px;
  color: var(--paper-3);
}
.dest-card-pkg {
  display: inline-block;
  padding: 5px 11px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border-radius: 3px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.dest-card h3 {
  font-size: 1.6rem; font-weight: 400;
  color: var(--paper-3); margin-bottom: 6px;
}
.dest-card-sub {
  font-size: 13px; color: rgba(245,239,227,0.78); line-height: 1.5;
}
.dest-card-arrow {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,239,227,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper-3);
  transition: all .3s var(--ease-out);
  transform: translate(8px, -8px); opacity: 0;
}
.dest-card:hover .dest-card-arrow {
  transform: none; opacity: 1;
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}
.dest-grid > .dest-card:nth-child(6n+1) { grid-column: span 4; }
.dest-grid > .dest-card:nth-child(6n+2) { grid-column: span 5; }
.dest-grid > .dest-card:nth-child(6n+3) { grid-column: span 3; }
.dest-grid > .dest-card:nth-child(6n+4) { grid-column: span 3; }
.dest-grid > .dest-card:nth-child(6n+5) { grid-column: span 4; }
.dest-grid > .dest-card:nth-child(6n)   { grid-column: span 5; }
@media (max-width: 980px) { .dest-grid > .dest-card { grid-column: span 6 !important; aspect-ratio: 4/5; } }
@media (max-width: 640px) { .dest-grid > .dest-card { grid-column: span 12 !important; } }

/* Plain destination grid (for index page) */
.dest-grid-uniform {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.dest-grid-uniform .dest-card { aspect-ratio: 4/5; }

/* ============================================================
   THEMED EXPERIENCES
   ============================================================ */
.themes-section { background: var(--paper-3); }
.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.theme-card {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; border-radius: 3px; cursor: pointer;
  display: block;
}
.theme-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out), filter .8s;
  filter: saturate(0.85) brightness(0.78);
}
.theme-card:hover img { transform: scale(1.08); filter: saturate(1.1) brightness(0.88); }
.theme-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,24,20,0.7));
  z-index: 1;
}
.theme-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 24px; color: var(--paper-3);
}
.theme-content h4 {
  font-size: 1.6rem; font-weight: 400; line-height: 1.05; margin-bottom: 8px;
}
.theme-content h4 em { color: var(--gold-soft); }
.theme-content p {
  font-size: 12px; letter-spacing: 0.06em;
  color: rgba(245,239,227,0.82); line-height: 1.5;
}
.theme-num {
  position: absolute; top: 18px; right: 18px;
  font-family: 'Fraunces', serif;
  font-style: italic; color: var(--gold-soft);
  font-size: 1.2rem; z-index: 2;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ============================================================
   CAR FLEET
   ============================================================ */
.fleet-section { background: var(--paper-2); }
.fleet-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}
@media (max-width: 920px) { .fleet-layout { grid-template-columns: 1fr; gap: 40px; } }
.fleet-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 480px;
  background: var(--ink);
}
.fleet-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .8s;
}
.fleet-image img.active { opacity: 1; }
.fleet-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,24,20,0.4), transparent 60%);
}
.fleet-image-tag {
  position: absolute; bottom: 24px; left: 24px;
  padding: 9px 16px;
  background: rgba(26,24,20,0.65);
  backdrop-filter: blur(8px);
  color: var(--paper-3);
  font-size: 11px; letter-spacing: 0.18em;
  font-weight: 600; text-transform: uppercase;
  border-radius: 3px; z-index: 2;
}
.fleet-list { display: flex; flex-direction: column; }
.fleet-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px; align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: padding .3s var(--ease-out);
}
.fleet-item:last-child { border-bottom: 1px solid var(--line); }
.fleet-item:hover, .fleet-item.active { padding-left: 12px; }
.fleet-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.fleet-item.active .fleet-num { color: var(--gold); }
.fleet-info p { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
.fleet-cap {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  color: var(--ink-soft);
  text-align: right;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.fleet-cap strong {
  display: block; font-family: 'Fraunces', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--ink); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ============================================================
   WEDDING
   ============================================================ */
.wedding-section {
  background: var(--ink); color: var(--paper-3);
  padding: 0; position: relative; overflow: hidden;
  min-height: 90vh;
  display: flex; align-items: center;
}
.wedding-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55; z-index: 0;
}
.wedding-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(26,24,20,0.85) 0%, rgba(26,24,20,0.45) 50%, rgba(26,24,20,0.75) 100%);
}
.wedding-content {
  position: relative; z-index: 1;
  max-width: 720px;
  padding: 100px clamp(20px, 4vw, 48px);
}
.wedding-content .eyebrow { color: var(--gold-soft); }
.wedding-content h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin: 18px 0 24px; color: var(--paper-3);
}
.wedding-content h2 em { color: var(--gold-soft); }
.wedding-content p {
  font-size: 17px; line-height: 1.7;
  color: rgba(245,239,227,0.85);
  margin-bottom: 32px; max-width: 56ch;
}
.wedding-features {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.wedding-feature {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(245,239,227,0.78);
}
.wedding-feature svg { color: var(--gold-soft); }

/* ============================================================
   REVIEWS / TESTIMONIALS + FORM
   ============================================================ */
.reviews-section { background: var(--paper); }
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 980px) { .reviews-layout { grid-template-columns: 1fr; } }

.review-card {
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  padding: 32px 28px;
  border-radius: 4px;
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 4rem; line-height: 0.5;
  color: var(--terracotta); opacity: 0.25;
  position: absolute; top: 20px; right: 24px;
}
.review-stars { color: var(--gold); margin-bottom: 18px; letter-spacing: 2px; }
.review-text {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem; font-weight: 400;
  line-height: 1.55; margin-bottom: 24px;
  color: var(--ink);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}
.review-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--line-soft);
}
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper-2);
  color: var(--terracotta); font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.review-meta { line-height: 1.3; }
.review-name { font-weight: 700; font-size: 14px; }
.review-detail { font-size: 12px; color: var(--ink-soft); }
.review-source {
  margin-left: auto;
  font-size: 11px; font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.review-source.tripadvisor { color: #00aa6c; }
.review-source.google { color: #4285F4; }

.review-form-card {
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  padding: 36px 32px;
  border-radius: 4px;
}
.review-form-card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.review-form-card .sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700;
  color: var(--ink-soft);
}
.form-field label .req { color: var(--terracotta); margin-left: 3px; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color .25s, box-shadow .25s;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 0;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184,91,61,0.12);
}
.rating-input { display: inline-flex; gap: 4px; }
.rating-input button {
  font-size: 24px; color: var(--gold); padding: 0;
  transition: transform .15s;
}
.rating-input button:hover { transform: scale(1.15); }
.rating-input button.dim { color: var(--line); }
.btn-submit {
  width: 100%;
  padding: 14px 22px;
  background: var(--ink); color: var(--paper-3);
  border-radius: 3px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background .25s, transform .25s;
}
.btn-submit:hover { background: var(--terracotta); transform: translateY(-1px); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--paper); padding-bottom: 0; }
.gallery-strip {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  margin: 0 -50vw;
  padding: 0 50vw;
  overflow: hidden;
}
@media (max-width: 980px) { .gallery-strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  aspect-ratio: 1; position: relative;
  overflow: hidden; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out), filter .4s;
}
.gallery-item:hover img { transform: scale(1.1); filter: brightness(1.1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(26,24,20,0.0);
  transition: background .35s;
}
.gallery-item:hover::after { background: rgba(184,91,61,0.25); }

/* ============================================================
   BLOG TEASER & INDEX
   ============================================================ */
.blog-section { background: var(--paper-3); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: flex; flex-direction: column; cursor: pointer;
  transition: transform .35s var(--ease-out); }
.blog-card:hover { transform: translateY(-4px); }
.blog-image {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; border-radius: 3px;
  margin-bottom: 22px;
}
.blog-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-cat {
  display: inline-block;
  padding: 5px 11px;
  background: var(--terracotta); color: var(--paper-3);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 12px;
}
.blog-cat.teal { background: var(--teal); }
.blog-cat.gold { background: var(--gold); color: var(--ink); }
.blog-cat.sage { background: var(--sage); }
.blog-card h3 {
  font-size: 1.45rem; margin-bottom: 10px;
  line-height: 1.18; transition: color .3s;
}
.blog-card:hover h3 { color: var(--terracotta); }
.blog-meta {
  margin-top: auto;
  font-size: 12px; color: var(--ink-soft);
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 12px;
}
.blog-meta .dot { width: 3px; height: 3px; background: currentColor; border-radius: 50%; }

/* Blog post article */
.article-section { background: var(--paper-3); }
.article-layout { max-width: 760px; margin: 0 auto; }
.article-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 12px; letter-spacing: .08em; color: var(--ink-soft);
  text-transform: uppercase; font-weight: 600;
  margin: 28px 0;
}
.article-cover {
  aspect-ratio: 16/9; overflow: hidden; border-radius: 4px;
  margin-bottom: 36px;
}
.article-cover img { width:100%; height:100%; object-fit: cover; }
.article-body { font-size: 17px; line-height: 1.85; color: var(--ink-soft); }
.article-body p { margin-bottom: 22px; }
.article-body h2 { margin: 36px 0 16px; color: var(--ink); }
.article-body h3 { margin: 28px 0 12px; color: var(--ink); }
.article-body blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 6px 0 6px 22px; margin: 28px 0;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.3rem; color: var(--ink); line-height: 1.5;
}
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 22px; }
.article-body li { margin-bottom: 8px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--paper); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
@media (max-width: 920px) { .faq-layout { grid-template-columns: 1fr; gap: 30px; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0; cursor: pointer;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 400;
  line-height: 1.3;
}
.faq-num {
  font-size: 12px; letter-spacing: 0.12em;
  color: var(--ink-soft); font-weight: 600;
  font-family: 'Manrope', sans-serif;
  margin-right: 14px; vertical-align: middle;
}
.faq-toggle {
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease-out);
}
.faq-item.open .faq-toggle {
  background: var(--ink); color: var(--paper-3); border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  color: var(--ink-soft); font-size: 14px;
  line-height: 1.7;
  transition: max-height .5s var(--ease-out), padding .3s, opacity .3s;
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 360px; padding-top: 14px; opacity: 1;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: var(--terracotta); color: var(--paper-3);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,162,74,0.45), transparent 70%);
  top: -300px; right: -200px;
}
.cta-block::after {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,59,34,0.5), transparent 70%);
  bottom: -200px; left: -150px;
}
.cta-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
  position: relative; z-index: 1;
}
@media (max-width: 920px) { .cta-inner { grid-template-columns: 1fr; } }
.cta-block h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--paper-3);
  max-width: 16ch;
}
.cta-block h2 em { color: var(--gold); }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  transition: all .3s var(--ease-out);
}
.btn-cta-primary { background: var(--ink); color: var(--paper-3); }
.btn-cta-primary:hover { background: var(--paper-3); color: var(--ink); }
.btn-cta-secondary {
  background: transparent; color: var(--paper-3);
  border: 1px solid rgba(245,239,227,0.5);
}
.btn-cta-secondary:hover { background: rgba(245,239,227,0.12); }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
  background: var(--ink); color: rgba(245,239,227,0.78);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,239,227,0.14);
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo-text .logo-line1 { color: var(--paper-3); }
.footer-brand .logo-text .logo-line2 { color: rgba(245,239,227,0.5); }
.footer-brand p {
  margin-top: 22px;
  font-size: 14px; line-height: 1.7;
  color: rgba(245,239,227,0.6);
  max-width: 38ch;
}
.footer-contact {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 13px;
}
.footer-contact a, .footer-contact span {
  color: rgba(245,239,227,0.78); display: inline-flex; gap: 10px; align-items: flex-start;
}
.footer-contact a:hover { color: var(--gold-soft); }
footer.site-footer h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: rgba(245,239,227,0.7);
  transition: color .25s, padding-left .25s;
}
.footer-links a:hover { color: var(--paper-3); padding-left: 5px; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
  font-size: 12px; color: rgba(245,239,227,0.5);
}
.footer-affil {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
}
.footer-affil span { color: rgba(245,239,227,0.55); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366; color: white;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 100;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.55);
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ============================================================
   PLAN-MY-TRIP FLOATING CTA
   ============================================================ */
/* Header-theme switcher (demo widget — always visible) */
.header-theme-switcher {
  position: fixed;
  bottom: 88px;
  left: 24px;
  z-index: 200;
  display: flex;
  background: rgba(20, 17, 13, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.55);
}
.header-theme-switcher__btn {
  padding: 7px 14px;
  border-radius: 999px;
  color: rgba(245, 239, 227, 0.7);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.header-theme-switcher__btn:hover { color: #fff; }
.header-theme-switcher__btn.is-active {
  background: linear-gradient(135deg, #FFE9A8, #D4A24A);
  color: #1a1814;
  box-shadow: 0 2px 6px rgba(232, 198, 119, 0.35);
}
@media (max-width: 540px) {
  .header-theme-switcher { bottom: 76px; left: 16px; font-size: 10px; padding: 3px; }
  .header-theme-switcher__btn { padding: 6px 10px; }
}

.plan-cta-float {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 100;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px 13px 16px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-d));
  color: #fff;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 32px -10px rgba(184, 91, 61, 0.55), 0 2px 0 rgba(255,255,255,0.18) inset;
  transition: transform .25s var(--ease-out), box-shadow .25s, gap .25s;
}
.plan-cta-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px -12px rgba(184, 91, 61, 0.65), 0 2px 0 rgba(255,255,255,0.22) inset;
  gap: 12px;
}
.plan-cta-float svg { flex: 0 0 auto; }
@media (max-width: 540px) {
  .plan-cta-float { bottom: 18px; left: 18px; padding: 11px 16px 11px 14px; font-size: 11px; }
  .plan-cta-float span { display: none; }
  .plan-cta-float { padding: 13px; border-radius: 50%; }
}

/* ============================================================
   ITINERARY DETAIL — day-by-day timeline
   ============================================================ */
.itin-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.itin-summary-item .label {
  font-size: 10px; letter-spacing: 0.16em;
  color: var(--ink-soft); font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.itin-summary-item .value {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--ink);
}
.day-list {
  display: flex; flex-direction: column;
  border-left: 1px dashed var(--line);
  margin-left: 18px;
  padding-left: 36px;
}
.day-item { position: relative; padding: 0 0 36px; }
.day-item::before {
  content: ""; position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--paper-3);
  box-shadow: 0 0 0 1px var(--line);
  left: -44px; top: 4px;
}
.day-item .day-num {
  font-size: 10px; letter-spacing: 0.18em;
  font-weight: 700; color: var(--terracotta-d);
  text-transform: uppercase; margin-bottom: 4px;
}
.day-item h4 { margin-bottom: 8px; font-size: 1.3rem; }
.day-item p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 28px 0;
}
@media (max-width: 720px) { .includes-grid { grid-template-columns: 1fr; } }
.includes-grid h4 { margin-bottom: 14px; font-size: 1.05rem; color: var(--terracotta-d); }
.includes-grid ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--ink-soft); }
.includes-grid ul li { display: flex; gap: 10px; align-items: flex-start; }
.includes-grid ul li::before { content: "—"; color: var(--gold); flex-shrink: 0; }
.includes-grid .excludes li::before { content: "×"; color: var(--terracotta); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--paper); }
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}
@media (max-width: 920px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info { padding: 8px 0; }
.contact-info .item { margin-bottom: 28px; }
.contact-info .item h4 { color: var(--terracotta-d); margin-bottom: 6px; font-size: 1.05rem; }
.contact-info .item p, .contact-info .item a {
  color: var(--ink-soft); line-height: 1.6;
}
.contact-map {
  height: 320px; border-radius: 4px;
  overflow: hidden; margin-top: 32px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-form-card {
  background: var(--paper-3);
  border: 1px solid var(--line-soft);
  padding: 36px;
  border-radius: 4px;
}

/* ============================================================
   ENQUIRY
   ============================================================ */
.enquiry-section { background: var(--paper-3); }
.enquiry-card {
  max-width: 880px; margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 48px;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 640px) { .enquiry-card { padding: 28px; } }

/* 404 / generic */
.empty-state { text-align: center; padding: 120px 24px; }
.empty-state h1 { font-size: clamp(3rem, 8vw, 6rem); }
.empty-state p { color: var(--ink-soft); margin: 22px 0 32px; max-width: 50ch; margin-left: auto; margin-right: auto; }

/* RESPONSIVE FALLBACKS */
@media (max-width: 768px) {
  section.block { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .itin-grid, .reviews-layout, .blog-grid, .themes-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 18px; }
  .stat:nth-child(2n) { border-right: 0; }
}

/* FLEET PAGE ================================================= */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 60px;
}
.vehicle-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--paper-3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.vehicle-card:hover { transform: translateY(-10px); }
@media (min-width: 992px) {
  .vehicle-card { grid-template-columns: 1fr 1fr; }
}
.vehicle-image { position: relative; height: 350px; }
.vehicle-image img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-cap-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(0,0,0,0.8); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; backdrop-filter: blur(10px);
}
.vehicle-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.vehicle-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.vehicle-meta h3 { margin: 0; font-size: 28px; }
.vehicle-tag { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--gold); letter-spacing: 1px; }
.vehicle-features { list-style: none; padding: 0; margin: 25px 0; display: flex; flex-wrap: wrap; gap: 20px; }
.vehicle-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-soft); }
.vehicle-features li svg { color: var(--gold); }
.vehicle-actions { display: flex; gap: 15px; margin-top: auto; }

.driver-info-block {
  margin-top: 100px;
  background: var(--paper-2);
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 992px) {
  .driver-info-block { grid-template-columns: 1.2fr 0.8fr; }
}
.features-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.f-item strong { display: block; margin-bottom: 10px; font-family: var(--font-display); font-size: 18px; }
.f-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.driver-image { border-radius: 20px; overflow: hidden; height: 400px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.driver-image img { width: 100%; height: 100%; object-fit: cover; }

/* WEDDING PAGE =============================================== */
.wedding-hero { min-height: 80vh; }
.wedding-grid { display: grid; grid-template-columns: 1fr; gap: 80px; align-items: center; }
@media (min-width: 992px) { .wedding-grid { grid-template-columns: 1fr 1fr; } }
.wedding-services { display: grid; gap: 30px; margin-top: 40px; }
.ws-item strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.ws-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.wedding-visual { position: relative; border-radius: 32px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.1); }
.wedding-visual img { width: 100%; height: 600px; object-fit: cover; }
.wedding-stat {
  position: absolute; top: 40px; left: 40px;
  background: var(--gold); color: var(--ink);
  padding: 24px; border-radius: 20px;
  text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.wedding-stat strong { display: block; font-size: 32px; font-weight: 800; line-height: 1; }
.wedding-stat span { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }

.location-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
.loc-card { background: var(--paper-3); border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.loc-card img { width: 100%; height: 250px; object-fit: cover; }
.loc-card h4 { padding: 25px 25px 10px; margin: 0; font-size: 22px; }
.loc-card p { padding: 0 25px 30px; margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* SEARCH STRIP =============================================== */
.search-strip-wrapper { position: relative; margin-top: -50px; z-index: 102; padding: 0 20px; }
.search-strip {
  background: #fff; border-radius: 24px; padding: 30px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 25px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12); align-items: flex-end;
}
@media (max-width: 768px) { .search-strip { grid-template-columns: 1fr; padding: 24px; } }
.search-col { display: flex; flex-direction: column; gap: 8px; }
.search-col label { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--gold); letter-spacing: 1px; }
.search-input { position: relative; }
.search-input svg { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--ink-soft); }
.search-input input { width: 100%; border: none; border-bottom: 1px solid var(--paper-2); padding: 10px 0 10px 24px; font-size: 15px; font-weight: 600; color: var(--ink); outline: none; }
.search-col select { border: none; border-bottom: 1px solid var(--paper-2); padding: 10px 0; font-size: 15px; font-weight: 600; color: var(--ink); outline: none; background: transparent; cursor: pointer; }
.search-col input { border: none; border-bottom: 1px solid var(--paper-2); padding: 10px 0; font-size: 15px; font-weight: 600; color: var(--ink); outline: none; }
.btn-search {
  background: var(--ink); color: #fff; border: none; border-radius: 16px;
  padding: 18px 24px; display: flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.3s;
}
.btn-search:hover { background: var(--gold); color: var(--ink); transform: scale(1.02); }

/* FOUNDER SECTION ============================================ */
.founder-grid { display: grid; grid-template-columns: 1fr; gap: 80px; align-items: center; margin-top: 100px; }
@media (min-width: 992px) { .founder-grid { grid-template-columns: 0.8fr 1.2fr; } }
.founder-image { position: relative; border-radius: 32px; overflow: hidden; height: 550px; }
.founder-image img { width: 100%; height: 100%; object-fit: cover; }
.founder-badge {
  position: absolute; bottom: 30px; left: 30px;
  background: var(--gold); color: var(--ink); padding: 15px 25px;
  border-radius: 15px; font-weight: 800; font-size: 14px;
}
.founder-content { padding-right: 40px; }
.founder-content p { font-size: 17px; line-height: 1.7; margin-bottom: 25px; color: var(--ink-soft); }
.founder-content blockquote { font-size: 20px; font-style: italic; color: var(--ink); border-left: 4px solid var(--gold); padding-left: 24px; margin: 30px 0; }
.founder-signature { margin-top: 50px; }
.sig-line { width: 60px; height: 3px; background: var(--gold); margin-bottom: 15px; }
.founder-signature span { display: block; font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--ink); }
.founder-signature small { font-size: 12px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; }

/* ITINERARY SHOW PAGE ======================================== */
.tour-hero { min-height: 60vh; display: flex; align-items: flex-end; padding-bottom: 80px; }
.hero-meta-top { display: flex; gap: 15px; margin-bottom: 20px; }
.duration-badge, .category-badge {
  background: var(--gold); color: var(--ink);
  padding: 6px 16px; border-radius: 99px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.category-badge { background: rgba(255,255,255,0.2); color: #fff; backdrop-filter: blur(10px); }
.hero-stats { display: flex; gap: 40px; margin-top: 30px; }
.h-stat { display: flex; flex-direction: column; }
.h-stat strong { font-size: 32px; font-weight: 800; color: #fff; }
.h-stat span { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; font-weight: 700; }

.tour-layout { display: grid; grid-template-columns: 1fr; gap: 60px; margin-top: 40px; }
@media (min-width: 992px) { .tour-layout { grid-template-columns: 1fr 380px; } }

.tour-nav-tabs {
  display: flex; gap: 30px; border-bottom: 1px solid var(--paper-2);
  margin-bottom: 50px; position: sticky; top: 100px; background: var(--paper-3);
  padding-top: 10px; z-index: 10;
}
.tour-nav-tabs a {
  padding: 15px 0; font-weight: 700; color: var(--ink-soft); text-decoration: none;
  font-size: 15px; border-bottom: 3px solid transparent; transition: all 0.3s;
}
.tour-nav-tabs a.active { color: var(--ink); border-color: var(--gold); }

.itinerary-timeline { position: relative; padding-left: 50px; }
.itinerary-timeline::before {
  content: ""; position: absolute; left: 14px; top: 0; bottom: 0;
  width: 2px; background: var(--paper-2);
}
.timeline-day { position: relative; margin-bottom: 60px; }
.day-number {
  position: absolute; left: -50px; top: 0;
  background: var(--ink); color: #fff; width: 44px; height: 44px;
  border-radius: 12px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; line-height: 1;
}
.day-number span { font-size: 9px; text-transform: uppercase; font-weight: 800; opacity: 0.7; }
.day-number strong { font-size: 18px; }
.day-content h3 { margin: 0 0 15px 0; font-size: 24px; }
.day-content p { color: var(--ink-soft); line-height: 1.7; font-size: 16px; }
.day-monuments { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.mon-tag {
  background: var(--paper-2); color: var(--ink); padding: 5px 12px;
  border-radius: 8px; font-size: 12px; font-weight: 700;
}

.monuments-visual-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 20px; margin-top: 30px; }
.mon-visual-card {
  background: var(--paper-2); padding: 20px; border-radius: 16px;
  text-align: center; display: flex; flex-direction: column; gap: 15px;
  transition: all 0.3s;
}
.mon-visual-card:hover { background: var(--gold); }
.mon-img-placeholder {
  height: 60px; background: rgba(0,0,0,0.05); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft);
}
.mon-visual-card span { font-size: 12px; font-weight: 700; color: var(--ink); }

.map-mock {
  width: 100%; height: 400px; background: #e0e0e0; border-radius: 24px;
  position: relative; overflow: hidden; background-image: url('https://images.unsplash.com/photo-1524850011238-e3d235c7d4c9?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
}
.map-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.2);
  display: flex; align-items: flex-end; padding: 30px;
}
.map-overlay span { background: #fff; padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 14px; }

.tour-sidebar .enquiry-card { border: 2px solid var(--paper-2); background: #fff; }
.whatsapp-link {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 15px; color: #25D366; font-weight: 700; text-decoration: none;
  font-size: 15px; padding: 12px; border: 1px solid #25D366; border-radius: 12px;
  transition: all 0.3s;
}
.whatsapp-link:hover { background: #25D366; color: #fff; }

/* ============================================================
   ITINERARIES INDEX — Editorial cultural layout
   Deep teal-forest base · brass-copper accents · ivory text
   Fonts: Playfair Display (display) + Inter (body)
   No white or cream zones on this page.
   ============================================================ */

/* Page colour tokens — scoped so other pages stay unchanged.
   Warm walnut / aged-ink base flows seamlessly into the footer (--ink #1A1814) */
.page-itineraries {
  --pi-bg:      #F5EFE3;   /* paper — matches destinations page */
  --pi-bg-2:    #EDE4D3;   /* paper-2 — slightly deeper, for gradients */
  --pi-bg-3:    #14110D;   /* near-black — used as dark text on brass buttons (do not flip) */
  --pi-brass:   #C9962E;   /* gold — matches destinations theme */
  --pi-brass-2: #D4A24A;   /* gold-soft highlight */
  --pi-brass-3: #E8C677;   /* champagne gold */
  --pi-ember:   #B85B3D;   /* terracotta — destinations accent */
  --pi-ivory:   #1A1814;   /* ink — main text on paper */
  --pi-ivory-d: rgba(26, 24, 20, 0.78);
  --pi-ivory-x: rgba(26, 24, 20, 0.55);
  --pi-line:    rgba(26, 24, 20, 0.14);
  --pi-line-2:  rgba(26, 24, 20, 0.24);

  background: var(--pi-bg);
  color: var(--pi-ivory);
  position: relative;
  z-index: 1;
  font-family: 'Inter', system-ui, sans-serif;
}
body:has(.page-itineraries),
body.page-itineraries {
  background: #F5EFE3;
}
body:has(.page-itineraries)::before,
body.page-itineraries::before { display: none; }

/* Heroes sit on top of a dark image veil — text must stay light there,
   even though the rest of the page (body, cards) uses dark ink on paper. */
.page-itineraries .tour-hero,
.page-itineraries .itin-cinematic-hero {
  --pi-ivory:   #F4ECD8;
  --pi-ivory-d: rgba(244, 236, 216, 0.82);
  --pi-ivory-x: rgba(244, 236, 216, 0.55);
}

/* --- Cinematic hero --- */
.itin-cinematic-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--pi-ivory);
}
.itin-cinematic-hero .ich-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 20%;
  z-index: -2;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.itin-cinematic-hero .ich-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 26, 20, 0.20) 0%, rgba(31, 26, 20, 0.05) 30%, rgba(31, 26, 20, 0.96) 100%),
    linear-gradient(90deg, rgba(31, 26, 20, 0.55) 0%, rgba(31, 26, 20, 0.10) 50%, rgba(31, 26, 20, 0.55) 100%);
  z-index: -1;
}
.ich-pattern {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0.4;
  mix-blend-mode: screen;
  pointer-events: none;
}
.ich-pattern svg { width: 100%; height: 100%; display: block; }
.ich-content {
  max-width: 980px;
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ich-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pi-brass-2);
  margin-bottom: 26px;
}
.ich-line {
  display: inline-block;
  width: 72px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pi-brass-2) 50%, transparent);
}
.ich-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.ich-title .ich-t1 { display: block; color: var(--pi-ivory); font-weight: 400; }
.ich-title .ich-t2 {
  display: block;
  margin-top: 4px;
  background: linear-gradient(100deg, var(--pi-brass) 0%, var(--pi-brass-3) 30%, #FFE9B8 50%, var(--pi-brass-3) 70%, var(--pi-brass) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rs-foil 8s ease-in-out infinite;
  font-style: italic;
  font-weight: 600;
}
.ich-sub {
  max-width: 56ch;
  margin: 24px auto 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  color: var(--pi-ivory-d);
  line-height: 1.65;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* --- Stage that holds the categories --- */
.itin-stage {
  position: relative;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(214, 125, 82, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 85%, rgba(232, 184, 111, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--pi-bg) 0%, var(--pi-bg-2) 50%, var(--pi-bg) 100%);
  padding: 60px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.itin-stage-pattern {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}
.itin-stage-pattern svg { width: 100%; height: 100%; display: block; }

/* --- Section (per category): thin header + clean card grid --- */
.itin-sec {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px clamp(20px, 4vw, 48px);
  scroll-margin-top: 40px;
  position: relative;
}
.itin-sec + .itin-sec {
  border-top: 1px solid var(--pi-line);
}

.itin-sec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--pi-line-2);
}
.itin-sec-titleline {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.itin-sec-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  background: linear-gradient(180deg, var(--pi-brass-3) 0%, var(--pi-brass) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.itin-sec-name {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.15;
  color: var(--pi-ivory);
  margin: 0;
  letter-spacing: -0.005em;
}
.itin-sec-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--pi-brass-2), var(--pi-brass));
  color: var(--pi-bg-3);
}
.itin-sec.is-priority .itin-sec-num {
  filter: drop-shadow(0 0 14px rgba(232, 184, 111, 0.35));
}
.itin-sec-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pi-ivory-x);
  font-weight: 500;
}
.itin-sec-meta .dot { margin: 0 8px; color: var(--pi-brass-2); }

/* Card grid */
.itin-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.itin-card {
  display: flex;
  flex-direction: column;
  background: rgba(244, 236, 216, 0.04);
  border: 1px solid var(--pi-line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--pi-ivory);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s, background .3s;
}
.itin-card:hover {
  transform: translateY(-4px);
  border-color: var(--pi-brass);
  background: rgba(232, 184, 111, 0.06);
  box-shadow:
    0 22px 44px -22px rgba(0,0,0,0.7),
    0 0 0 1px rgba(232, 184, 111, 0.35);
}
.itin-card-img {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.itin-card-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31, 26, 20, 0) 30%, rgba(31, 26, 20, 0.78) 100%);
}
.itin-card-duration {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 12px;
  background: rgba(31, 26, 20, 0.88);
  border: 1px solid var(--pi-line-2);
  border-radius: 999px;
  color: var(--pi-brass-2);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.itin-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.itin-card-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
  color: var(--pi-ivory);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.itin-card-route {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: var(--pi-ivory-d);
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: baseline;
}
.itin-card-route .dot { color: var(--pi-brass-2); opacity: 0.6; }
.itin-card-route .more {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--pi-brass-2);
  font-weight: 700;
}
.itin-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pi-brass-2);
  transition: gap .2s, color .2s;
}
.itin-card:hover .itin-card-cta { gap: 14px; color: var(--pi-brass-3); }

/* Single-card "coming soon" treatment for empty categories */
.itin-soon-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 32px;
  background:
    radial-gradient(ellipse at left, rgba(232, 184, 111, 0.10) 0%, transparent 60%),
    rgba(244, 236, 216, 0.03);
  border: 1px dashed var(--pi-line-2);
  border-radius: 14px;
  text-decoration: none;
  color: var(--pi-ivory);
  transition: transform .25s var(--ease-out), border-color .25s, background .25s;
}
.itin-soon-card:hover {
  transform: translateY(-2px);
  border-color: var(--pi-brass);
  background:
    radial-gradient(ellipse at left, rgba(232, 184, 111, 0.16) 0%, transparent 60%),
    rgba(232, 184, 111, 0.06);
}
.itin-soon-icon {
  font-size: 28px;
  color: var(--pi-brass-2);
  text-shadow: 0 0 14px rgba(232, 184, 111, 0.45);
}
.itin-soon-card h3 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--pi-ivory);
  margin: 0 0 4px;
}
.itin-soon-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--pi-ivory-d);
  line-height: 1.5;
  margin: 0;
}
.itin-soon-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(232, 184, 111, 0.12);
  border: 1px solid var(--pi-line-2);
  color: var(--pi-brass-2);
  transition: background .2s, transform .2s, color .2s;
}
.itin-soon-card:hover .itin-soon-arrow { background: var(--pi-brass); color: var(--pi-bg-3); transform: translateX(3px); }

@media (max-width: 720px) {
  .itin-sec { padding: 36px 18px; }
  .itin-card-grid { grid-template-columns: 1fr; gap: 14px; }
  .itin-soon-card { grid-template-columns: 1fr; text-align: center; padding: 24px; }
  .itin-soon-arrow { margin: 8px auto 0; }
}

@media (max-width: 600px) {
  .ich-content { padding: 70px 20px 50px; }
}

/* ============================================================
   ITINERARY DETAIL — overrides for the warm-walnut palette
   ============================================================ */

/* Force-show all .reveal content on the detail page so the
   IntersectionObserver-driven fade can't accidentally hide
   the timeline / monuments / map. */
.page-itineraries .reveal,
.page-itineraries .reveal-stagger,
.page-itineraries .reveal-stagger > * {
  opacity: 1 !important;
  transform: none !important;
}

/* Hero on the detail page */
.page-itineraries .tour-hero {
  position: relative;
  isolation: isolate;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--pi-bg);
  padding: 80px 0 60px;
}
.page-itineraries .tour-hero .hero-bg-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 26, 20, 0.20) 0%, rgba(31, 26, 20, 0.20) 40%, rgba(31, 26, 20, 0.94) 100%),
    linear-gradient(90deg, rgba(31, 26, 20, 0.55) 0%, rgba(31, 26, 20, 0.10) 60%);
  z-index: 0;
}
.page-itineraries .tour-hero .hero-content { position: relative; z-index: 1; }
.page-itineraries .tour-hero .container {
  max-width: none;
  margin: 0;
  padding-left: clamp(20px, 3vw, 36px);
  padding-right: clamp(20px, 4vw, 48px);
}
.page-itineraries .tour-hero h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  color: var(--pi-ivory);
  margin: 16px 0;
  letter-spacing: -0.01em;
}
.page-itineraries .tour-hero .hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  color: var(--pi-ivory-d);
  max-width: 56ch;
  line-height: 1.6;
}
.page-itineraries .tour-hero .hero-meta-top {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 4px;
}
.page-itineraries .duration-badge,
.page-itineraries .category-badge {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--pi-line-2);
  backdrop-filter: blur(6px);
}
.page-itineraries .duration-badge {
  background: linear-gradient(135deg, var(--pi-brass-2), var(--pi-brass));
  color: var(--pi-bg-3);
  border-color: transparent;
}
.page-itineraries .category-badge {
  background: rgba(31, 26, 20, 0.6);
  color: var(--pi-brass-2);
}
.page-itineraries .hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.page-itineraries .h-stat {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.page-itineraries .h-stat strong {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  color: var(--pi-brass-2);
}
.page-itineraries .h-stat span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pi-ivory-x);
}

/* Body container */
.page-itineraries .tour-body {
  background: linear-gradient(180deg, var(--pi-bg) 0%, var(--pi-bg-2) 60%, var(--pi-bg) 100%);
  color: var(--pi-ivory);
  padding: 70px 0 100px;
}
.page-itineraries .tour-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .page-itineraries .tour-layout { grid-template-columns: 1fr; }
}

/* Section nav tabs — sticky band on paper, subtle shadow when scrolled past */
.page-itineraries .tour-nav-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--pi-line-2);
  margin-bottom: 40px;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(251, 247, 239, 0.92);
  box-shadow: 0 6px 18px -14px rgba(40, 28, 16, 0.35);
  border-radius: 6px 6px 0 0;
}
.page-itineraries .tour-nav-tabs a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pi-ivory-d);
  text-decoration: none;
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.page-itineraries .tour-nav-tabs a:hover { color: var(--pi-brass); }
.page-itineraries .tour-nav-tabs a.active {
  color: var(--pi-brass);
  border-bottom-color: var(--pi-brass);
}

/* Daily-itinerary timeline */
.page-itineraries .itinerary-timeline {
  position: relative;
  margin-bottom: 70px;
  padding-left: 0;
}
.page-itineraries .itinerary-timeline::before { display: none; }
.page-itineraries .timeline-day {
  position: static;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 24px 0 28px;
  margin-bottom: 0;
  border-bottom: 1px dashed var(--pi-line);
}
.page-itineraries .timeline-day:last-child { border-bottom: 0; }
.page-itineraries .day-number {
  position: static;
  width: auto; height: auto;
  background: transparent;
  border-radius: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding-top: 4px;
  color: var(--pi-ivory);
}
.page-itineraries .day-number span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pi-brass-2);
  opacity: 0.85;
}
.page-itineraries .day-number strong {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  background: linear-gradient(180deg, var(--pi-brass-3) 0%, var(--pi-brass) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-itineraries .day-content h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.25;
  color: var(--pi-ivory);
  margin: 0 0 10px;
}
.page-itineraries .day-content p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--pi-ivory-d);
  margin: 0 0 12px;
}
.page-itineraries .day-monuments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.page-itineraries .mon-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(232, 184, 111, 0.10);
  border: 1px solid var(--pi-line-2);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--pi-brass-2);
  font-weight: 500;
}

/* Section heads (Monuments / Map) */
.page-itineraries .section-head.mini {
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pi-line);
}
.page-itineraries .section-head.mini h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--pi-ivory);
  margin: 0;
  letter-spacing: -0.005em;
}
.page-itineraries .section-head.mini em {
  font-style: italic;
  background: linear-gradient(100deg, var(--pi-brass) 0%, var(--pi-brass-3) 50%, var(--pi-brass) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Monuments visual grid */
.page-itineraries .tour-monuments-section { margin-bottom: 70px; }
.page-itineraries .monuments-visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.page-itineraries .mon-visual-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(244, 236, 216, 0.04);
  border: 1px solid var(--pi-line);
  border-radius: 12px;
  transition: border-color .2s, background .2s, transform .2s;
}
.page-itineraries .mon-visual-card:hover {
  border-color: var(--pi-brass);
  background: rgba(232, 184, 111, 0.08);
  transform: translateY(-2px);
}
.page-itineraries .mon-img-placeholder {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(232, 184, 111, 0.14);
  border: 1px solid var(--pi-line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--pi-brass-2);
  flex-shrink: 0;
}
.page-itineraries .mon-visual-card span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--pi-ivory);
  font-weight: 500;
}

/* Google Map embed */
.page-itineraries .tour-map-section { margin-bottom: 40px; }
.page-itineraries .tour-map-wrap {
  position: relative;
  background: rgba(244, 236, 216, 0.04);
  border: 1px solid var(--pi-line-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.6);
}
.page-itineraries .tour-map-iframe {
  display: block;
  width: 100%;
  height: 460px;
  filter: saturate(0.95);
  background: #1F1A14;
}
.page-itineraries .tour-map-fallback {
  padding: 60px 24px;
  text-align: center;
  color: var(--pi-ivory-d);
}
.page-itineraries .tour-map-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: linear-gradient(180deg, rgba(31,26,20,0.85), rgba(20,17,13,0.95));
  border-top: 1px solid var(--pi-line);
  flex-wrap: wrap;
}
.page-itineraries .tml-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pi-brass-2);
}
.page-itineraries .tml-cities {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.page-itineraries .tml-stop {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(232, 184, 111, 0.10);
  border: 1px solid var(--pi-line-2);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--pi-ivory);
  font-weight: 500;
}
.page-itineraries .tml-arrow { color: var(--pi-brass-2); opacity: 0.7; }
.page-itineraries .tml-open {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--pi-brass-2), var(--pi-brass));
  color: var(--pi-bg-3);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.page-itineraries .tml-open:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgba(232, 184, 111, 0.5);
}

/* Sidebar enquiry card */
.page-itineraries .tour-sidebar { font-family: 'Inter', sans-serif; }
.page-itineraries .sticky-card.enquiry-card {
  position: sticky;
  top: 24px;
  background: linear-gradient(180deg, #FFFDF7 0%, #FBF3E2 100%);
  border: 1px solid rgba(201, 150, 46, 0.28);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 22px 50px -28px rgba(40, 28, 16, 0.35), 0 2px 0 rgba(255, 255, 255, 0.5) inset;
  color: var(--pi-ivory);
  position: relative;
  overflow: hidden;
}
.page-itineraries .sticky-card.enquiry-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--pi-brass-3), var(--pi-brass), var(--pi-brass-3));
}
.page-itineraries .sticky-card.enquiry-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--pi-ivory);
  margin: 0 0 8px;
}
.page-itineraries .sticky-card.enquiry-card p {
  font-size: 13px;
  color: var(--pi-ivory-d);
  line-height: 1.5;
  margin: 0 0 18px;
}
.page-itineraries .side-form input,
.page-itineraries .side-form textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(40, 28, 16, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  color: var(--pi-ivory);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  box-shadow: 0 1px 0 rgba(40, 28, 16, 0.04) inset;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.page-itineraries .side-form input::placeholder,
.page-itineraries .side-form textarea::placeholder { color: rgba(40, 28, 16, 0.42); }
.page-itineraries .side-form input:focus,
.page-itineraries .side-form textarea:focus {
  outline: none;
  border-color: var(--pi-brass);
  background: #FFFEFA;
  box-shadow: 0 0 0 3px rgba(201, 150, 46, 0.18);
}
.page-itineraries .side-form textarea { min-height: 80px; resize: vertical; }
.page-itineraries .btn-primary.full {
  display: block; width: 100%;
  padding: 13px 16px;
  background: linear-gradient(135deg, var(--pi-brass-2), var(--pi-brass));
  color: var(--pi-bg-3);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  margin-top: 6px;
  transition: transform .2s, box-shadow .2s;
}
.page-itineraries .btn-primary.full:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(232, 184, 111, 0.55);
}
.page-itineraries .side-support {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--pi-line);
}
.page-itineraries .side-support p {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pi-ivory-x);
  font-weight: 600;
  margin: 0 0 10px;
}
.page-itineraries .whatsapp-link {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 16px;
  border: 1px solid #25D366;
  color: #25D366;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.page-itineraries .whatsapp-link:hover { background: #25D366; color: var(--pi-bg-3); }

@media (max-width: 720px) {
  .page-itineraries .timeline-day { grid-template-columns: 64px 1fr; gap: 16px; }
  .page-itineraries .day-number strong { font-size: 34px; }
  .page-itineraries .hero-stats { gap: 22px; }
}

/* Legacy styles below — keep .itin-rail for any other view that references it */
.itin-rail {
  background: linear-gradient(180deg, #fff 0%, var(--paper-3) 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  box-shadow: 0 6px 22px -14px rgba(0,0,0,0.18);
}
.itin-rail-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.itin-rail-inner::-webkit-scrollbar { height: 6px; }
.itin-rail-inner::-webkit-scrollbar-thumb { background: rgba(74,19,48,0.25); border-radius: 999px; }

.itin-rail-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: all .2s var(--ease-out);
}
.itin-rail-pill:hover {
  border-color: var(--gold-soft);
  background: var(--paper-3);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -8px rgba(0,0,0,0.18);
}
.itin-rail-pill.is-priority {
  background: linear-gradient(135deg, #5a1d36, #4a1330);
  color: #F5EFE3;
  border-color: #E8C677;
  box-shadow: 0 4px 14px -6px rgba(74,19,48,0.5);
}
.itin-rail-pill.is-priority .ir-num { color: #E8C677; }
.itin-rail-pill .ir-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(74,19,48,0.08);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  color: var(--terracotta-d);
}
.itin-rail-pill.is-priority .ir-num {
  background: rgba(232,198,119,0.18);
  color: #E8C677;
}
.itin-rail-pill .ir-soon {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--sage);
  background: rgba(110,122,77,0.12);
  padding: 2px 7px;
  border-radius: 4px;
}

/* Category sections */
.itin-cats { padding: 60px 0 100px; }
.itin-cat {
  margin-top: 64px;
  scroll-margin-top: 100px;
}
.itin-cat:first-child { margin-top: 24px; }

.itin-cat-head {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px -22px rgba(40,28,16,0.18);
  position: relative;
}
.itin-cat-priority .itin-cat-head {
  border-color: #E8C677;
  box-shadow: 0 18px 48px -22px rgba(74,19,48,0.35), 0 0 0 1px rgba(232,198,119,0.4);
}
.itin-cat-meta {
  padding: 32px 36px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.itin-cat-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 72px;
  line-height: 0.9;
  color: var(--gold-soft);
  background: linear-gradient(180deg, #E8C677, #B07F2A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  min-width: 64px;
  text-align: center;
}
.itin-cat-priority .itin-cat-num {
  background: linear-gradient(180deg, #E8C677, #5a1d36);
  -webkit-background-clip: text;
  background-clip: text;
}
.itin-cat-titles { flex: 1; min-width: 0; }
.itin-cat-badge {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.badge-gold       { background: #E8C677; color: #4a1330; }
.badge-teal       { background: #1B4A4A; color: #fff; }
.badge-terracotta { background: var(--terracotta); color: #fff; }
.badge-sage       { background: var(--sage); color: #fff; }
.itin-cat-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--ink);
}
.itin-cat-priority .itin-cat-name { color: #4a1330; }
.itin-cat-short {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 10px;
}
.itin-cat-days {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  font-weight: 700;
}
.itin-cat-img {
  background-size: cover;
  background-position: center;
  min-height: 220px;
  position: relative;
}
.itin-cat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, transparent 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.55) 100%);
}

/* Tour cards grid */
.itin-tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.itin-tour-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.itin-tour-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  box-shadow: 0 18px 38px -20px rgba(40,28,16,0.32);
}
.itc-image {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.itc-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
}
.itc-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.itc-meta {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 10px;
}
.itc-duration, .itc-cities {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
}
.itc-duration { background: var(--paper-2); color: var(--ink); }
.itc-cities   { background: rgba(27,74,74,0.10); color: var(--teal); }
.itc-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ink);
}
.itc-route {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 0 14px;
}
.itc-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  transition: gap .2s;
}
.itin-tour-card:hover .itc-cta { gap: 12px; color: var(--terracotta); }

/* Coming-soon panel for empty categories */
.itin-soon-panel {
  margin-top: 22px;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--paper-3), var(--paper-2));
  border: 1px dashed rgba(110,122,77,0.4);
  border-radius: 14px;
  text-align: center;
}
.itin-soon-panel p {
  max-width: 56ch;
  margin: 0 auto 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .itin-cat-head {
    grid-template-columns: 1fr;
  }
  .itin-cat-img { min-height: 180px; order: -1; }
  .itin-cat-meta { padding: 24px 22px; gap: 16px; }
  .itin-cat-num { font-size: 54px; min-width: 48px; }
  .itin-cats { padding: 40px 0 70px; }
}

/* ============================================================
   HOME PAGE — sections below the hero
   ============================================================ */
section.block.home-block { padding: 28px 0; background: transparent; }
.home-block:nth-child(even) { background: transparent; }
.home-head { max-width: 760px; margin: 0 auto 24px; text-align: center; }
.home-eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta-d);
  margin-bottom: 14px;
}
.home-head h2 {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.home-head h2 em { color: var(--terracotta); font-style: italic; }
.home-head p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}
.home-cta { display: flex; justify-content: center; margin-top: 22px; }

/* --- 1. Indian Itineraries --- */
.home-itin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-itin-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 14px 32px -16px rgba(40,28,16,0.35);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  isolation: isolate;
}
.home-itin-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -18px rgba(40,28,16,0.5); }
.hic-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 6s ease-out; }
.home-itin-card:hover .hic-img { transform: scale(1.08); }
.hic-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,24,20,0) 30%, rgba(26,24,20,0.85) 100%);
}
.hic-num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  color: var(--gold-soft);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hic-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px 20px;
  color: #fff;
}
.hic-badge {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  background: rgba(212,162,74,0.95);
  color: var(--ink);
  margin-bottom: 8px;
}
.hic-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.15;
  margin: 0 0 4px;
  color: #fff;
}
.hic-days {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.85);
  font-weight: 600;
}

/* --- 2. Indian Destinations --- */
.home-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-dest-card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 14px 32px -16px rgba(40,28,16,0.35);
  transition: transform .3s var(--ease-out), box-shadow .3s;
  isolation: isolate;
}
.home-dest-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -18px rgba(40,28,16,0.5); }
.hdc-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 6s ease-out;
}
.home-dest-card:hover .hdc-img { transform: scale(1.08); }
.hdc-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px 24px;
  color: #fff;
  background: linear-gradient(180deg, rgba(26,24,20,0) 0%, rgba(26,24,20,0.85) 100%);
}
.hdc-region {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.hdc-overlay h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.05;
  margin: 0 0 6px;
  color: #fff;
  letter-spacing: -0.01em;
}
.hdc-overlay p {
  font-size: 13px;
  color: rgba(245,239,227,0.82);
  line-height: 1.5;
  margin: 0 0 12px;
}
.hdc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  transition: gap .2s;
}
.home-dest-card:hover .hdc-cta { gap: 14px; }

/* --- 3. Car Rentals in India --- */
.home-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.home-fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--line-card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px -16px rgba(40,28,16,0.25);
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.home-fleet-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  box-shadow: 0 18px 38px -20px rgba(40,28,16,0.4);
}
.hfc-img { height: 160px; background-size: cover; background-position: center; }
.hfc-body { padding: 18px 18px 16px; display: flex; flex-direction: column; flex: 1; }
.hfc-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 8px;
  line-height: 1.2;
  color: var(--text-main);
}
.hfc-body p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 14px;
}
.hfc-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.hfc-cap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.hfc-link {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  transition: color .2s;
}
.hfc-link:hover { color: var(--terracotta-d); }

/* --- 4. Social / Network --- */
.home-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hs-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line-card);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-main);
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.hs-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  box-shadow: 0 18px 36px -18px rgba(40,28,16,0.35);
}
.hs-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.18);
}
.hs-fb .hs-icon { background: #1877F2; }
.hs-ig .hs-icon { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.hs-yt .hs-icon { background: #FF0000; }
.hs-li .hs-icon { background: #0077B5; }
.hs-tw .hs-icon { background: #000000; }
.hs-wa .hs-icon { background: #25D366; }
.hs-label { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.hs-label strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--text-main);
}
.hs-label small {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-weight: 500;
}

/* --- 5. Affiliations --- */
.home-affil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.affil-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line-card);
  border-radius: 12px;
  transition: transform .25s var(--ease-out), border-color .25s, box-shadow .25s;
}
.affil-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-soft);
  box-shadow: 0 14px 30px -16px rgba(40,28,16,0.3);
}
.affil-mono {
  flex-shrink: 0;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-soft) 100%);
  color: var(--gold-soft);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 19px;
  letter-spacing: 0.04em;
  border-radius: 10px;
  border: 1px solid rgba(212,162,74,0.55);
  box-shadow: inset 0 0 0 4px rgba(212,162,74,0.18), 0 6px 14px -6px rgba(40,28,16,0.4);
}
.affil-meta { display: flex; flex-direction: column; gap: 4px; }
.affil-meta strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--text-main);
  line-height: 1.2;
}
.affil-meta small {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .home-itin-grid,
  .home-dest-grid,
  .home-fleet-grid,
  .home-social-grid,
  .home-affil-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .home-itin-grid,
  .home-dest-grid,
  .home-fleet-grid,
  .home-social-grid,
  .home-affil-grid { grid-template-columns: 1fr; }
  .home-block { padding: 56px 0; }
}

/* ============================================================
   🎥 6 · VIDEO REVIEWS SECTION
   ============================================================ */
.home-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.video-review-card {
  background: var(--bg-card);
  border: 1px solid var(--line-card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px -16px rgba(40,28,16,0.25);
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.video-review-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: 0 18px 38px -20px rgba(40,28,16,0.4);
}
.vrc-thumbnail {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vrc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 24, 20, 0.1) 0%, rgba(26, 24, 20, 0.5) 100%);
  transition: background .2s;
}
.video-review-card:hover .vrc-overlay {
  background: linear-gradient(180deg, rgba(26, 24, 20, 0) 0%, rgba(26, 24, 20, 0.65) 100%);
}
.vrc-play-btn {
  width: 58px;
  height: 58px;
  background: var(--teal);
  color: var(--gold-soft);
  border: 1px solid rgba(212,162,74,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  cursor: pointer;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.5), inset 0 0 0 3px rgba(212,162,74,0.1);
  transition: transform .3s var(--ease-out), background-color .2s;
}
.video-review-card:hover .vrc-play-btn {
  transform: scale(1.12);
  background-color: var(--teal-soft);
  color: #fff;
  border-color: #fff;
}
.vrc-play-btn svg {
  margin-left: 3px;
  transition: transform .2s;
}
.vrc-body {
  padding: 18px 20px;
}
.vrc-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--text-main);
  line-height: 1.2;
}
.vrc-body p {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 10px;
  font-weight: 500;
}
.vrc-tag {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  border: 1px solid rgba(193,89,61,0.2);
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(193,89,61,0.04);
}

/* ============================================================
   ✍️ 7 · CLIENT TEXT REVIEWS SECTION
   ============================================================ */
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.text-review-card {
  background: var(--bg-card);
  border: 1px solid var(--line-card);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 26px -16px rgba(40,28,16,0.25);
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.text-review-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: 0 18px 38px -20px rgba(40,28,16,0.4);
}
.trc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.trc-avatar-box {
  flex-shrink: 0;
}
.trc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-soft) 100%);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(212,162,74,0.4);
}
.trc-meta {
  flex: 1;
}
.trc-meta h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  color: var(--text-main);
}
.trc-meta small {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: var(--ink-soft);
}
.trc-source-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  line-height: 1;
}
.trc-source-badge.tripadvisor {
  background: rgba(52, 224, 161, 0.12);
  color: #00af87;
  border: 1px solid rgba(52, 224, 161, 0.25);
}
.trc-source-badge.google {
  background: rgba(66, 133, 244, 0.1);
  color: #4285f4;
  border: 1px solid rgba(66, 133, 244, 0.2);
}
.trc-stars {
  display: flex;
  gap: 3px;
  color: #D4A24A;
  margin-bottom: 12px;
}
.trc-text {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  font-style: italic;
}

/* ============================================================
   🎬 IMMERSIVE VIDEO LIGHTBOX MODAL
   ============================================================ */
.video-review-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-review-modal.active {
  display: flex;
}
.vrm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 20, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vrm-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  background: #1a1814;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px -16px rgba(0,0,0,0.8);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-review-modal.active .vrm-container {
  transform: translateY(0);
  opacity: 1;
}
.vrm-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s, transform .2s;
  line-height: 1;
}
.vrm-close-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}
.vrm-player-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
}
.vrm-player-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vrm-caption {
  padding: 16px 24px;
  background: #211e19;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.vrm-caption h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  margin: 0 0 2px;
}
.vrm-caption p {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

@media (max-width: 960px) {
  .home-video-grid,
  .home-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .home-video-grid,
  .home-reviews-grid { grid-template-columns: 1fr; }
}
