/* ============================================================
   ATULYA HELI YATRA — SHARED STYLES (shared.css)
   Dark Himalayan theme • Fraunces + Instrument Sans + JetBrains Mono
   ============================================================ */
:root {
  --night: #0B0D0E;
  --night-2: #12161A;
  --charcoal: #1D2225;
  --bone: #F5F1E8;
  --bone-muted: #D6CFBE;
  --mist: #8A93A0;
  --brass: #D4A84A;
  --brass-deep: #A78231;
  --saffron: #E67E3E;
  --saffron-deep: #B55518;
  --crimson: #8B2E1F;
  --evergreen: #1D2D2F;

  --fs-micro: clamp(0.72rem, 0.68rem + 0.2vw, 0.78rem);
  --fs-small: clamp(0.84rem, 0.80rem + 0.2vw, 0.92rem);
  --fs-body: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --fs-lead: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  --fs-h3: clamp(1.5rem, 1.1rem + 2vw, 2.25rem);
  --fs-h2: clamp(2.25rem, 1.5rem + 3.5vw, 4.5rem);
  --fs-h1: clamp(3.5rem, 1.5rem + 12vw, 14rem);

  --e-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --e-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  background: var(--night);
  color: var(--bone);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.55;
  /* overflow-x:hidden removed here — it breaks position:sticky. See bottom of file. */
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--brass); color: var(--night); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--night); }
::-webkit-scrollbar-thumb { background: var(--brass-deep); border-radius: 8px; }

.display {
  font-family: "Fraunces", "Times New Roman", serif;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.88;
}
.display-italic {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-weight: 300;
}
.label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 400;
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brass);
}

/* film grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
}

/* ================== NAV ================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem clamp(1.25rem, 3vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  transition: transform 0.5s var(--e-expo), background 0.5s, backdrop-filter 0.5s;
  color: var(--bone);
}
.nav.scrolled {
  background: rgba(11,13,14,0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(212,168,74,0.12);
}
.logo { display: flex; align-items: center; }
.logo img { height: 68px; width: auto; display: block; object-fit: contain; }
.nav-logo {
  font-family: "Fraunces", serif;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  display: flex; gap: 0.6em; align-items: baseline;
  color: var(--bone);
}
.nav-logo .mark {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
  transform: translateY(-0.15em);
  animation: pulse 2.8s var(--e-quart) infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: translateY(-0.15em) scale(1); }
  50% { opacity: 0.4; transform: translateY(-0.15em) scale(1.3); }
}
.nav-links {
  display: flex; gap: 1.8rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.nav-links a { position: relative; padding: 0.25rem 0; color: var(--bone); }
.nav-links a::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--e-expo);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--brass); }
.nav-cta {
  padding: 0.7rem 1.2rem;
  background: var(--brass);
  color: var(--night);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  transition: background 0.4s, transform 0.4s var(--e-expo);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--bone); transform: translateY(-2px); }
.nav-burger { display: none; width: 42px; height: 42px; border-radius: 50%; background: rgba(212,168,74,0.1); align-items: center; justify-content: center; border: 1px solid rgba(212,168,74,0.3); }
.nav-burger span { display: block; width: 16px; height: 1.5px; background: var(--brass); position: relative; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--brass); }
.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--night);
  padding: 6rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transform: translateY(-100%); transition: transform 0.6s var(--e-expo);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 1rem + 3vw, 2.8rem);
  font-weight: 300; letter-spacing: -0.02em;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(212,168,74,0.15);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--bone);
}
.mobile-menu a em { font-variation-settings: "SOFT" 100, "WONK" 1; font-style: italic; color: var(--brass); font-size: 0.7em; }

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: transform 0.4s var(--e-expo), background 0.4s, color 0.4s;
  white-space: nowrap;
}
.btn-primary { background: var(--brass); color: var(--night); }
.btn-primary:hover { background: var(--bone); transform: translateY(-2px); }
.btn-saffron { background: var(--saffron); color: var(--bone); }
.btn-saffron:hover { background: var(--saffron-deep); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(245,241,232,0.3);
  color: var(--bone);
}
.btn-ghost:hover { border-color: var(--bone); background: rgba(245,241,232,0.08); transform: translateY(-2px); }
.arrow { display: inline-block; transition: transform 0.4s var(--e-expo); }
.btn:hover .arrow { transform: translateX(4px); }

.chip {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(212,168,74,0.3);
  background: rgba(212,168,74,0.08);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
}

/* ================== SECTION SCAFFOLD ================== */
section {
  position: relative;
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 4rem);
}
.container { max-width: 1440px; margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.section-head .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
  border-top: 1px solid var(--brass);
  padding-top: 0.5rem;
  white-space: nowrap;
}
.section-head h2 {
  font-size: var(--fs-h2);
  color: var(--bone);
  max-width: 20ch;
}
.section-head h2 em { color: var(--brass); font-variation-settings: "SOFT" 100, "WONK" 1; font-style: italic; }
.section-head .side {
  max-width: 44ch;
  font-size: var(--fs-body);
  color: var(--bone-muted);
  justify-self: end;
  text-align: right;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
  .section-head .side { justify-self: start; text-align: left; }
}

