/* ===================================================================
   GoTrip Journeys — Premium Gujarat Travel
   Design language: heritage-luxury, editorial, photo-forward
   Palette: warm ink + deep gold on ivory
   Type: Bodoni Moda (display) / Jost (sans)
   =================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #1C1917;
  --ink-deep:   #0C0A09;
  --stone:      #44403C;
  --stone-soft: #78716C;
  --ivory:      #FAFAF9;
  --cream:      #F4EFE6;
  --panel:      #FBF8F2;
  --gold:       #A16207;   /* accessible gold for text */
  --gold-bright:#C7920E;   /* decorative gold */
  --gold-soft:  #E7D5AC;
  --gold-wash:  #F7EFDD;
  --border:     #E7E1D6;
  --border-ink: rgba(255,255,255,.14);
  --white:      #FFFFFF;

  --font-display: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --font-sans:    "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: .5s;

  --shadow-sm: 0 1px 2px rgba(28,25,23,.06), 0 4px 16px rgba(28,25,23,.05);
  --shadow-md: 0 10px 30px -12px rgba(28,25,23,.18);
  --shadow-lg: 0 30px 60px -22px rgba(28,25,23,.30);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 300;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; color: var(--ink); }
.display {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -.01em;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold-bright);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold-bright);
  display: inline-block;
}
.section-title { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -.01em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--stone); font-weight: 300; }
.muted { color: var(--stone-soft); }
em.script { font-style: italic; color: var(--gold); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--dark { background: var(--ink); color: #EDEAE5; }
.section--cream { background: var(--cream); }
.section-head { max-width: 640px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1.1rem; }
.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem;
  font-family: var(--font-sans);
  font-weight: 500; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold { background: var(--ink); color: var(--white); }
.btn--gold:hover { background: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn--light { border: 1px solid rgba(255,255,255,.5); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn--solid-gold { background: var(--gold); color: #fff; }
.btn--solid-gold:hover { background: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.link-underline {
  position: relative; font-weight: 500; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: .5rem; padding-bottom: 3px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }
.link-underline svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.link-underline:hover svg { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 1.5rem;
}
.site-header.scrolled {
  background: rgba(250,250,249,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  padding-block: .85rem;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: baseline; gap: .15rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.brand .dot { color: var(--gold); }
.brand small { font-family: var(--font-sans); font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--stone-soft); font-weight: 500; margin-left:.5rem; align-self:center; }
.site-header:not(.scrolled) .brand,
.site-header:not(.scrolled) .nav-links a { color: #fff; }
.site-header:not(.scrolled) .brand small { color: rgba(255,255,255,.7); }
.site-header.force-light .brand,
.site-header.force-light .nav-links a { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: .8rem; font-weight: 400; letter-spacing: .06em; position: relative; padding-block: .3rem;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--gold) !important; }
.nav-cta { display: inline-flex; align-items:center; }
.nav-right { display: flex; align-items: center; gap: 1.6rem; }
.nav-toggle { display: none; width: 30px; height: 22px; position: relative; }
.nav-toggle span { position: absolute; left: 0; height: 2px; width: 100%; background: currentColor; transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease); }
.nav-toggle span:nth-child(1){ top: 2px; }
.nav-toggle span:nth-child(2){ top: 10px; }
.nav-toggle span:nth-child(3){ top: 18px; }
body.menu-open .nav-toggle span:nth-child(1){ top:10px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2){ opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3){ top:10px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink); color: #fff;
  display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
  transform: translateY(-100%); transition: transform .6s var(--ease-out); visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(2rem,9vw,3.2rem); padding-block: .35rem; opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
body.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu a:nth-child(1){ transition-delay:.15s; }
body.menu-open .mobile-menu a:nth-child(2){ transition-delay:.22s; }
body.menu-open .mobile-menu a:nth-child(3){ transition-delay:.29s; }
body.menu-open .mobile-menu a:nth-child(4){ transition-delay:.36s; }
body.menu-open .mobile-menu a:nth-child(5){ transition-delay:.43s; }
.mobile-menu .mm-foot { margin-top: 2.5rem; font-family: var(--font-sans); font-size: .8rem; letter-spacing: .1em; color: rgba(255,255,255,.6); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s ease-out infinite alternate; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,10,9,.35) 0%, rgba(12,10,9,.05) 35%, rgba(12,10,9,.55) 80%, rgba(12,10,9,.85) 100%);
}
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1.18) translateY(-1.5%); } }
.hero__inner { padding-bottom: clamp(3.5rem, 8vh, 7rem); padding-top: 8rem; width: 100%; }
.hero .eyebrow { color: var(--gold-soft); margin-bottom: 1.4rem; }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub { max-width: 46ch; margin-top: 1.6rem; font-size: 1.12rem; color: rgba(255,255,255,.85); font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__scroll { position: absolute; bottom: 2rem; right: var(--gutter); display: flex; align-items: center; gap: .8rem; font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.7); writing-mode: vertical-rl; }
.hero__scroll i { display: block; width: 1px; height: 46px; background: linear-gradient(var(--gold-soft), transparent); animation: scrollline 2s var(--ease) infinite; }
@keyframes scrollline { 0%{ transform: scaleY(0); transform-origin: top;} 45%{ transform: scaleY(1); transform-origin: top;} 55%{ transform: scaleY(1); transform-origin: bottom;} 100%{ transform: scaleY(0); transform-origin: bottom;} }

.page-hero { position: relative; min-height: 62vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(12,10,9,.5), rgba(12,10,9,.6)); }
.page-hero__inner { padding-top: 6rem; }
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); }
.page-hero .eyebrow { color: var(--gold-soft); margin-bottom: 1.2rem; }
.page-hero .eyebrow::before { background: var(--gold-soft); }
.page-hero p { max-width: 52ch; margin-top: 1.2rem; color: rgba(255,255,255,.85); }
.breadcrumb { margin-top: 1.6rem; font-size: .76rem; letter-spacing: .1em; color: rgba(255,255,255,.65); text-transform: uppercase; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1rem; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.3rem); color: var(--ink); line-height: 1; }
.section--dark .stat .num { color: #fff; }
.stat .num .suffix { color: var(--gold); }
.stat .label { margin-top: .6rem; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone-soft); }
.section--dark .stat .label { color: rgba(255,255,255,.6); }