/* ================== REVEAL ================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s var(--e-expo), transform 1s var(--e-expo);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ================== FOOTER ================== */
.footer {
  background: #050607;
  color: var(--bone-muted);
  padding: 4rem clamp(1.25rem, 4vw, 4rem) 2rem;
  border-top: 1px solid rgba(245,241,232,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1440px;
  margin: 0 auto 3rem;
}
.footer-brand {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--bone);
  line-height: 1;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.footer-brand + p {
  max-width: 36ch;
  margin-top: 1rem;
  font-size: var(--fs-small);
  line-height: 1.55;
}
.footer-col h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.5rem; font-size: var(--fs-small); }
.footer-col a { transition: color 0.3s; }
.footer-col a:hover { color: var(--bone); }
.footer-bottom {
  max-width: 1440px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,241,232,0.08);
  display: flex; justify-content: space-between; gap: 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  flex-wrap: wrap;
}
@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* ================== CTA ================== */
.cta {
  background:
    radial-gradient(ellipse 60% 70% at 50% 40%, rgba(212,168,74,0.18), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(230,126,62,0.15), transparent 60%),
    var(--night);
  text-align: center;
  padding-block: clamp(5rem, 13vh, 9rem);
  overflow: hidden;
}
.cta-headline {
  font-family: "Fraunces", serif;
  font-weight: 200;
  font-size: clamp(2.5rem, 1rem + 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--bone);
  max-width: 18ch;
  margin: 0 auto 1.5rem;
}
.cta-headline em { color: var(--brass); font-variation-settings: "SOFT" 100, "WONK" 1; font-style: italic; }
.cta-sub {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: var(--fs-lead);
  color: var(--bone-muted);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
  line-height: 1.4;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: left;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.contact-item {
  padding: 1.5rem;
  background: rgba(29,34,37,0.5);
  border: 1px solid rgba(245,241,232,0.08);
  border-radius: 4px;
  transition: border-color 0.4s;
}
.contact-item:hover { border-color: var(--brass); }
.contact-item .lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
}
.contact-item .val {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  color: var(--bone);
  margin-top: 0.5rem;
  line-height: 1.4;
  word-break: break-word;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01s !important; transition-duration: 0.01s !important; }
}

/* rotor spin */
@keyframes spin { to { transform: rotate(360deg); } }
.rotor-top { transform-origin: 104px 52px; animation: spin 0.08s linear infinite; }
.rotor-tail { transform-origin: 196px 70px; animation: spin 0.06s linear infinite; }

/* ============================================================
   JOURNEY MAP — scroll-pinned animation for detail pages
   (analogous to home helicopter timeline, but road/temple themed)
   ============================================================ */
.journey-section {
  background: linear-gradient(180deg, var(--night) 0%, #0E1114 100%);
  padding-block: clamp(3rem, 7vh, 6rem);
}
.journey-section .timeline-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end;
  margin-bottom: 2rem;
}
.journey-section .timeline-intro .title {
  font-family: "Fraunces", serif; font-weight: 300;
  font-size: var(--fs-h2); line-height: 0.95;
  letter-spacing: -0.03em; color: var(--bone);
}
.journey-section .timeline-intro .title em {
  color: var(--brass);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-style: italic;
}
.journey-section .timeline-intro .desc {
  color: var(--bone-muted); font-size: var(--fs-lead);
  max-width: 50ch; line-height: 1.6;
}
@media (max-width: 860px) {
  .journey-section .timeline-intro { grid-template-columns: 1fr; }
}