/* ---------- Destination bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.dest {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); color: #fff;
  display: flex; align-items: flex-end; padding: 1.6rem; isolation: isolate;
}
.dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease-out); }
.dest::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(12,10,9,0) 30%, rgba(12,10,9,.78) 100%); }
.dest:hover img { transform: scale(1.07); }
.dest h3 { color: #fff; font-size: 1.5rem; }
.dest .dest-meta { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: .4rem; }
.dest .dest-arrow { position: absolute; top: 1.3rem; right: 1.3rem; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; display: grid; place-items: center; opacity: 0; transform: translateY(-6px); transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s; }
.dest:hover .dest-arrow { opacity: 1; transform: translateY(0); }
.dest:hover .dest-arrow { background: var(--gold); border-color: var(--gold); }
.dest--lg { grid-column: span 2; grid-row: span 2; }
.dest--tall { grid-row: span 2; }
.dest--wide { grid-column: span 2; }

/* ---------- Tour cards ---------- */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.2vw, 2rem); }
.tour {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.tour:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.tour__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tour__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.tour:hover .tour__media img { transform: scale(1.06); }
.tour__tag { position: absolute; top: 1rem; left: 1rem; background: rgba(250,250,249,.92); backdrop-filter: blur(4px); color: var(--ink); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; padding: .4rem .7rem; border-radius: 2px; }
.tour__days { position: absolute; bottom: 1rem; right: 1rem; background: rgba(28,25,23,.78); color: #fff; font-size: .7rem; letter-spacing: .08em; padding: .4rem .7rem; border-radius: 2px; backdrop-filter: blur(4px); }
.tour__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.tour__region { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.tour__title { font-size: 1.4rem; margin-bottom: .7rem; }
.tour__desc { font-size: .92rem; color: var(--stone); margin-bottom: 1.1rem; }
.tour__highlights { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.3rem; }
.tour__highlights li { font-size: .72rem; color: var(--stone-soft); background: var(--cream); border: 1px solid var(--border); padding: .3rem .6rem; border-radius: 999px; letter-spacing: .02em; }
.tour__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.tour__price { font-family: var(--font-display); }
.tour__price .amt { font-size: 1.5rem; color: var(--ink); }
.tour__price .per { font-size: .72rem; color: var(--stone-soft); font-family: var(--font-sans); letter-spacing: .04em; display: block; }
.tour__price .from { font-size: .66rem; color: var(--stone-soft); font-family: var(--font-sans); letter-spacing: .1em; text-transform: uppercase; }

/* Filter chips */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.6rem; }
.chip {
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  padding: .6rem 1.15rem; border-radius: 999px; border: 1px solid var(--border); color: var(--stone);
  transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.tour.is-hidden { display: none; }

/* ---------- Feature list (why us) ---------- */
.features { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1.2rem,2.5vw,2.4rem); }
.feature { padding-top: 1.6rem; border-top: 1px solid var(--border); }
.section--dark .feature { border-color: var(--border-ink); }
.feature__icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 1.1rem; }
.feature__icon svg { width: 100%; height: 100%; stroke-width: 1.2; }
.feature h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.section--dark .feature h3 { color: #fff; }
.feature p { font-size: .9rem; color: var(--stone); }
.section--dark .feature p { color: rgba(255,255,255,.62); }

/* ---------- Experience band (parallax) ---------- */
.band { position: relative; min-height: 60vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.band__media { position: absolute; inset: -10% 0; z-index: -2; }
.band__media img { width: 100%; height: 120%; object-fit: cover; }
.band::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(90deg, rgba(12,10,9,.8), rgba(12,10,9,.4)); }
.band blockquote { max-width: 56ch; }
.band blockquote p { font-family: var(--font-display); font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.25; font-weight: 500; color: #fff; }
.band cite { display: block; margin-top: 1.6rem; font-family: var(--font-sans); font-style: normal; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.split__media .badge { position: absolute; bottom: -28px; left: -28px; background: var(--ink); color: #fff; padding: 1.4rem 1.6rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split__media .badge .n { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-soft); line-height: 1; }
.split__media .badge .t { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: .3rem; }
.split.reverse .split__media { order: 2; }
.checklist { display: grid; gap: 1rem; margin-top: 1.8rem; }
.checklist li { display: flex; gap: .9rem; align-items: flex-start; font-size: .96rem; color: var(--stone); }
.checklist svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---------- Testimonials ---------- */
.testi-track { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,2.4vw,2rem); }
.testi { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.8rem; display: flex; flex-direction: column; }
.testi .quote-mark { font-family: var(--font-display); font-size: 3.4rem; line-height: .6; color: var(--gold-soft); height: 28px; }
.testi p { font-size: 1rem; color: var(--stone); margin: 1rem 0 1.5rem; }
.testi .stars { color: var(--gold-bright); letter-spacing: 2px; margin-bottom: .9rem; font-size: .85rem; }
.testi__person { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--gold-soft); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem; flex-shrink: 0; }
.testi__person .who b { display: block; font-family: var(--font-sans); font-weight: 500; font-size: .92rem; color: var(--ink); }
.testi__person .who span { font-size: .76rem; color: var(--stone-soft); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; text-align: center; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content:""; position:absolute; inset:0; z-index:-1; background: rgba(12,10,9,.7); }
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 50ch; margin: 1.2rem auto 2rem; }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3; column-gap: 1rem; }
.gallery-grid figure { break-inside: avoid; margin-bottom: 1rem; position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: zoom-in; }
.gallery-grid img { width: 100%; transition: transform .8s var(--ease-out); }
.gallery-grid figure::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(12,10,9,.55)); opacity: 0; transition: opacity .4s var(--ease); }
.gallery-grid figcaption { position: absolute; bottom: 1rem; left: 1rem; color: #fff; font-family: var(--font-display); font-size: 1.15rem; opacity: 0; transform: translateY(8px); transition: all .4s var(--ease); z-index: 2; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure:hover::after, .gallery-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(12,10,9,.94); display: grid; place-items: center; padding: 5vw; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: 6px; box-shadow: var(--shadow-lg); transform: scale(.96); transition: transform .4s var(--ease-out); }
.lightbox.open img { transform: scale(1); }
.lightbox__close { position: absolute; top: 1.6rem; right: 1.8rem; color: #fff; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: grid; place-items: center; }
.lightbox__close:hover { background: var(--gold); border-color: var(--gold); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: grid; place-items: center; }
.lightbox__nav:hover { background: var(--gold); border-color: var(--gold); }
.lightbox__nav.prev { left: 1.5rem; }
.lightbox__nav.next { right: 1.5rem; }

/* ---------- Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.info-card { display: flex; gap: 1.1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.info-card:last-child { border-bottom: none; }
.info-card .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-wash); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.info-card .ic svg { width: 20px; height: 20px; }
.info-card h4 { font-family: var(--font-sans); font-weight: 500; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone-soft); margin-bottom: .35rem; }
.info-card p { color: var(--ink); font-size: 1.05rem; }
.form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); margin-bottom: .5rem; font-weight: 500; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(161,98,7,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field .help { font-size: .76rem; color: var(--stone-soft); margin-top: .4rem; }
.field .error-msg { font-size: .76rem; color: var(--gold); margin-top: .4rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--gold); }
.field.invalid .error-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .78rem; color: var(--stone-soft); margin-top: 1rem; }
.form-success { display: none; padding: 1rem 1.2rem; background: var(--gold-wash); border: 1px solid var(--gold-soft); border-radius: var(--radius); color: var(--gold); font-size: .9rem; margin-bottom: 1.3rem; }
.form-success.show { display: block; }

/* FAQ accordion */
.faq { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; text-align: left; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.faq-q .pm { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); background: var(--gold); }
.faq-q .pm::before { width: 14px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 14px; transition: transform .35s var(--ease); }
.faq-item.open .pm::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding-bottom: 1.4rem; color: var(--stone); font-size: .96rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: rgba(255,255,255,.66); padding-top: clamp(3.5rem,7vw,5.5rem); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; font-size: 1.7rem; margin-bottom: 1rem; }
.footer p { font-size: .9rem; max-width: 34ch; }
.footer h5 { font-family: var(--font-sans); font-weight: 500; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
.footer ul li { margin-bottom: .7rem; }
.footer ul a { font-size: .9rem; transition: color .3s; }
.footer ul a:hover { color: var(--gold-soft); }
.footer .social { display: flex; gap: .8rem; margin-top: 1.4rem; }
.footer .social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; transition: all .3s var(--ease); }
.footer .social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-3px); }
.footer .social svg { width: 17px; height: 17px; }
.newsletter { display: flex; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); overflow: hidden; margin-top: 1rem; }
.newsletter input { flex: 1; background: transparent; border: none; padding: .8rem 1rem; color: #fff; font: inherit; font-size: .88rem; }
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter input:focus { outline: none; }
.newsletter button { background: var(--gold); color: var(--ink); padding-inline: 1.1rem; display: grid; place-items: center; transition: background .3s; }
.newsletter button:hover { background: var(--gold-bright); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-block: 1.8rem; font-size: .8rem; }
.footer__bottom a:hover { color: var(--gold-soft); }
.placeholder-note { color: var(--gold-soft); font-style: italic; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"]{ transition-delay: .08s; }
[data-reveal-delay="2"]{ transition-delay: .16s; }
[data-reveal-delay="3"]{ transition-delay: .24s; }
[data-reveal-delay="4"]{ transition-delay: .32s; }
[data-reveal-delay="5"]{ transition-delay: .40s; }

/* ---------- Image placeholder shimmer (until user adds photos) ---------- */
.ph { background: linear-gradient(135deg, #e9e3d6, #f4efe6, #e3ddcf); position: relative; }
.ph::after {
  content: attr(data-ph); position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  font-family: var(--font-sans); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--stone-soft);
  padding: 1rem; line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .bento, .places-grid { grid-template-columns: repeat(2, 1fr); }
  .dest--lg { grid-column: span 2; grid-row: span 1; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2,1fr); }
  .testi-track { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta.desktop { display: none; }
  .nav-toggle { display: block; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 1.5rem 1rem; }
  .bento, .places-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .dest--lg, .dest--wide, .dest--tall { grid-column: span 1; grid-row: span 1; }
  .tours-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split__media { order: 0; }
  .split__media .badge { left: 1rem; bottom: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .hero__scroll { display: none; }
}
@media (max-width: 460px) {
  .gallery-grid { columns: 1; }
}

/* ===================================================================
   Tour detail / itinerary pages
   =================================================================== */
.itin { display: grid; grid-template-columns: 1.65fr 1fr; gap: 3.2rem; align-items: start; }
.itin__main > .eyebrow { margin-bottom: 1.1rem; }
.itin__lead { font-size: 1.12rem; color: var(--stone); line-height: 1.75; max-width: 60ch; }

.itin__section-title { font-family: var(--font-display); font-size: 1.55rem; color: var(--ink); margin: 2.6rem 0 1.3rem; }
.itin__main .checklist { margin-top: 0; }

/* Day-by-day timeline */
.day-plan { display: grid; gap: 0; margin-top: .4rem; }
.day { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding-bottom: 1.9rem; position: relative; }
.day:last-child { padding-bottom: 0; }
.day__rail { display: flex; flex-direction: column; align-items: center; }
.day__n { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: .82rem; letter-spacing: .06em; color: var(--gold);
  background: var(--cream, #F7F3EC); border: 1px solid var(--gold-soft); text-transform: uppercase; }
.day__line { flex: 1; width: 2px; margin-top: .5rem; background: linear-gradient(var(--gold-soft), transparent); }
.day:last-child .day__line { display: none; }
.day__body { padding-top: .35rem; }
.day__body h4 { font-size: 1.02rem; color: var(--ink); margin-bottom: .3rem; }
.day__body p { font-size: .95rem; color: var(--stone); line-height: 1.65; margin: 0; }

/* Sticky booking / facts aside */
.itin__aside { position: sticky; top: 96px; display: grid; gap: 1.4rem; }
.itin-card { border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem 1.5rem; background: #fff; }
.itin-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); margin-bottom: 1.1rem; }
.itin-card .price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1.2rem; }
.itin-card .price .from { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone-soft); }
.itin-card .price .amt { font-family: var(--font-display); font-size: 2rem; color: var(--ink); }
.itin-card .price .per { font-size: .82rem; color: var(--stone-soft); }
.itin-card .btn { width: 100%; justify-content: center; }
.itin-meta { display: grid; gap: .7rem; margin: 0 0 1.3rem; }
.itin-meta li { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; color: var(--stone);
  padding-bottom: .7rem; border-bottom: 1px dashed var(--border); }
.itin-meta li:last-child { border-bottom: 0; padding-bottom: 0; }
.itin-meta b { color: var(--ink); font-weight: 500; text-align: right; }
.itin-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.itin-tags span { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-soft); border-radius: 999px; padding: .35rem .7rem; }

/* Signature experience quote band */
.signature { background: var(--ink); color: #fff; border-radius: 20px; padding: 3rem 2.4rem; margin-top: 3rem; position: relative; overflow: hidden; }
.signature .eyebrow { color: var(--gold-soft); }
.signature blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.5; color: #fff; margin: 1rem 0 0; max-width: 42ch; }
.signature::after { content: "\201C"; position: absolute; right: 1.5rem; top: -1rem; font-family: var(--font-display);
  font-size: 12rem; color: rgba(199,146,14,.16); line-height: 1; pointer-events: none; }

@media (max-width: 900px) {
  .itin { grid-template-columns: 1fr; gap: 2.4rem; }
  .itin__aside { position: static; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__media img { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ===================================================================
   Graceful image placeholders
   Rich gradient fills so the site looks premium & intentional BEFORE
   real photos are added. Gradients sit behind each <img>; when the
   photo loads it covers them. Filename labels show only when an image
   is genuinely missing (img-missing added via onerror).
   =================================================================== */
.ph { background-color: #241f1a; background-repeat: no-repeat; background-size: cover; background-position: center; }
.ph.img-missing > img,
.ph.img-missing img { display: none; }

/* labels: hidden by default, shown only when the image is missing */
.ph::after { display: none; }
.ph.img-missing::after {
  content: attr(data-ph);
  display: inline-block;
  position: absolute; left: 12px; bottom: 12px; top: auto; right: auto;
  max-width: calc(100% - 24px);
  font-family: var(--font-sans); font-size: .58rem; font-weight: 500;
  letter-spacing: .04em; text-transform: none; line-height: 1;
  color: rgba(255,255,255,.8); background: rgba(12,10,9,.42);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: .35rem .55rem; border-radius: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  pointer-events: none; z-index: 3;
}
/* keep the big cinematic panels clean (no filename label) */
.hero__media.img-missing::after,
.page-hero__media.img-missing::after,
.cta-band__media.img-missing::after,
.band__media.img-missing::after { display: none; }

/* Cinematic dark gradients for full-bleed sections */
.hero__media { background-image: radial-gradient(130% 110% at 78% 12%, #57441f 0%, #2a2117 46%, #0c0a09 100%); }
.page-hero__media { background-image: linear-gradient(125deg, #1b1714 0%, #33291d 52%, #5e4720 100%); }
.band__media { background-image: linear-gradient(120deg, #14110e 0%, #2b2218 55%, #4f3d1f 100%); }
.cta-band__media { background-image: linear-gradient(125deg, #201a14 0%, #3a2c1a 60%, #6e5223 100%); }

/* Destination bento — distinct rich tones per tile */
.bento .dest:nth-child(1) { background-image: linear-gradient(155deg, #9a763121, #2c2113), linear-gradient(155deg, #8a6a2e, #2c2113); }
.bento .dest:nth-child(2) { background-image: linear-gradient(155deg, #3f5130, #161d11); }
.bento .dest:nth-child(3) { background-image: linear-gradient(155deg, #8c4e2b, #2a160e); }
.bento .dest:nth-child(4) { background-image: linear-gradient(155deg, #3c4a57, #161c22); }
.bento .dest:nth-child(5) { background-image: linear-gradient(155deg, #2f5347, #112019); }
.bento .dest:nth-child(6) { background-image: linear-gradient(155deg, #6e5436, #241a11); }

/* Gujarat sightseeing grid — reuses .dest cards, richer tone cycle for placeholders */
.places-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 1rem; }
.places-grid .dest:nth-child(8n+1) { background-image: linear-gradient(155deg, #8a6a2e, #2c2113); }
.places-grid .dest:nth-child(8n+2) { background-image: linear-gradient(155deg, #3f5130, #161d11); }
.places-grid .dest:nth-child(8n+3) { background-image: linear-gradient(155deg, #8c4e2b, #2a160e); }
.places-grid .dest:nth-child(8n+4) { background-image: linear-gradient(155deg, #3c4a57, #161c22); }
.places-grid .dest:nth-child(8n+5) { background-image: linear-gradient(155deg, #2f5347, #112019); }
.places-grid .dest:nth-child(8n+6) { background-image: linear-gradient(155deg, #6e5436, #241a11); }
.places-grid .dest:nth-child(8n+7) { background-image: linear-gradient(155deg, #5a4a6a, #1c1625); }
.places-grid .dest:nth-child(8n+8) { background-image: linear-gradient(155deg, #7a4438, #241110); }

/* Tour cards — warm photo-like fills */
.tour__media { background-image: linear-gradient(155deg, #c9b48d, #8f7245); }
.tours-grid .tour:nth-child(3n+2) .tour__media { background-image: linear-gradient(155deg, #a7b39a, #5f6f4c); }
.tours-grid .tour:nth-child(3n+3) .tour__media { background-image: linear-gradient(155deg, #d0a989, #936044); }

/* Split (about story) */
.split__media.ph { border-radius: var(--radius-lg); background-image: linear-gradient(155deg, #6e5436, #241a11); box-shadow: var(--shadow-lg); }
.split__media.img-missing { min-height: 460px; }

/* Gallery — varied tones + heights for a real masonry feel when empty */
.gallery-grid figure.ph:nth-child(3n+1) { background-image: linear-gradient(155deg, #8a6a2e, #2c2113); }
.gallery-grid figure.ph:nth-child(3n+2) { background-image: linear-gradient(155deg, #3f5130, #161d11); }
.gallery-grid figure.ph:nth-child(3n+3) { background-image: linear-gradient(155deg, #8c4e2b, #2a160e); }
.gallery-grid figure.img-missing { min-height: 280px; }
.gallery-grid figure.img-missing:nth-child(3n+1) { min-height: 340px; }
.gallery-grid figure.img-missing:nth-child(3n+2) { min-height: 240px; }
/* gallery captions: always visible over a placeholder so it doesn't look empty */
.gallery-grid figure.img-missing::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12,10,9,.5));
  z-index: 1;
}
.gallery-grid figure.img-missing figcaption { opacity: 1; transform: none; }

/* Fix: .ph (position:relative) was overriding the full-bleed media's
   position:absolute due to equal specificity + later source order.
   Restore absolute fill for the cinematic background panels. */
.hero__media.ph,
.page-hero__media.ph,
.band__media.ph,
.cta-band__media.ph { position: absolute; }

/* ---------- B2B positioning & hero trust strip ---------- */
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-top: 2.1rem; font-size: .78rem; letter-spacing: .03em; color: rgba(255,255,255,.82); }
.hero__trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-soft); display: inline-block; }
.hero__trust span:first-child { color: var(--gold-soft); font-weight: 500; }
.section--dark .checklist li { color: rgba(255,255,255,.8); }
.b2b-badge { display: inline-flex; align-items: center; gap: .55rem; padding: .4rem .85rem; border: 1px solid var(--gold-soft); border-radius: 999px; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--gold-soft); margin-bottom: 1.4rem; backdrop-filter: blur(4px); }
.b2b-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); display: inline-block; box-shadow: 0 0 0 3px rgba(199,146,14,.25); }
.stays-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 1rem; }
@media (max-width: 760px) { .hero__trust { gap: .5rem .9rem; } }

/* Fix: neutralise the old light .ph shimmer everywhere; give Stays tiles rich fills */
.ph { background-image: none; }
.hero__media { background-image: radial-gradient(130% 110% at 78% 12%, #57441f 0%, #2a2117 46%, #0c0a09 100%); }
.page-hero__media { background-image: linear-gradient(125deg, #1b1714 0%, #33291d 52%, #5e4720 100%); }
.band__media { background-image: linear-gradient(120deg, #14110e 0%, #2b2218 55%, #4f3d1f 100%); }
.cta-band__media { background-image: linear-gradient(125deg, #201a14 0%, #3a2c1a 60%, #6e5223 100%); }
.tour__media { background-image: linear-gradient(155deg, #c9b48d, #8f7245); }
.tours-grid .tour:nth-child(3n+2) .tour__media { background-image: linear-gradient(155deg, #a7b39a, #5f6f4c); }
.tours-grid .tour:nth-child(3n+3) .tour__media { background-image: linear-gradient(155deg, #d0a989, #936044); }
.split__media.ph { background-image: linear-gradient(155deg, #6e5436, #241a11); }
.stays-grid .dest:nth-child(1) { background-image: linear-gradient(155deg, #8a6a2e, #2c2113); }
.stays-grid .dest:nth-child(2) { background-image: linear-gradient(155deg, #3c4a57, #161c22); }
.stays-grid .dest:nth-child(3) { background-image: linear-gradient(155deg, #2f5347, #112019); }
.stays-grid .dest:nth-child(4) { background-image: linear-gradient(155deg, #6e5436, #241a11); }
.stays-grid .dest:nth-child(5) { background-image: linear-gradient(155deg, #8c4e2b, #2a160e); }
.gallery-grid figure.ph:nth-child(3n+1) { background-image: linear-gradient(155deg, #8a6a2e, #2c2113); }
.gallery-grid figure.ph:nth-child(3n+2) { background-image: linear-gradient(155deg, #3f5130, #161d11); }
.gallery-grid figure.ph:nth-child(3n+3) { background-image: linear-gradient(155deg, #8c4e2b, #2a160e); }
@media (max-width: 1024px){ .stays-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 760px){ .stays-grid { grid-template-columns: 1fr; } .stays-grid .dest--wide { grid-column: span 1; } }

/* ---------- States grid (multi-state) ---------- */
.states-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.states-grid .dest { min-height: 300px; }
.states-grid .dest:nth-child(1) { background-image: linear-gradient(155deg, #8a6a2e, #2c2113); }
.states-grid .dest:nth-child(2) { background-image: linear-gradient(155deg, #9a4e2b, #2a160e); }
.states-grid .dest:nth-child(3) { background-image: linear-gradient(155deg, #3c5a6b, #14202a); }
.states-grid .dest:nth-child(4) { background-image: linear-gradient(155deg, #2f7a6a, #0f2620); }
.states-grid .dest:nth-child(5) { background-image: linear-gradient(155deg, #6b5a3a, #1f1a12); }
.state-status { position: absolute; top: 1rem; right: 1rem; z-index: 3; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: .35rem .6rem; border-radius: 999px; background: rgba(250,250,249,.92); color: var(--ink); }
.state-status--new { background: var(--gold); color: #fff; }
.state-status--soon { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(4px); }
@media (max-width: 1024px){ .states-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px){ .states-grid { grid-template-columns: repeat(2,1fr); } .states-grid .dest { min-height: 220px; } }

/* ===================================================================
   Intro / opening animation (homepage, once per session)
   Travel-themed: brand reveal + gold flight path with a flying plane,
   then the overlay slides up to reveal the site.
   =================================================================== */
#intro {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(120% 120% at 50% 38%, #241c12 0%, #0c0a09 72%);
  display: grid; place-items: center; text-align: center;
  transition: transform 1s cubic-bezier(.76,0,.24,1), opacity .9s ease;
  /* safety: auto-dismiss even if JS doesn't run */
  animation: introAuto 0s linear 4.2s forwards;
}
#intro.intro--done { transform: translateY(-100%); opacity: 0; pointer-events: none; }
@keyframes introAuto { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.intro__inner { padding: 2rem; }
.intro__brand {
  font-family: var(--font-display); font-weight: 600; color: #fff;
  font-size: clamp(2rem, 6.5vw, 3.6rem); letter-spacing: -.01em; line-height: 1;
  opacity: 0; filter: blur(10px); transform: translateY(12px);
  animation: introBrand 1.1s cubic-bezier(.16,1,.3,1) .15s forwards;
}
.intro__brand span { color: var(--gold-bright); }
.intro__path { width: clamp(240px, 62vw, 340px); height: auto; display: block; margin: 1.5rem auto .5rem; overflow: visible; }
.intro__line { stroke-dasharray: 100; stroke-dashoffset: 100; animation: introDraw 1.6s cubic-bezier(.16,1,.3,1) .5s forwards; }
.intro__tag {
  font-family: var(--font-sans); font-size: .68rem; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold-soft); opacity: 0;
  animation: introFade .9s ease 1.05s forwards;
}
.intro__bar { width: 130px; height: 2px; background: rgba(255,255,255,.14); border-radius: 2px; margin: 1.4rem auto 0; overflow: hidden; }
.intro__bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); animation: introBar 2s cubic-bezier(.5,0,.2,1) .35s forwards; }
@keyframes introBrand { to { opacity: 1; filter: blur(0); transform: none; } }
@keyframes introDraw { to { stroke-dashoffset: 0; } }
@keyframes introFade { to { opacity: 1; } }
@keyframes introBar { to { width: 100%; } }
@media (prefers-reduced-motion: reduce) { #intro { display: none !important; } }

/* ===================================================================
   COVER — cinematic intro that reveals the site on scroll
   (fixed behind a .reveal panel that slides up over it)
   =================================================================== */
.cover {
  position: fixed; inset: 0; z-index: 1; overflow: hidden;
  display: grid; place-items: center; text-align: center; color: #fff;
  background: radial-gradient(135% 120% at 50% 34%, #2a2013 0%, #130d09 55%, #0a0807 100%);
}
.cover__aura { position: absolute; inset: -20%; z-index: 0; pointer-events: none; opacity: 0; }
.cover__aura::before, .cover__aura::after { content: ""; position: absolute; border-radius: 50%; filter: blur(64px); mix-blend-mode: screen; }
.cover__aura::before { width: 48vw; height: 48vw; left: 6%; top: 4%; background: radial-gradient(circle, rgba(199,146,14,.55), transparent 64%); animation: auraA 16s ease-in-out infinite; }
.cover__aura::after { width: 42vw; height: 42vw; right: 4%; bottom: 2%; background: radial-gradient(circle, rgba(161,98,7,.5), transparent 64%); animation: auraB 20s ease-in-out infinite; }
.cover--in .cover__aura { animation: coverFade 1.8s ease .1s forwards; }
.cover__vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(120% 100% at 50% 44%, transparent 52%, rgba(8,6,5,.72) 100%); }
.cover__inner { position: relative; z-index: 2; padding: 2rem; max-width: 760px; will-change: transform, opacity; }

.cover__kicker { display: inline-flex; align-items: center; gap: .7rem; font-size: .72rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft); opacity: 0; }
.cover__kicker i { width: 26px; height: 1px; background: var(--gold-bright); display: inline-block; }
.cover--in .cover__kicker { animation: introFade .9s ease .15s forwards; }

.cover__title { font-family: var(--font-display); font-weight: 600; line-height: 1; margin: 1.1rem 0 .25rem; font-size: clamp(2.5rem, 8.5vw, 5.4rem); letter-spacing: -.01em; color: #fff; }
.cover__title i { font-style: normal; color: var(--gold-bright); }
.cmask { display: inline-block; overflow: hidden; padding-bottom: .1em; }
.cmask > span { display: inline-block; transform: translateY(118%); }
.cover--in .cmask > span { animation: maskUp 1.2s cubic-bezier(.16,1,.3,1) .3s forwards; }

.cover__tag { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); opacity: 0; }
.cover--in .cover__tag { animation: introFade 1s ease .7s forwards; }

.cover__route { width: clamp(280px, 72vw, 520px); height: auto; display: block; margin: 2rem auto .5rem; overflow: visible; }
.cover__line { stroke-dasharray: 100; stroke-dashoffset: 100; }
.cover--in .cover__line { animation: introDraw 2.1s cubic-bezier(.16,1,.3,1) .55s forwards; }
.cover__nodes circle { opacity: 0; transform-box: fill-box; transform-origin: center; }
.cover--in .cover__nodes circle { animation: nodePop .5s cubic-bezier(.16,1,.3,1) forwards; }
.cover--in .cover__nodes circle:nth-child(1){ animation-delay:.65s; }
.cover--in .cover__nodes circle:nth-child(2){ animation-delay:1.05s; }
.cover--in .cover__nodes circle:nth-child(3){ animation-delay:1.45s; }
.cover--in .cover__nodes circle:nth-child(4){ animation-delay:1.9s; }
.cover--in .cover__nodes circle:nth-child(5){ animation-delay:2.35s; }
.cover__plane { opacity: 0; }
.cover--in .cover__plane { animation: introFade .3s ease .6s forwards; }

.cover__cue { position: absolute; left: 50%; bottom: clamp(1.6rem, 5vh, 3rem); transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .7rem; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.58); opacity: 0; }
.cover--in .cover__cue { animation: introFade 1s ease 1.7s forwards; }
.cover__cue i { width: 1px; height: 42px; background: linear-gradient(var(--gold-soft), transparent); position: relative; overflow: hidden; }
.cover__cue i::after { content: ""; position: absolute; inset: 0; background: var(--gold-soft); animation: cueRun 1.8s cubic-bezier(.7,0,.3,1) infinite; }

@keyframes auraA { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(6%,4%) scale(1.15);} }
@keyframes auraB { 0%,100%{ transform: translate(0,0) scale(1.05);} 50%{ transform: translate(-5%,-3%) scale(.95);} }
@keyframes coverFade { to { opacity: 1; } }
@keyframes maskUp { to { transform: none; } }
@keyframes nodePop { 0%{ opacity:0; transform: scale(0);} 60%{ opacity:1; transform: scale(1.35);} 100%{ opacity:1; transform: scale(1);} }
@keyframes cueRun { 0%{ transform: translateY(-100%);} 100%{ transform: translateY(100%);} }

/* Reveal panel slides up over the fixed cover */
.reveal { position: relative; z-index: 2; margin-top: 100svh; background: var(--ivory); box-shadow: 0 -34px 70px rgba(8,6,5,.55); }
/* hide the fixed header while the cover fully fills the screen */
.site-header { transition: opacity .5s ease, background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease); }
body.at-cover .site-header { opacity: 0; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .cover__aura { opacity: 1; }
  .cover__aura::before, .cover__aura::after { animation: none; }
  .cover__kicker, .cover__tag, .cover__plane, .cover__cue { opacity: 1; animation: none; }
  .cmask > span { transform: none; animation: none; }
  .cover__line { stroke-dashoffset: 0; animation: none; }
  .cover__nodes circle { opacity: 1; animation: none; }
  .cover__cue i::after { animation: none; }
}

/* ===================================================================
   Premium animated STATE cards (Where We Operate)
   =================================================================== */
.states-grid .dest {
  border-radius: 16px;
  box-shadow: 0 14px 32px -22px rgba(28,25,23,.55);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.states-grid .dest img { transition: transform 1.3s var(--ease-out), filter .6s ease; filter: saturate(.9) brightness(.9); }
.states-grid .dest:hover { transform: translateY(-16px); box-shadow: 0 46px 64px -30px rgba(18,12,7,.72); }
.states-grid .dest:hover img { transform: scale(1.14); filter: saturate(1.06) brightness(1.05); }

/* gold light sweep across the card on hover */
.states-grid .dest::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit;
  background: linear-gradient(115deg, transparent 38%, rgba(231,213,172,.30) 50%, transparent 62%);
  transform: translateX(-130%); transition: transform 1s var(--ease-out);
}
.states-grid .dest:hover::before { transform: translateX(130%); }

/* content lifts; gold underline grows under the title */
.states-grid .dest > div:last-child { position: relative; z-index: 3; transition: transform .55s var(--ease-out); }
.states-grid .dest:hover > div:last-child { transform: translateY(-6px); }
.states-grid .dest h3 { position: relative; display: inline-block; }
.states-grid .dest h3::after {
  content: ""; position: absolute; left: 0; bottom: -7px; height: 2px; width: 100%;
  background: var(--gold-bright); transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.states-grid .dest:hover h3::after { transform: scaleX(1); }
.states-grid .dest .dest-meta { transition: color .45s ease, letter-spacing .45s ease; }
.states-grid .dest:hover .dest-meta { color: var(--gold-soft); letter-spacing: .22em; }

/* status badge: hover pop + shimmer on the NEW badges */
.states-grid .state-status { transition: transform .5s var(--ease-out); z-index: 4; }
.states-grid .dest:hover .state-status { transform: scale(1.06); }
.state-status--new { position: relative; overflow: hidden; }
.state-status--new::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  transform: translateX(-130%); animation: badgeShine 4s ease-in-out 1.6s infinite;
}
@keyframes badgeShine { 0%, 100% { transform: translateX(-130%); } 14%, 86% { transform: translateX(130%); } }

/* cinematic entrance: rise + scale-in + image zoom-settle (staggered via data-reveal-delay) */
.states-grid .dest[data-reveal] { opacity: 0; transform: translateY(48px) scale(.96); transition: opacity .95s var(--ease-out), transform .95s var(--ease-out); }
.states-grid .dest[data-reveal].in { opacity: 1; transform: none; }
.states-grid .dest[data-reveal].in img { animation: cardSettle 1.6s var(--ease-out); }
@keyframes cardSettle { from { transform: scale(1.22); } to { transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .state-status--new::after { animation: none; display: none; }
  .states-grid .dest[data-reveal] { opacity: 1; transform: none; }
  .states-grid .dest[data-reveal].in img { animation: none; }
}


/* ===================================================================
   INTERACTIVE INDIA MAP — luxury edition
   =================================================================== */
.indiamap { position: relative; background: radial-gradient(130% 120% at 50% 24%, #241b10 0%, #130d08 56%, #0a0806 100%); overflow: hidden; }
.indiamap__aura { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .7; }
.indiamap__aura::before, .indiamap__aura::after { content: ""; position: absolute; border-radius: 50%; filter: blur(72px); }
.indiamap__aura::before { width: 42vw; height: 42vw; left: 28%; top: 16%; background: radial-gradient(circle, rgba(199,146,14,.30), transparent 66%); animation: auraA 18s ease-in-out infinite; }
.indiamap__aura::after { width: 34vw; height: 34vw; right: 26%; bottom: 8%; background: radial-gradient(circle, rgba(161,98,7,.22), transparent 66%); animation: auraB 22s ease-in-out infinite; }
.indiamap .wrap { position: relative; z-index: 3; }

.indiamap__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.indiamap__particles span { position: absolute; bottom: -12px; width: 3px; height: 3px; border-radius: 50%; background: var(--gold-soft); opacity: 0; box-shadow: 0 0 6px rgba(231,213,172,.6); animation: floatUp linear infinite; }
@keyframes floatUp { 0% { transform: translateY(0) scale(1); opacity: 0; } 12% { opacity: .8; } 88% { opacity: .5; } 100% { transform: translateY(-88vh) scale(.3); opacity: 0; } }

.map-wrap { position: relative; width: 100%; max-width: 560px; margin: clamp(2rem,5vw,3.5rem) auto 0; aspect-ratio: 500 / 580; }
.india-map { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

.india-glow-fill { opacity: .55; }
.india-grid line { stroke: rgba(231,213,172,.09); stroke-width: .6; }
.india-dots { opacity: 0; }
.map-wrap.in .india-dots { animation: dotsFade 2.2s ease .5s forwards; }
@keyframes dotsFade { to { opacity: 1; } }
.india-outline { fill: none; stroke: url(#mapRoute); stroke-width: 1.7; filter: drop-shadow(0 0 8px rgba(199,146,14,.55)); stroke-dasharray: 1; stroke-dashoffset: 1; }
.map-wrap.in .india-outline { animation: drawIndia 3.4s cubic-bezier(.16,1,.3,1) .15s forwards; }
@keyframes drawIndia { to { stroke-dashoffset: 0; } }

.map-route { fill: none; stroke: url(#mapRoute); stroke-width: 1.8; stroke-dasharray: 4 6; stroke-linecap: round; opacity: 0; }
.map-wrap.in .map-route { opacity: .9; animation: routeDash 24s linear infinite; }
@keyframes routeDash { to { stroke-dashoffset: -200; } }
.map-plane path { fill: #F8F3EA; filter: drop-shadow(0 0 5px rgba(255,240,200,.85)); }
.map-compass { transform-origin: center; animation: mapSpin 44s linear infinite; opacity: .5; }
@keyframes mapSpin { to { transform: rotate(360deg); } }

/* pins */
.map-pin { position: absolute; left: var(--x); top: var(--y); z-index: 5; width: 0; height: 0; }
.map-pin__ring, .map-pin__ring2 { position: absolute; left: 0; top: 0; transform: translate(-50%,-50%); border-radius: 50%; border: 1.5px solid rgba(199,146,14,.6); width: 14px; height: 14px; animation: ripple 2.8s ease-out infinite; }
.map-pin__ring2 { animation-delay: 1.4s; }
@keyframes ripple { 0% { width: 12px; height: 12px; opacity: .85; } 100% { width: 76px; height: 76px; opacity: 0; } }
.map-pin__dot { position: absolute; left: 0; top: 0; transform: translate(-50%,-50%); width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffe9b0, #C7920E); box-shadow: 0 0 12px rgba(199,146,14,.9); transition: transform .3s var(--ease); }
.map-pin--flagship .map-pin__dot { background: radial-gradient(circle at 35% 30%, #fff, #e9d9b8); box-shadow: 0 0 16px rgba(255,240,200,.9); }
.map-pin__label { position: absolute; left: 15px; top: -9px; white-space: nowrap; font-family: var(--font-sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--gold-soft); text-shadow: 0 1px 8px rgba(0,0,0,.75); transition: color .3s; }
.map-pin:hover .map-pin__dot, .map-pin:focus-visible .map-pin__dot { transform: translate(-50%,-50%) scale(1.4); }
.map-pin:hover .map-pin__label, .map-pin:focus-visible .map-pin__label { color: #fff; }

.map-pin__card { position: absolute; left: 0; bottom: 22px; transform: translate(-50%, 10px) scale(.9); width: 182px; background: rgba(16,12,8,.95); border: 1px solid rgba(231,213,172,.28); border-radius: 12px; overflow: hidden; opacity: 0; visibility: hidden; pointer-events: none; box-shadow: var(--shadow-lg); transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), visibility .35s; }
.map-pin:hover .map-pin__card, .map-pin:focus-visible .map-pin__card { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); }
.map-pin__card img { width: 100%; height: 96px; object-fit: cover; display: block; }
.map-pin__card b { display: block; font-family: var(--font-display); font-size: 1.12rem; color: #fff; padding: .55rem .75rem 0; }
.map-pin__card i { display: block; font-style: normal; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); padding: .12rem .75rem .65rem; }

@media (max-width: 600px) { .map-pin__label { font-size: .62rem; } .map-pin__card { width: 144px; } .map-pin__card img { height: 78px; } }
@media (prefers-reduced-motion: reduce) {
  .map-pin__ring, .map-pin__ring2, .map-route, .map-compass, .indiamap__particles span, .indiamap__aura::before, .indiamap__aura::after { animation: none; }
  .india-outline { stroke-dashoffset: 0; } .india-dots { opacity: 1; }
}

/* ===================================================================
   MAP — hover a state to ZOOM into it & reveal its cities
   =================================================================== */
.map-wrap { overflow: hidden; border-radius: 20px; }
.india-map, .map-pin { transition: opacity .6s ease, filter .6s ease; }
.map-wrap.is-focus .india-map { opacity: .1; filter: blur(3px); }
.map-wrap.is-focus .map-pin { opacity: 0; pointer-events: none; }

.imap-focus { position: absolute; inset: 0; z-index: 8; pointer-events: none; }
.state-panel { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.12); transition: opacity .6s var(--ease-out), transform .75s var(--ease-out), visibility .6s; overflow: hidden; border-radius: 20px; }
.state-panel.is-on { opacity: 1; visibility: visible; transform: scale(1); pointer-events: auto; }
.state-panel__bg { position: absolute; inset: 0; z-index: 0; }
.state-panel__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.state-panel.is-on .state-panel__bg img { transition: transform 6s ease; transform: scale(1.14); }
.state-panel__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(9,6,4,.5), rgba(9,6,4,.8)); }
.state-panel__head { position: absolute; left: 0; right: 0; top: 6%; text-align: center; z-index: 3; }
.state-panel__head .k { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); }
.state-panel__head h3 { font-family: var(--font-display); font-size: clamp(1.7rem,5vw,2.9rem); color: #fff; margin-top: .25rem; text-shadow: 0 2px 22px rgba(0,0,0,.55); }
.state-panel__back { position: absolute; left: 14px; top: 14px; z-index: 5; pointer-events: auto; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; color: #fff; background: rgba(0,0,0,.35); backdrop-filter: blur(4px); }
.state-panel__back:hover { background: var(--gold); border-color: var(--gold); }
.state-panel__back svg { width: 18px; height: 18px; }
.state-panel__cta { position: absolute; left: 50%; bottom: 6.5%; transform: translateX(-50%); z-index: 5; pointer-events: auto; }

.city-pin { position: absolute; left: var(--x); top: var(--y); transform: translate(-50%,-50%); z-index: 2; opacity: 0; text-align: center; }
.city-pin::before { content: ""; position: absolute; left: 50%; top: -16px; transform: translateX(-50%); width: 9px; height: 9px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 12px var(--gold-bright); }
.city-pin__img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-soft); box-shadow: 0 8px 20px rgba(0,0,0,.55), 0 0 0 6px rgba(199,146,14,.14); display: block; margin: 0 auto; transition: transform .3s var(--ease), box-shadow .3s; }
.city-pin__name { display: inline-block; margin-top: 7px; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: #fff; background: rgba(10,7,5,.62); padding: .22rem .55rem; border-radius: 99px; white-space: nowrap; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.city-pin:hover .city-pin__img { transform: scale(1.14); box-shadow: 0 10px 26px rgba(0,0,0,.6), 0 0 0 8px rgba(199,146,14,.22); }
.state-panel.is-on .city-pin { animation-name: cityIn; animation-duration: .6s; animation-timing-function: var(--ease-out); animation-fill-mode: forwards; }
@keyframes cityIn { from { opacity: 0; transform: translate(-50%,-50%) translateY(16px) scale(.75); } to { opacity: 1; transform: translate(-50%,-50%) translateY(0) scale(1); } }

.map-hint { text-align: center; margin-top: 1rem; font-size: .72rem; letter-spacing: .1em; color: rgba(255,255,255,.4); }

@media (max-width: 600px) {
  .city-pin__img { width: 44px; height: 44px; }
  .city-pin__name { font-size: .56rem; }
}
@media (prefers-reduced-motion: reduce) {
  .city-pin::before { box-shadow: 0 0 8px var(--gold-bright); }
  .state-panel__bg img { transition: none !important; }
}