.journey-scene {
  position: relative;
  /* height scales with waypoint count — set inline by JS */
}
.journey-pin {
  position: sticky; top: 0; height: 100vh;
  display: grid; grid-template-columns: 1fr 0.95fr;
  gap: 2rem; padding: 2rem 0; overflow: hidden;
}
.journey-left {
  position: relative; padding: 2rem 0;
  display: flex; flex-direction: column; justify-content: center;
}
.journey-step {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.6s var(--e-expo), transform 0.6s var(--e-expo);
  padding: 2rem 0;
}
.journey-step.active { opacity: 1; transform: translateY(0); }
.journey-step .step-num {
  font-family: "JetBrains Mono", monospace; font-size: 0.78rem;
  letter-spacing: 0.25em; color: var(--brass);
  text-transform: uppercase; margin-bottom: 1rem;
}
.journey-step .step-title {
  font-family: "Fraunces", serif; font-weight: 300;
  font-size: clamp(1.8rem, 1rem + 3vw, 3.5rem); line-height: 0.95;
  letter-spacing: -0.03em; color: var(--bone); margin-bottom: 1.5rem;
}
.journey-step .step-title em {
  color: var(--brass); font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.journey-step .step-desc {
  color: var(--bone-muted); font-size: var(--fs-lead);
  max-width: 40ch; line-height: 1.55; margin-bottom: 1.5rem;
}
.journey-step .step-meta {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0.8rem 1.5rem;
  border-top: 2px solid rgba(212,168,74,0.3);
  padding-top: 1.25rem; max-width: 440px;
  font-size: 0.9rem;
}
.journey-step .step-meta dt {
  font-family: "JetBrains Mono", monospace; font-size: 0.72rem;
  letter-spacing: 0.14em; color: var(--brass);
  text-transform: uppercase;
}
.journey-step .step-meta dd {
  font-family: "Fraunces", serif; font-size: 1rem; color: var(--bone);
}

.journey-right {
  position: relative;
  border: 2px solid rgba(212,168,74,0.3);
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,168,74,0.1), transparent 70%),
    linear-gradient(180deg, #151A20 0%, #1F1A12 80%, #2E2012 100%);
  height: 100%; max-height: 680px; align-self: center;
}
.journey-canvas {
  position: absolute; inset: 0;
}
.journey-canvas svg.jroute {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

/* SVG-native tracker — positioned by transform attribute from JS,
   follows route path via getPointAtLength() for pixel-perfect alignment */
.tracker-group { pointer-events: none; }
.tracker-group .tracker-ring-outer {
  animation: tracker-pulse-outer 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  transform-origin: center;
}
.tracker-group .tracker-ring {
  animation: tracker-pulse-inner 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  animation-delay: 0.3s;
  transform-origin: center;
}
.tracker-group .tracker-core {
  filter: drop-shadow(0 0 6px rgba(212, 168, 74, 0.9));
}
@keyframes tracker-pulse-outer {
  0% { r: 12; opacity: 0.6; }
  100% { r: 24; opacity: 0; }
}
@keyframes tracker-pulse-inner {
  0% { r: 8; opacity: 0.9; }
  100% { r: 18; opacity: 0; }
}

/* progressive trail (drawn as scroll advances) */
.route-trail {
  transition: stroke-dashoffset 0.15s linear;
}

/* day tabs — click to jump */
.journey-tabs {
  display: flex; gap: 0.4rem;
  margin-bottom: 2rem;
  padding: 0.4rem;
  background: rgba(29, 34, 37, 0.6);
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 232, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.journey-tabs::-webkit-scrollbar { display: none; }
.journey-tab {
  flex: 1 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.15rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  color: var(--mist);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.4s var(--e-expo), color 0.4s;
  white-space: nowrap;
  min-width: 80px;
}
.journey-tab .tab-num {
  font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase; opacity: 0.7;
}
.journey-tab .tab-label {
  font-size: 0.78rem; letter-spacing: 0.08em;
  font-family: "Fraunces", serif; font-weight: 400;
  text-transform: none;
}
.journey-tab.active {
  background: var(--brass);
  color: var(--night);
}
.journey-tab.active .tab-num { opacity: 1; }
.journey-tab:hover:not(.active) { color: var(--bone); }
@media (max-width: 700px) {
  .journey-tab { min-width: 70px; padding: 0.6rem 0.8rem; }
  .journey-tab .tab-label { font-size: 0.72rem; }
}

.journey-progress {
  position: absolute; top: 1.25rem; right: 1.25rem;
  display: flex; gap: 0.3rem; z-index: 5;
  flex-wrap: wrap; max-width: 180px; justify-content: flex-end;
}
.journey-progress span {
  width: 14px; height: 3px;
  background: rgba(212,168,74,0.3); border-radius: 999px;
  transition: background 0.5s var(--e-expo);
}
.journey-progress span.on { background: var(--brass); }

@media (max-width: 960px) {
  .journey-scene { height: auto !important; }
  .journey-pin { position: relative; height: auto; grid-template-columns: 1fr; }
  .journey-step { position: relative; opacity: 1; transform: none; margin-bottom: 3rem; }
  .journey-right { min-height: 60vh; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55); }
.wa-float:active { transform: scale(0.95); }

/* On mobile, lift the WhatsApp button above the sticky CTA bar */
@media (max-width: 720px) {
  .wa-float { bottom: 78px; right: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ============================================================
   STICKY MOBILE CTA BAR (mobile-only)
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  padding: 0.6rem 0.75rem;
  background: rgba(11, 13, 14, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(213, 168, 74, 0.18);
  gap: 0.5rem;
  justify-content: space-between;
}
.mobile-cta-bar .mcb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 0.5rem;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.15s, opacity 0.15s;
}
.mobile-cta-bar .mcb-btn:active { transform: scale(0.97); }
.mobile-cta-bar .mcb-call { background: rgba(213, 168, 74, 0.15); border: 1px solid var(--brass); color: var(--brass); }
.mobile-cta-bar .mcb-wa { background: #25D366; color: #fff; }
.mobile-cta-bar .mcb-enq { background: var(--brass); color: var(--night); }

@media (max-width: 720px) {
  .mobile-cta-bar { display: flex; }
  /* Add bottom padding on body so footer content isn't hidden behind sticky bar */
  body { padding-bottom: 64px; }
}

/* ============================================================
   ENQUIRY FORM (used on home page inline + contact page)
   ============================================================ */
.enquiry-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 4rem);
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  border-top: 1px solid rgba(213, 168, 74, 0.12);
}
.enquiry-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 880px) { .enquiry-grid { grid-template-columns: 1fr; gap: 3rem; } }

.enq-intro h2 { font-family: "Fraunces", serif; font-weight: 300; font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem); line-height: 1; letter-spacing: -0.04em; margin-bottom: 1rem; }
.enq-intro h2 em { font-style: italic; color: var(--brass); }
.enq-intro p { color: var(--bone-muted); line-height: 1.65; margin-bottom: 2rem; max-width: 50ch; }

.enq-form {
  padding: 2.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(213, 168, 74, 0.2);
  border-radius: 6px;
}
.enq-form h3 { font-family: "Fraunces", serif; font-weight: 400; font-size: 1.45rem; margin-bottom: 0.4rem; color: var(--bone); }
.enq-form .enq-sub { color: var(--mist); font-size: 0.92rem; margin-bottom: 1.75rem; }
.enq-row { margin-bottom: 1.1rem; }
.enq-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
@media (max-width: 600px) { .enq-row.two-col { grid-template-columns: 1fr; } }
.enq-row label { display: block; font-family: "JetBrains Mono", monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.4rem; }
.enq-row input, .enq-row select, .enq-row textarea {
  width: 100%; padding: 0.78rem 0.95rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(213, 168, 74, 0.2);
  border-radius: 4px;
  color: var(--bone);
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.98rem;
  transition: border-color 0.2s;
}
.enq-row input:focus, .enq-row select:focus, .enq-row textarea:focus { outline: none; border-color: var(--brass); }
.enq-row textarea { resize: vertical; min-height: 84px; }
.enq-row select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4A84A' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.enq-row select option { background: var(--night-2); }

.enq-consent { display: flex; gap: 0.6rem; align-items: flex-start; margin: 1rem 0 1.25rem; font-size: 0.84rem; color: var(--mist); line-height: 1.5; }
.enq-consent input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; accent-color: var(--brass); }
.enq-consent a { color: var(--brass); border-bottom: 1px solid rgba(213,168,74,0.4); }

.enq-submit { width: 100%; padding: 0.95rem; background: var(--brass); color: var(--night); font-family: "Instrument Sans", sans-serif; font-weight: 600; font-size: 0.98rem; border-radius: 999px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; border: none; }
.enq-submit:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(213, 168, 74, 0.3); }

/* ============================================================
   HOME-PAGE FAQ SECTION — styles defined inline in index.html
   (kept minimal here so other pages don't accidentally inherit)
   ============================================================ */

/* ============================================================
   ATULYA HELI YATRA — MOBILE + CONTACT DOCK MODULE
   ============================================================
   Adds:
   - Premium glassmorphic Contact Dock (replaces wa-float + mobile-cta-bar)
   - Hamburger menu drawer for nav (was missing)
   - Tablet & mobile responsive polish
   ============================================================ */

/* ============================================================
   1. CONTACT DOCK — unified call/whatsapp UI
   ============================================================
   Mobile (<=640px): full-width sticky bottom bar (3 actions)
   Tablet/Desktop (>640px): vertical FAB stack on bottom-right
   ============================================================ */

.contact-dock,
.contact-dock * {
  box-sizing: border-box;
}

.contact-dock {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
}

/* ---- Desktop & tablet: bottom-right FAB stack ---- */
.contact-dock {
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.contact-dock .cd-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 14px;
  border-radius: 999px;
  background: rgba(15, 18, 22, 0.92);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(213, 168, 74, 0.32);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  color: #F5F1E8;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: padding 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s ease,
              background 0.25s ease,
              transform 0.18s ease,
              box-shadow 0.25s ease;
  overflow: hidden;
  white-space: nowrap;
}

.contact-dock .cd-btn .cd-label {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  transform: translateX(-4px);
  transition: max-width 0.36s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.22s ease,
              margin-left 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.contact-dock .cd-btn:hover {
  padding-right: 20px;
  border-color: rgba(213, 168, 74, 0.65);
  background: rgba(20, 24, 28, 0.96);
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(213, 168, 74, 0.15);
}

.contact-dock .cd-btn:hover .cd-label {
  max-width: 220px;
  opacity: 1;
  margin-left: 12px;
  transform: translateX(0);
}

.contact-dock .cd-btn:active {
  transform: translateY(0) scale(0.96);
}

.contact-dock .cd-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-dock .cd-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Call button: brass-tinted icon */
.contact-dock .cd-call .cd-icon { color: #D4A84A; }
.contact-dock .cd-call:hover { border-color: rgba(213, 168, 74, 0.85); }

/* WhatsApp button: green icon */
.contact-dock .cd-wa .cd-icon { color: #25D366; }
.contact-dock .cd-wa:hover {
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(37, 211, 102, 0.18);
}

/* Subtle pulse ring on first paint to draw attention */
.contact-dock .cd-btn.cd-wa::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.5);
  opacity: 0;
  animation: cd-pulse 2.4s ease-out 1s infinite;
  pointer-events: none;
}

@keyframes cd-pulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ---- Mobile: full-width sticky bottom bar ---- */
@media (max-width: 640px) {
  .contact-dock {
    bottom: 0;
    right: 0;
    left: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0));
    flex-direction: row;
    gap: 8px;
    align-items: stretch;
    background: rgba(11, 13, 14, 0.94);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-top: 1px solid rgba(213, 168, 74, 0.18);
  }

  .contact-dock .cd-btn {
    flex: 1;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: none;
    background: rgba(213, 168, 74, 0.06);
    border-color: rgba(213, 168, 74, 0.22);
  }

  .contact-dock .cd-btn .cd-label {
    max-width: none;
    opacity: 1;
    margin-left: 8px;
    transform: none;
  }

  .contact-dock .cd-btn:hover {
    padding: 12px 8px;
    transform: none;
  }

  .contact-dock .cd-icon {
    width: 18px;
    height: 18px;
  }

  /* Color-code mobile buttons more clearly */
  .contact-dock .cd-call {
    background: rgba(213, 168, 74, 0.14);
    border-color: rgba(213, 168, 74, 0.42);
    color: #D4A84A;
  }
  .contact-dock .cd-wa {
    background: rgba(37, 211, 102, 0.14);
    border-color: rgba(37, 211, 102, 0.42);
    color: #45e08a;
  }
  .contact-dock .cd-wa::before { display: none; }
  .contact-dock .cd-enq {
    background: #D4A84A;
    border-color: #D4A84A;
    color: #0F1216;
  }
  .contact-dock .cd-enq .cd-icon { color: #0F1216; }

  /* Body padding so content isn't hidden behind dock */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0)); }
}

/* Hide the legacy classes if any old code still tries to render them */
.wa-float,
.mobile-cta-bar { display: none !important; }


/* ============================================================
   2. HAMBURGER MENU (was missing entirely)
   ============================================================ */

.nav-burger {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--bone, #F5F1E8);
  transition: background 0.2s ease;
}

.nav-burger:hover { background: rgba(213, 168, 74, 0.08); }

.nav-burger .bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
}
.nav-burger .bar::before,
.nav-burger .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-burger .bar::before { top: -6px; }
.nav-burger .bar::after  { top:  6px; }

.nav-burger.is-open .bar { transform: rotate(45deg); background: currentColor; }
.nav-burger.is-open .bar::before { top: 0; transform: rotate(0deg); opacity: 0; }
.nav-burger.is-open .bar::after  { top: 0; transform: rotate(-90deg); }

@media (max-width: 880px) {
  .nav-burger { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 10, 12, 0.98);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  display: flex;
  flex-direction: column;
  padding: 90px 32px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer .md-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass, #D4A84A);
  border-top: 1px solid var(--brass, #D4A84A);
  padding-top: 0.55rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.mobile-drawer .md-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-drawer .md-links a {
  display: block;
  padding: 0.85rem 0;
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
  line-height: 1.15;
  color: var(--bone, #F5F1E8);
  letter-spacing: -0.02em;
  text-decoration: none;
  border-bottom: 1px solid rgba(213, 168, 74, 0.12);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-drawer .md-links a:hover { color: var(--brass, #D4A84A); padding-left: 6px; }

.mobile-drawer .md-contact {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(213, 168, 74, 0.18);
}
.mobile-drawer .md-contact h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist, rgba(245, 241, 232, 0.55));
  margin: 0 0 0.85rem;
  font-weight: 500;
}
.mobile-drawer .md-phones {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}
.mobile-drawer .md-phones a {
  color: var(--bone, #F5F1E8);
  font-family: "Instrument Sans", sans-serif;
  font-size: 1rem;
  text-decoration: none;
}
.mobile-drawer .md-phones a:hover { color: var(--brass, #D4A84A); }

.mobile-drawer .md-cta-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.mobile-drawer .md-cta-row a {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.mobile-drawer .md-cta-row a:hover { transform: translateY(-1px); }
.mobile-drawer .md-cta-row .md-cta-primary {
  background: var(--brass, #D4A84A);
  color: var(--night, #0F1216);
}
.mobile-drawer .md-cta-row .md-cta-wa {
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #45e08a;
}

/* When drawer is open, lock body scroll */
body.menu-open { overflow: hidden; }


/* ============================================================
   3. MOBILE / TABLET POLISH
   ============================================================ */

/* Nav: tighten on small screens */
@media (max-width: 880px) {
  .nav {
    padding: 14px 18px !important;
  }
  .nav .nav-cta {
    font-size: 0.78rem !important;
    padding: 8px 14px !important;
  }
  /* The nav-cta (Enquire) on mobile is redundant once the burger is in place */
  @media (max-width: 480px) {
    .nav .nav-cta { display: none !important; }
  }
}

/* Hero / typography clamp on small screens (extra safety) */
@media (max-width: 600px) {
  .word.display, .word.display-italic, .word.accent {
    line-height: 0.95 !important;
  }
}

/* Generic horizontal scroll prevention.
   NOTE: overflow-x:hidden on body/html breaks position:sticky — use clip instead.
   IMPORTANT: clip on BODY also implicitly clips overflow-y (CSS spec), which breaks
   GSAP ScrollTrigger scene height detection. Only set on html. */
html { overflow-x: clip; }

/* Tables: make them scrollable inside their parent on mobile */
@media (max-width: 720px) {
  .price-table, .pd-pricing-table, .policy-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .price-table tbody, .pd-pricing-table tbody, .policy-table tbody { white-space: normal; }
}

/* Container padding tighten */
@media (max-width: 560px) {
  .container, .pd-content, .legal-wrap {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Make sure home FAQ doesn't collide with sticky bar */
@media (max-width: 640px) {
  .home-faq { padding-bottom: 5rem !important; }
  .footer { padding-bottom: 6rem !important; }
}

/* iPhone safe-area for any other fixed elements */
@supports (padding: max(0px)) {
  .nav { padding-top: max(14px, env(safe-area-inset-top)); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .contact-dock .cd-btn,
  .contact-dock .cd-btn .cd-label,
  .contact-dock .cd-btn::before,
  .nav-burger .bar,
  .nav-burger .bar::before,
  .nav-burger .bar::after,
  .mobile-drawer { transition: none !important; animation: none !important; }
}
