/* ============================================================
   TRAVEL HAVEN — Design Tokens
   Palette sampled directly from the client's own logo artwork:
   deep indigo navy + antique gold, with misty slate-blue support.
   Display: Fraunces (literary serif, echoes the logo's engraved wordmark)
   Body: Public Sans (quiet, legible, humane)
   Utility/eyebrow: Space Mono (ticket-stub, itinerary-stamp feel)
   ============================================================ */

/* Custom paper-airplane cursor — desktop/mouse only, never touch */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><polygon points='2,2 22,9 13,13 9,22' fill='none' stroke='%23F7F7F4' stroke-width='1.5' stroke-linejoin='round'/><polygon points='2,2 22,9 13,13' fill='%230A1B2E'/><polygon points='2,2 13,13 9,22' fill='%23B98A47'/><line x1='2' y1='2' x2='13' y2='13' stroke='%23F7F7F4' stroke-width='1'/></svg>") 2 2, auto;
  }
  a, button, .btn, .nav-toggle, .theme-toggle, .gallery-filters button,
  [role="button"], input[type="submit"], select, .scroll-top {
    cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><polygon points='2,2 22,9 13,13 9,22' fill='none' stroke='%230A1B2E' stroke-width='1.5' stroke-linejoin='round'/><polygon points='2,2 22,9 13,13' fill='%23B98A47'/><polygon points='2,2 13,13 9,22' fill='%230A1B2E'/><line x1='2' y1='2' x2='13' y2='13' stroke='%230A1B2E' stroke-width='1'/></svg>") 2 2, pointer;
  }
}
@media (hover: hover) and (pointer: fine) {
  html[data-theme="dark"] body {
    cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><polygon points='2,2 22,9 13,13 9,22' fill='none' stroke='%230A1B2E' stroke-width='1.5' stroke-linejoin='round'/><polygon points='2,2 22,9 13,13' fill='%23F7F7F4'/><polygon points='2,2 13,13 9,22' fill='%23B98A47'/><line x1='2' y1='2' x2='13' y2='13' stroke='%230A1B2E' stroke-width='1'/></svg>") 2 2, auto;
  }
}

:root {
  --indigo-950: #0A1B2E;
  --indigo-900: #12233E;
  --indigo-800: #1B3355;
  --indigo-700: #24405F;
  --slate-500: #51708C;
  --slate-400: #7592AB;
  --mist-200: #E1E8EF;
  --mist-100: #EEF2F6;
  --ivory-50: #F7F7F4;
  --gold-500: #B98A47;
  --gold-600: #9C7238;
  --gold-300: #D9BD8C;
  --ink-900: #1C2430;
  --ink-600: #4B5768;

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --radius-card: 14px;
  --radius-pill: 999px;
  --max-width: 1180px;

  --shadow-soft: 0 12px 32px -16px rgba(10, 27, 46, 0.28);
  --shadow-lift: 0 20px 44px -18px rgba(10, 27, 46, 0.4);
  --shadow-deep: 0 32px 70px -24px rgba(10, 27, 46, 0.5);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);

  /* Destination accents — the indigo/gold spine stays constant everywhere;
     each region gets one accent hue, used only on its own card/tag/border,
     so the brand can grow past 3 destinations without diluting the identity. */
  --accent-darjeeling: var(--gold-500);
  --accent-sikkim: var(--slate-500);
  --accent-meghalaya: #3E7A5C;
  --accent-meghalaya-tint: rgba(62, 122, 92, 0.14);
}

/* Any image inside a .media wrapper zooms gently on hover/focus — used for
   destination cards, room photos, trip photos and the gallery. */
.media { position: relative; overflow: hidden; border-radius: var(--radius-card); }
.media img { transition: transform 0.6s var(--ease-out); }
a:hover .media img, .media:hover img { transform: scale(1.045); }
@media (prefers-reduced-motion: reduce) { .media img { transition: none; } a:hover .media img, .media:hover img { transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory-50);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Available to keyboard users without affecting the rendered design. */
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 400;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--indigo-950);
  color: var(--ivory-50);
  font-weight: 700;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 16px; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--indigo-950);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4.2rem); font-weight: 500; line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.14; }
h3 { font-size: 1.28rem; line-height: 1.28; }
h4 { font-size: 1rem; letter-spacing: -0.005em; }
p { margin: 0 0 1em; color: var(--ink-600); }
.lede { font-size: 1.08rem; line-height: 1.7; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--gold-500); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.on-dark { color: var(--gold-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), color 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-500); color: var(--indigo-950); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--gold-600); box-shadow: var(--shadow-lift); }
.btn-ghost { background: transparent; color: var(--ivory-50); border-color: rgba(247,247,244,0.4); }
.btn-ghost:hover { border-color: var(--ivory-50); background: rgba(247,247,244,0.08); }
.btn-outline { background: transparent; color: var(--indigo-950); border-color: var(--indigo-900); }
.btn-outline:hover { background: var(--indigo-950); color: var(--ivory-50); }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
.btn:disabled:hover { transform: none; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 247, 244, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(10, 27, 46, 0.06);
  box-shadow: 0 1px 0 rgba(10, 27, 46, 0.02);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.site-nav.is-scrolled {
  background: rgba(247, 247, 244, 0.94);
  border-color: rgba(10, 27, 46, 0.08);
  box-shadow: 0 8px 28px -18px rgba(10, 27, 46, 0.3);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand-mark { display: flex; align-items: center; gap: 10px; }
.brand-mark img { height: 46px; width: auto; }
.brand-word { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; font-weight: 600; color: var(--indigo-950); line-height: 1.1; }
.brand-word span { display: block; font-family: var(--font-mono); font-style: normal; font-size: 0.58rem; letter-spacing: 0.12em; color: var(--gold-600); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 0.93rem; font-weight: 500; color: var(--ink-600); position: relative; padding: 4px 0; transition: color 0.2s var(--ease-out); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--indigo-950); }
.nav-links a::after { content: ""; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--gold-500); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease-out); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--indigo-950); margin: 5px 0; transition: all 0.25s var(--ease-out); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 82px; left: 0; right: 0;
    background: var(--ivory-50);
    flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 14px 28px 24px;
    border-bottom: 1px solid rgba(10,27,46,0.08);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: all 0.25s var(--ease-out);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
  .nav-cta .btn-outline { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background-image: linear-gradient(180deg, rgba(27,51,85,0.82) 0%, rgba(18,35,62,0.88) 55%, rgba(10,27,46,0.95) 100%), url('https://images.unsplash.com/photo-1627118804546-39ffc11a64ac?q=75&w=1920&auto=format&fit=crop');
  background-size: cover; background-position: center 60%; background-repeat: no-repeat;
  color: var(--ivory-50); padding-top: 64px;
}
.hero-inner { position: relative; z-index: 3; padding: 70px 0 0; text-align: center; }
.hero .sub { max-width: 620px; margin: 0 auto 34px; color: rgba(247,247,244,0.82); font-size: 1.1rem; }
.hero h1 { color: var(--ivory-50); max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner .eyebrow,
.hero-inner h1,
.hero-inner .sub,
.hero-inner .hero-ctas {
  animation: hero-rise 0.9s var(--ease-out) both;
}
.hero-inner .eyebrow { animation-delay: 0.05s; }
.hero-inner h1 { animation-delay: 0.16s; }
.hero-inner .sub { animation-delay: 0.3s; }
.hero-inner .hero-ctas { animation-delay: 0.44s; }
@media (prefers-reduced-motion: reduce) {
  .hero-inner .eyebrow, .hero-inner h1, .hero-inner .sub, .hero-inner .hero-ctas { animation: none; }
}
.hero-strip { position: relative; z-index: 3; border-top: 1px dashed rgba(247,247,244,0.25); padding: 18px 0; }
.hero-strip .wrap { display: flex; justify-content: center; gap: 10px; align-items: center; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; color: rgba(247,247,244,0.7); text-align: center; flex-wrap: wrap; }
.hero-art { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: auto; z-index: 1; }
.hero-mist { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(185,138,71,0.16), transparent 60%); z-index: 2; pointer-events: none; }

/* ---------- Destination grid (Darjeeling / Sikkim / Meghalaya) ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card {
  position: relative; display: block; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  background: var(--indigo-950);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.dest-card .media { border-radius: 0; aspect-ratio: 3 / 4; }
.dest-card .media img { width: 100%; height: 100%; object-fit: cover; }
.dest-card .media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,27,46,0) 40%, rgba(10,27,46,0.88) 100%);
}
.dest-card .dest-accent { position: absolute; top: 20px; left: 20px; width: 34px; height: 3px; border-radius: 2px; background: var(--dest-accent, var(--gold-500)); z-index: 2; }
.dest-card .dest-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px 24px; z-index: 2; }
.dest-card .dest-tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dest-accent, var(--gold-300)); margin-bottom: 8px; display: block; }
.dest-card h3 { color: var(--ivory-50); margin-bottom: 6px; font-size: 1.4rem; }
.dest-card p { color: rgba(247,247,244,0.78); font-size: 0.92rem; margin-bottom: 14px; }
.dest-card .dest-cta { font-size: 0.86rem; font-weight: 700; color: var(--ivory-50); display: inline-flex; align-items: center; gap: 6px; }
.dest-card .dest-cta::after { content: "\2192"; transition: transform 0.2s var(--ease-out); }
.dest-card:hover .dest-cta::after { transform: translateX(4px); }
.dest-card--darjeeling { --dest-accent: var(--accent-darjeeling); }
.dest-card--sikkim { --dest-accent: var(--accent-sikkim); }
.dest-card--meghalaya { --dest-accent: var(--accent-meghalaya); }
@media (max-width: 900px) { .dest-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .dest-grid { grid-template-columns: 1fr; } .dest-card .media { aspect-ratio: 16 / 10; } }

/* ---------- Section scaffolding ---------- */
section { padding: 92px 0; }
@media (max-width: 700px) { section { padding: 64px 0; } }
.section-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.bg-mist { background: var(--mist-100); }
.bg-indigo { background: var(--indigo-950); color: var(--ivory-50); }
.bg-indigo h2, .bg-indigo h3 { color: var(--ivory-50); }
.bg-indigo p { color: rgba(247,247,244,0.75); }

/* ---------- Room-teaser / trip stub cards ---------- */
.stub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.stub {
  position: relative; background: var(--ivory-50); border-radius: var(--radius-card);
  padding: 30px 26px 26px; box-shadow: var(--shadow-soft); border: 1px solid rgba(10,27,46,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.stub:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); border-color: rgba(185,138,71,0.28); }
.stub::after {
  content: ""; position: absolute; right: 22px; top: 0; bottom: 0; width: 1px;
  background-image: linear-gradient(rgba(10,27,46,0.16) 60%, transparent 0%);
  background-size: 1px 8px; background-repeat: repeat-y;
}
.stub-index { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold-600); letter-spacing: 0.1em; margin-bottom: 10px; }
.stub h3 { margin-bottom: 8px; }
.stub .best-for { font-size: 0.86rem; color: var(--slate-500); font-weight: 600; margin-top: auto; padding-top: 14px; }
.stub .stub-cta { margin-top: 16px; font-size: 0.88rem; font-weight: 700; color: var(--indigo-950); display: inline-flex; align-items: center; gap: 6px; }
.stub .stub-cta::after { content: "\2192"; transition: transform 0.2s var(--ease-out); }
.stub:hover .stub-cta::after { transform: translateX(4px); }

/* ---------- Photo-backed feature card (room teaser) ---------- */
.photo-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.photo-feature img { border-radius: 18px; box-shadow: var(--shadow-lift); transition: transform 0.5s var(--ease-out); }
.photo-feature img:hover { transform: scale(1.02); }
@media (max-width: 900px) { .photo-feature { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Trust checklist ---------- */
.trust-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.trust-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.trust-list li { display: flex; gap: 16px; align-items: flex-start; }
.trust-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: rgba(185,138,71,0.15); display: flex; align-items: center; justify-content: center; color: var(--gold-600); font-size: 1rem; }
.trust-list strong { display: block; color: var(--indigo-950); margin-bottom: 2px; }
.trust-list p { margin: 0; font-size: 0.95rem; }
@media (max-width: 860px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials: postcards ---------- */
.postcard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.postcard { background: var(--ivory-50); border: 1px dashed rgba(10,27,46,0.28); border-radius: 10px; padding: 28px 24px; position: relative; transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.postcard:hover { transform: translateY(-4px); border-color: rgba(185,138,71,0.4); }
.postcard::before {
  content: "\270E"; position: absolute; top: -14px; left: 22px; background: var(--gold-500); color: var(--indigo-950);
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; box-shadow: var(--shadow-soft);
}
.postcard p.quote { font-family: var(--font-display); font-style: italic; font-size: 1.06rem; color: var(--ink-900); margin-bottom: 16px; }
.postcard .who { font-family: var(--font-mono); font-size: 0.76rem; color: var(--slate-500); letter-spacing: 0.04em; }
.postcard .stars { color: var(--gold-500); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; }

/* ---------- How it works: trail waypoints ---------- */
.trail { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trail::before {
  content: ""; position: absolute; top: 22px; left: 6%; right: 6%; height: 2px;
  background-image: linear-gradient(to right, rgba(247,247,244,0.4) 50%, transparent 0%);
  background-size: 14px 2px;
}
.waypoint { position: relative; text-align: center; padding-top: 60px; }
.waypoint .pin {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-500); color: var(--indigo-950); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.9rem; box-shadow: 0 0 0 6px var(--indigo-950), var(--shadow-soft);
}
.waypoint h3 { font-size: 1.06rem; margin-bottom: 6px; }
.waypoint p { font-size: 0.92rem; }
@media (max-width: 860px) { .trail { grid-template-columns: 1fr; gap: 44px; } .trail::before { display: none; } }
.how-cta { text-align: center; margin-top: 46px; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--indigo-950); color: rgba(247,247,244,0.7); padding: 56px 0 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(247,247,244,0.14); margin-bottom: 24px; }
.footer-brand img { height: 52px; width: auto; margin-bottom: 12px; }
.footer-brand p { max-width: 320px; margin-top: 10px; font-size: 0.92rem; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { color: var(--ivory-50); font-family: var(--font-body); font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a, .footer-col span, .footer-col address { display: block; font-size: 0.92rem; margin-bottom: 8px; color: rgba(247,247,244,0.7); }
.footer-col address { font-style: normal; }
.footer-col a:hover { color: var(--gold-500); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.82rem; flex-wrap: wrap; gap: 12px; }
.icon-badge { width: 52px; height: 52px; border-radius: 50%; background: rgba(185,138,71,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; flex-shrink: 0; }
.icon-badge svg { width: 28px; height: 28px; }
.trip-meta .icon-badge { background: rgba(81,112,140,0.14); }

/* ---------- Sikkim highlight chips ---------- */
.highlight-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.highlight-chips span { font-family: var(--font-mono); font-size: 0.8rem; color: rgba(247,247,244,0.85); background: rgba(247,247,244,0.08); border: 1px solid rgba(247,247,244,0.2); padding: 7px 14px; border-radius: var(--radius-pill); }
.footer-social { display: flex; gap: 18px; margin-top: 16px; }
.footer-social a { font-size: 0.86rem; font-weight: 600; color: var(--gold-300); margin-bottom: 0; }
.footer-social a:hover { color: var(--ivory-50); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: linear-gradient(180deg, var(--indigo-900), var(--indigo-950)); color: var(--ivory-50); padding: 66px 0 70px; text-align: center; }
.page-hero h1 { color: var(--ivory-50); }
.page-hero .sub { max-width: 600px; margin: 0 auto; color: rgba(247,247,244,0.78); }
.page-hero .eyebrow,
.page-hero h1,
.page-hero .sub,
.page-hero .rate-tag { animation: hero-rise 0.8s var(--ease-out) both; }
.page-hero .eyebrow { animation-delay: 0.03s; }
.page-hero h1 { animation-delay: 0.12s; }
.page-hero .sub { animation-delay: 0.22s; }
.page-hero .rate-tag { animation-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .page-hero .eyebrow, .page-hero h1, .page-hero .sub, .page-hero .rate-tag { animation: none; }
}

/* ---------- Room gallery ---------- */
.room-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.room-gallery img { border-radius: 16px; box-shadow: var(--shadow-soft); aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform 0.5s var(--ease-out); }
.room-gallery img:hover { transform: scale(1.035); position: relative; z-index: 1; }
@media (max-width: 700px) { .room-gallery { grid-template-columns: 1fr; } }

.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin: 32px 0; }
.amenity { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--ivory-50); border-radius: 12px; border: 1px solid rgba(10,27,46,0.08); font-size: 0.94rem; font-weight: 600; color: var(--indigo-950); }
.amenity .icon { color: var(--gold-600); font-size: 1.1rem; }

.rate-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-600); background: rgba(185,138,71,0.12); padding: 8px 16px; border-radius: var(--radius-pill); margin-bottom: 20px; }

.coming-soon-card { border: 1px dashed rgba(10,27,46,0.25); border-radius: var(--radius-card); padding: 34px; text-align: center; background: var(--mist-100); }

/* ---------- Trip cards (tours page) ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0; }
.photo-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-lift); transition: transform 0.5s var(--ease-out); }
.photo-strip img:hover { transform: scale(1.035); position: relative; z-index: 1; }
@media (max-width: 860px) { .photo-strip { grid-template-columns: 1fr; } }
.trip-list { display: flex; flex-direction: column; gap: 20px; }
.trip-card { display: grid; grid-template-columns: 190px 1fr; gap: 26px; background: var(--ivory-50); border-radius: var(--radius-card); padding: 28px; box-shadow: var(--shadow-soft); border: 1px solid rgba(10,27,46,0.06); transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.trip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: rgba(185,138,71,0.22); }
.trip-meta { display: flex; flex-direction: column; gap: 10px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--slate-500); border-right: 1px dashed rgba(10,27,46,0.18); padding-right: 18px; }
.trip-body h3 { margin-bottom: 8px; }
.trip-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 16px; }
.trip-tags span { font-size: 0.78rem; font-family: var(--font-mono); background: rgba(81,112,140,0.12); color: var(--slate-500); padding: 5px 12px; border-radius: var(--radius-pill); }
@media (max-width: 700px) {
  .trip-card { grid-template-columns: 1fr; }
  .trip-meta { border-right: none; border-bottom: 1px dashed rgba(10,27,46,0.18); padding-right: 0; padding-bottom: 16px; flex-direction: row; flex-wrap: wrap; gap: 18px; align-items: center; }
}

/* ---------- Sikkim custom banner ---------- */
.custom-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; background: var(--indigo-950); color: var(--ivory-50); border-radius: 24px; padding: 56px; }
.custom-banner h2, .custom-banner h3 { color: var(--ivory-50); }
.custom-banner p { color: rgba(247,247,244,0.78); }
.custom-banner ul { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.custom-banner ul li { padding-left: 24px; position: relative; font-size: 0.95rem; color: rgba(247,247,244,0.85); }
.custom-banner ul li::before { content: "\25C6"; position: absolute; left: 0; top: 3px; color: var(--gold-500); font-size: 0.7rem; }
@media (max-width: 860px) { .custom-banner { grid-template-columns: 1fr; padding: 34px 26px; } }
.custom-banner--meghalaya { background: linear-gradient(155deg, #12271F, #0D1E17); }
.custom-banner--meghalaya .eyebrow.on-dark { color: #8FC7AC; }
.custom-banner--meghalaya ul li::before { color: var(--accent-meghalaya); }
.custom-banner--meghalaya .highlight-chips span { border-color: rgba(143,199,172,0.3); }

/* ---------- Transfer service callout ---------- */
.transfer-card { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; background: var(--mist-100); border-radius: var(--radius-card); padding: 30px 34px; border: 1px solid rgba(10,27,46,0.08); }
.transfer-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--indigo-950); color: var(--gold-300); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.transfer-route { font-family: var(--font-mono); font-size: 0.82rem; color: var(--slate-500); margin-top: 4px; }
@media (max-width: 700px) { .transfer-card { grid-template-columns: 1fr; text-align: center; } .transfer-icon { margin: 0 auto; } }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.value-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.value-list li { padding-left: 26px; position: relative; }
.value-list li::before { content: "\25C6"; position: absolute; left: 0; top: 2px; color: var(--gold-500); font-size: 0.7rem; }
.fit-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.fit-card { padding: 22px; border-radius: 14px; }
.fit-card.good { background: rgba(81,112,140,0.1); }
.fit-card.not { background: rgba(185,138,71,0.1); }
.fit-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .fit-cols { grid-template-columns: 1fr; } }
/* ---------- Enquiry form ---------- */
.form-shell { background: var(--ivory-50); border-radius: 20px; box-shadow: var(--shadow-lift); padding: 44px; border: 1px solid rgba(10,27,46,0.06); transition: box-shadow 0.4s var(--ease-out); }
.form-shell:focus-within { box-shadow: var(--shadow-deep); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--indigo-950); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.96rem; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(10,27,46,0.18); background: #fff; color: var(--ink-900);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(185,138,71,0.22); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(10,27,46,0.3); }
.field textarea { resize: vertical; min-height: 92px; }
.form-section-label { grid-column: 1 / -1; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-500); margin: 26px 0 2px; padding-top: 18px; border-top: 1px dashed rgba(10,27,46,0.14); }
.form-grid > .form-section-label:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.field-group { grid-column: 1 / -1; border: none; padding: 0; margin: 0; }
.field-group legend { font-size: 0.86rem; font-weight: 600; color: var(--indigo-950); padding: 0; margin-bottom: 6px; }
.pax-fields { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.privacy-note { font-size: 0.85rem; color: var(--slate-500); margin-top: 18px; display: flex; gap: 8px; align-items: flex-start; }
.form-submit { margin-top: 22px; }
.btn-spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(10,27,46,0.25); border-top-color: var(--indigo-950); border-radius: 50%; animation: btn-spin 0.7s linear infinite; }
.btn.is-loading .btn-spinner { display: inline-block; }
@keyframes btn-spin { to { transform: rotate(360deg); } }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-shell { padding: 28px 22px; } .pax-fields { grid-template-columns: 1fr; } }
.form-success, .form-error { display: none; text-align: center; padding: 20px; opacity: 0; transform: translateY(12px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.form-success.show, .form-error.show { display: block; }
.form-success.show.in, .form-error.show.in { opacity: 1; transform: translateY(0); }
.form-success h3 { color: var(--slate-500); }
.form-success .btn { margin: 6px 8px 0; }
.btn-whatsapp { background: #25D366; color: #05330f; }
.btn-whatsapp:hover { background: #1ebe5a; }

.enquire-split { display: flex; flex-direction: column; gap: 40px; margin-bottom: 50px; }
.contact-card { background: var(--indigo-950); color: var(--ivory-50); border-radius: 20px; padding: 40px; }
.contact-card h3 { color: var(--ivory-50); }
.contact-card p { color: rgba(247,247,244,0.75); }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-line .icon { color: var(--gold-400, var(--gold-300)); font-size: 1.2rem; width: 26px; flex-shrink: 0; }
.contact-line strong { display: block; color: #F4F7F5; font-size: 0.9rem; }
.contact-line span, .contact-line a { font-size: 0.94rem; color: rgba(247,247,244,0.8); }
.contact-line address { margin: 0; font-style: normal; }
.location-map { margin-top: 30px; overflow: hidden; border: 1px solid rgba(217,189,140,0.3); border-radius: 14px; background: rgba(8,22,39,0.38); }
.location-map__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; }
.location-map__head strong { color: #F4F7F5; font-size: 0.9rem; }
.location-map__head a { color: var(--gold-300); font-size: 0.82rem; font-weight: 700; white-space: nowrap; }
.location-map__head a:hover { color: #F4F7F5; }
.location-map iframe { width: 100%; height: 285px; border: 0; display: block; filter: saturate(0.88) contrast(0.96); }
@media (max-width: 520px) { .location-map__head { align-items: flex-start; flex-direction: column; gap: 4px; } .location-map iframe { height: 240px; } }

/* ---------- Social float stack (WhatsApp, Telegram, Instagram) ---------- */
.social-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  display: flex; flex-direction: column-reverse; gap: 14px;
}
.social-float a {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift);
  transition: transform 0.25s var(--ease-out);
}
.social-float a:hover { transform: scale(1.08); }
.social-float a svg { width: 26px; height: 26px; }
.sf-whatsapp { background: #25D366; }
.sf-telegram { background: #229ED9; }
.sf-instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

@media (max-width: 600px) {
  .social-float { bottom: 16px; right: 16px; gap: 10px; }
  .social-float a { width: 48px; height: 48px; }
  .social-float a svg { width: 22px; height: 22px; }
}

/* ---------- Fade-in on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Gentle stagger for cards revealed together as a group */
.stub-grid > .reveal:nth-child(2),
.postcard-grid > .reveal:nth-child(2),
.trail > .reveal:nth-child(2) { transition-delay: 0.08s; }
.stub-grid > .reveal:nth-child(3),
.postcard-grid > .reveal:nth-child(3),
.trail > .reveal:nth-child(3) { transition-delay: 0.16s; }
.stub-grid > .reveal:nth-child(4),
.postcard-grid > .reveal:nth-child(4),
.trail > .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Gallery page ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.gallery-filters button {
  font-family: var(--font-body); font-size: 0.86rem; font-weight: 600; cursor: pointer;
  padding: 10px 20px; border-radius: var(--radius-pill); border: 1px solid rgba(10,27,46,0.18);
  background: transparent; color: var(--indigo-950); transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.gallery-filters button:hover { border-color: var(--indigo-950); }
.gallery-filters button.is-active { background: var(--indigo-950); color: var(--ivory-50); border-color: var(--indigo-950); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); cursor: pointer;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  aspect-ratio: 4 / 3;
}
.gallery-item.gallery-hidden { opacity: 0; transform: scale(0.96); }
.gallery-item.gallery-visible { opacity: 1; transform: scale(1); }
.gallery-item .media { border-radius: 0; height: 100%; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 14px 16px;
  font-size: 0.82rem; color: var(--ivory-50);
  background: linear-gradient(180deg, rgba(10,27,46,0) 0%, rgba(10,27,46,0.82) 100%);
  opacity: 0; transform: translateY(6px); transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.gallery-item:hover figcaption, .gallery-item:focus-within figcaption { opacity: 1; transform: translateY(0); }
.gallery-item .media { position: relative; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item { aspect-ratio: 4 / 3; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(10,27,46,0.92);
  display: none; align-items: center; justify-content: center; padding: 32px;
  opacity: 0; transition: opacity 0.3s var(--ease-out);
}
.lightbox.is-open { display: flex; }
.lightbox.is-in { opacity: 1; }
.lightbox figure { margin: 0; max-width: min(920px, 92vw); max-height: 86vh; }
.lightbox img { max-height: 78vh; width: auto; margin: 0 auto; border-radius: 12px; box-shadow: var(--shadow-deep); }
.lightbox figcaption { color: rgba(247,247,244,0.85); font-size: 0.9rem; text-align: center; margin-top: 14px; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(247,247,244,0.1); border: 1px solid rgba(247,247,244,0.3); color: var(--ivory-50);
  font-size: 1.1rem; cursor: pointer; transition: background 0.2s var(--ease-out);
}
.lightbox-close:hover { background: rgba(247,247,244,0.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  background: rgba(247,247,244,0.1); border: 1px solid rgba(247,247,244,0.3); color: var(--ivory-50);
  font-size: 1.2rem; cursor: pointer; transition: background 0.2s var(--ease-out);
}
.lightbox-nav:hover { background: rgba(247,247,244,0.2); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
@media (max-width: 600px) { .lightbox-nav, .lightbox-close { width: 38px; height: 38px; font-size: 1rem; } }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 60; width: 46px; height: 46px; border-radius: 50%;
  background: var(--indigo-950); color: var(--ivory-50); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.25s var(--ease-out);
}
.scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--gold-600); }
@media (max-width: 600px) { .scroll-top { width: 40px; height: 40px; left: 16px; bottom: 16px; } }

/* ---------- Video embed (click-to-load facade) ---------- */
.video-embed {
  position: relative; max-width: 860px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius-card);
  overflow: hidden; background: var(--indigo-950) var(--video-poster) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lift);
}
.video-embed::before { content: ""; position: absolute; inset: 0; background: rgba(10,27,46,0.15); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-embed__play {
  position: relative; z-index: 1; width: 68px; height: 48px; background: none; border: none; cursor: pointer;
  transition: transform 0.25s var(--ease-out);
}
.video-embed__play:hover { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) { .video-embed__play:hover { transform: none; } }

/* ============================================================
   PHASE 2 — Destination & Package system
   8px base spacing grid for every new component below:
   4 / 8 / 16 / 24 / 32 / 48 / 64 / 96
   ============================================================ */
:root {
  --sp-1: 4px; --sp-2: 8px; --sp-3: 16px; --sp-4: 24px;
  --sp-5: 32px; --sp-6: 48px; --sp-7: 64px; --sp-8: 96px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.breadcrumb a { color: rgba(247,247,244,0.65); }
.breadcrumb a:hover { color: var(--ivory-50); }
.breadcrumb span[aria-hidden] { color: rgba(247,247,244,0.35); }
.breadcrumb .current { color: var(--gold-300); }

/* ---------- Destination page: quick-facts strip ---------- */
.fact-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); margin: var(--sp-6) 0; }
.fact-tile { background: var(--ivory-50); border: 1px solid rgba(10,27,46,0.08); border-radius: var(--radius-card); padding: var(--sp-4); text-align: center; box-shadow: var(--shadow-soft); transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }
.fact-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.fact-tile .icon { font-size: 1.4rem; margin-bottom: var(--sp-2); display: block; }
.fact-tile strong { display: block; color: var(--indigo-950); font-size: 0.98rem; margin-bottom: 2px; }
.fact-tile span { font-size: 0.82rem; color: var(--slate-500); }
@media (max-width: 860px) { .fact-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Things-to-do cards ---------- */
.todo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--sp-3); }
.todo-card { background: var(--ivory-50); border-radius: var(--radius-card); padding: var(--sp-4); border: 1px solid rgba(10,27,46,0.07); box-shadow: var(--shadow-soft); transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.todo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: rgba(185,138,71,0.24); }
.todo-card .todo-index { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold-600); letter-spacing: 0.08em; margin-bottom: var(--sp-2); }
.todo-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.todo-card p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Package list card (on destination pages) ---------- */
.package-row { display: flex; flex-direction: column; gap: var(--sp-3); }
.package-mini {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap;
  background: var(--ivory-50); border: 1px solid rgba(10,27,46,0.07); border-radius: var(--radius-card);
  padding: var(--sp-4) var(--sp-5); box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.package-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: rgba(185,138,71,0.24); }
.package-mini .pm-info span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--slate-500); text-transform: uppercase; }
.package-mini .pm-info h3 { margin: 4px 0 0; font-size: 1.08rem; }

/* ---------- Package hero: duration / start-time / group facts ---------- */
.package-facts { display: flex; justify-content: center; gap: var(--sp-5); flex-wrap: wrap; margin-top: var(--sp-4); }
.package-facts .pf { text-align: center; }
.package-facts .pf strong { display: block; font-size: 1.05rem; color: var(--ivory-50); }
.package-facts .pf span { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,247,244,0.65); }

/* ---------- Itinerary timeline ---------- */
.itinerary { list-style: none; margin: 0; padding: 0; position: relative; }
.itinerary::before { content: ""; position: absolute; left: 21px; top: 8px; bottom: 8px; width: 2px; background: repeating-linear-gradient(to bottom, rgba(10,27,46,0.16) 0 6px, transparent 6px 12px); }
.itinerary li { position: relative; padding: 0 0 var(--sp-5) var(--sp-7); }
.itinerary li:last-child { padding-bottom: 0; }
.itinerary .it-marker { position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--indigo-950); color: var(--gold-300); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700; box-shadow: var(--shadow-soft); }
.itinerary h4 { margin-bottom: 4px; }
.itinerary p { margin-bottom: 0; font-size: 0.94rem; }

/* ---------- Included / excluded ---------- */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.incl-col { border-radius: var(--radius-card); padding: var(--sp-4); }
.incl-col.yes { background: rgba(62,122,92,0.08); }
.incl-col.no { background: rgba(196,90,90,0.07); }
.incl-col h4 { font-size: 0.95rem; margin-bottom: var(--sp-2); }
.incl-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.incl-col li { padding-left: 24px; position: relative; font-size: 0.92rem; }
.incl-col.yes li::before { content: "\2713"; position: absolute; left: 0; color: #3E7A5C; font-weight: 700; }
.incl-col.no li::before { content: "\2715"; position: absolute; left: 0; color: #B5544F; font-weight: 700; }
@media (max-width: 700px) { .incl-grid { grid-template-columns: 1fr; } }

/* ---------- Policy callout ---------- */
.policy-box { border: 1px dashed rgba(10,27,46,0.25); border-radius: var(--radius-card); padding: var(--sp-4) var(--sp-5); background: var(--mist-100); }
.policy-box h4 { margin-bottom: 6px; }
.policy-box p { margin-bottom: 0; font-size: 0.92rem; }
.policy-box + .policy-box { margin-top: var(--sp-3); }

/* ---------- FAQ accordion (native <details>, zero JS) ---------- */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.faq-item { border: 1px solid rgba(10,27,46,0.1); border-radius: 12px; background: var(--ivory-50); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: var(--sp-3) var(--sp-4); font-weight: 600; color: var(--indigo-950);
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3);
  transition: background 0.2s var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: var(--gold-600); flex-shrink: 0; transition: transform 0.25s var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--mist-100); }
.faq-item .faq-a { padding: 0 var(--sp-4) var(--sp-4); font-size: 0.94rem; color: var(--ink-600); }

/* ---------- Guest review card (Rooms & Stays page) ---------- */
.review-card { background: var(--ivory-50); border: 1px solid rgba(10,27,46,0.07); border-radius: var(--radius-card); padding: var(--sp-4); box-shadow: var(--shadow-soft); }
.review-card .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: var(--sp-2); font-size: 0.9rem; }
.review-card p.quote { font-family: var(--font-display); font-style: italic; margin-bottom: var(--sp-2); }
.review-card .who { font-family: var(--font-mono); font-size: 0.76rem; color: var(--slate-500); }

/* ---------- Sticky package CTA bar (mobile-friendly book-now) ---------- */
.book-bar { position: sticky; bottom: 0; z-index: 40; background: rgba(247,247,244,0.92); backdrop-filter: blur(10px); border-top: 1px solid rgba(10,27,46,0.08); padding: var(--sp-3) 0; margin-top: var(--sp-6); }
.book-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); flex-wrap: wrap; }
.book-bar strong { color: var(--indigo-950); }

/* Destination-page gallery preview thumbnails (plain .media links, not full .gallery-item) */
a.media.reveal { box-shadow: var(--shadow-soft); border-radius: var(--radius-card); }
a.media.reveal img { width: 100%; height: 100%; object-fit: cover; }
a.media.reveal:hover { box-shadow: var(--shadow-lift); }

/* ============================================================
   VISUAL REFRESH — soft contours, layered photography and calm motion
   ============================================================ */
:root {
  --radius-card: 26px;
  --radius-soft: 34px;
  --radius-media: 30px;
  --shadow-soft: 0 16px 36px -22px rgba(10, 27, 46, 0.34);
  --shadow-lift: 0 28px 56px -26px rgba(10, 27, 46, 0.48);
  --shadow-deep: 0 36px 82px -30px rgba(10, 27, 46, 0.56);
}

body {
  background:
    radial-gradient(circle at 2% 12%, rgba(217,189,140,0.16), transparent 22rem),
    radial-gradient(circle at 96% 44%, rgba(117,146,171,0.12), transparent 28rem),
    var(--ivory-50);
}

.media { border-radius: var(--radius-media); }
.media img { will-change: transform; }
.btn { box-shadow: 0 10px 22px -17px rgba(10,27,46,0.7); }
.btn:hover { transform: translateY(-3px) scale(1.015); }

.site-nav {
  background: rgba(247,247,244,0.76);
  border-bottom-color: rgba(10,27,46,0.04);
}
.site-nav.is-scrolled { background: rgba(247,247,244,0.9); }

.hero {
  min-height: min(760px, calc(100svh - 40px));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  background-image:
    linear-gradient(180deg, rgba(10,27,46,0.24) 0%, rgba(10,27,46,0.5) 53%, rgba(8,24,40,0.92) 100%),
    url('https://images.unsplash.com/photo-1622308644420-b20142dc993c?q=85&w=2200&auto=format&fit=crop');
  background-position: center 54%;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  filter: blur(22px);
  background:
    radial-gradient(ellipse at 18% 40%, rgba(217,189,140,0.30), transparent 28%),
    radial-gradient(ellipse at 74% 24%, rgba(117,146,171,0.34), transparent 30%),
    radial-gradient(ellipse at 52% 82%, rgba(62,122,92,0.20), transparent 34%);
  animation: liquid-drift 20s ease-in-out infinite alternate;
}
.hero-inner { padding-top: 110px; }
.hero-mist {
  background:
    radial-gradient(ellipse at 50% 96%, rgba(217,189,140,0.34), transparent 52%),
    linear-gradient(120deg, rgba(247,247,244,0.05), transparent 46%, rgba(117,146,171,0.16));
  animation: mist-breathe 9s ease-in-out infinite alternate;
}
.hero-art { opacity: 0.94; filter: drop-shadow(0 -12px 28px rgba(8,24,40,0.24)); }

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(125deg, rgba(10,27,46,0.98), rgba(27,51,85,0.94) 52%, rgba(18,35,62,0.98));
  border-radius: 0 0 var(--radius-soft) var(--radius-soft);
}
.page-hero > .wrap { position: relative; z-index: 1; }

.dest-grid { gap: 28px; }
.dest-card {
  border-radius: var(--radius-soft);
  border: 1px solid rgba(247,247,244,0.14);
  transform: translateZ(0);
}
.dest-card .media { aspect-ratio: 3 / 4.15; }
.dest-card .media::after {
  background:
    linear-gradient(180deg, rgba(10,27,46,0.04) 18%, rgba(10,27,46,0.26) 53%, rgba(6,19,32,0.94) 100%),
    linear-gradient(110deg, rgba(217,189,140,0.12), transparent 52%);
}
.dest-card .dest-accent { width: 48px; height: 4px; border-radius: 999px; }
.dest-card .dest-body { padding: 30px 28px 29px; }
.dest-card:hover { transform: translateY(-10px) rotate(-0.35deg); }
.dest-card:nth-child(even):hover { transform: translateY(-10px) rotate(0.35deg); }

.photo-feature { gap: clamp(32px, 5vw, 68px); }
.photo-feature > img {
  width: 100%;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-deep);
}
.photo-feature > img:hover { transform: scale(1.016) rotate(-0.4deg); }

.stub, .fact-tile, .todo-card, .package-mini, .review-card, .policy-box,
.form-shell, .contact-card, .transfer-card, .custom-banner, .coming-soon-card {
  border-radius: var(--radius-card);
}
.stub, .fact-tile, .todo-card, .package-mini, .review-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
}
.stub:hover, .fact-tile:hover, .todo-card:hover, .package-mini:hover {
  transform: translateY(-7px);
}

.room-gallery img, .photo-strip img { border-radius: var(--radius-media); }
.gallery-grid { gap: 24px; }
.gallery-item { border-radius: var(--radius-media); box-shadow: var(--shadow-soft); }
.gallery-item:hover { box-shadow: var(--shadow-lift); }
a.media.reveal { border-radius: var(--radius-media); box-shadow: var(--shadow-soft); }

@keyframes liquid-drift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(3%, 2%, 0) scale(1.08); }
}
@keyframes mist-breathe {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

@media (max-width: 820px) {
  .hero { min-height: 670px; }
}
@media (max-width: 560px) {
  :root { --radius-card: 22px; --radius-soft: 28px; --radius-media: 24px; }
  .hero { min-height: 620px; }
  .hero-inner { padding-top: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .page-hero::before, .hero-mist { animation: none; }
  .dest-card:hover, .dest-card:nth-child(even):hover, .photo-feature > img:hover,
  .stub:hover, .fact-tile:hover, .todo-card:hover, .package-mini:hover, .btn:hover { transform: none; }
}

/* Refined header treatment: retain the site's original compact hero proportion,
   with a restrained radius on every outer edge. */
.hero {
  min-height: 0;
  display: block;
  margin: 14px 18px 0;
  border-radius: 18px;
}
.hero-inner { padding: 70px 0 0; }

.page-hero {
  margin: 14px 18px 0;
  padding: 66px 0 70px;
  border-radius: 18px;
}

.breadcrumb {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 14px;
  border: 1px solid rgba(247,247,244,0.25);
  border-radius: 999px;
  background: rgba(247,247,244,0.10);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  box-shadow: 0 8px 24px -18px rgba(0,0,0,0.75);
}

@media (max-width: 560px) {
  .hero, .page-hero { margin: 8px 10px 0; border-radius: 15px; }
  .hero { min-height: 0; }
  .hero-inner { padding-top: 70px; }
  .breadcrumb { padding: 7px 11px; }
}

/* Compact section rhythm and a unified frosted navigation panel. */
section { padding: 64px 0; }
.section-head { margin-bottom: 34px; }
.how-cta { margin-top: 28px; }
footer.site-footer { padding: 44px 0 24px; }
.footer-top { padding-bottom: 26px; margin-bottom: 18px; }

.site-nav {
  top: 12px;
  margin: 12px 18px 0;
  border: 1px solid rgba(255,255,255,0.68);
  border-radius: 18px;
  background: rgba(247,247,244,0.66);
  box-shadow: 0 18px 42px -28px rgba(10,27,46,0.48), inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  overflow: visible;
}
.site-nav.is-scrolled {
  background: rgba(247,247,244,0.80);
  border-color: rgba(255,255,255,0.72);
  box-shadow: 0 18px 42px -28px rgba(10,27,46,0.5), inset 0 1px 0 rgba(255,255,255,0.75);
}
.site-nav .wrap { height: 76px; }

@media (max-width: 700px) {
  section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }
  footer.site-footer { padding: 36px 0 20px; }
}
@media (max-width: 560px) {
  .site-nav { top: 8px; margin: 8px 10px 0; border-radius: 15px; }
  .site-nav .wrap { height: 74px; }
}

/* Keep every lower panel visually balanced with the rounded header treatment. */
section {
  margin: 14px 18px 0;
  border-radius: 18px;
  overflow: hidden;
}
footer.site-footer {
  margin: 14px 18px 18px;
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 560px) {
  section { margin: 10px 10px 0; border-radius: 15px; }
  footer.site-footer { margin: 10px 10px 10px; border-radius: 15px; }
}

/* Five-scene destination hero slideshow. */
.hero {
  background: var(--indigo-950);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image:
    linear-gradient(180deg, rgba(10,27,46,0.22) 0%, rgba(10,27,46,0.48) 53%, rgba(8,24,40,0.90) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: opacity 1.15s var(--ease-out), transform 7s ease-out;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  animation: hero-ken-burns 7s ease-out both;
}
.hero::before { z-index: 1; }
.hero-art { z-index: 2; }
.hero-mist { z-index: 3; }
.hero-inner, .hero-strip { z-index: 4; }
@keyframes hero-ken-burns {
  from { background-position: center 54%; }
  to { background-position: center 48%; }
}

/* Theme switch beside the primary navigation action. */
.theme-toggle {
  position: relative;
  width: 44px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(10,27,46,0.22);
  border-radius: var(--radius-pill);
  background: rgba(247,247,244,0.58);
  color: var(--indigo-950);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.25s var(--ease-out);
}
.theme-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 2px 6px rgba(10,27,46,0.28);
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.theme-toggle:hover { transform: translateY(-2px); }
.theme-toggle span {
  position: absolute;
  top: 7px;
  font-size: 0.78rem;
  line-height: 1;
  transition: opacity 0.2s var(--ease-out);
}
.theme-toggle__sun { right: 6px; }
.theme-toggle__moon { left: 7px; opacity: 0; }

html[data-theme="dark"] {
  color-scheme: dark;
  --ivory-50: #0D1928;
  --mist-100: #14243A;
  --mist-200: #1D3048;
  --ink-900: #F4F7F5;
  --ink-600: #C4D0DB;
  --slate-500: #A4B9CD;
  --slate-400: #C0D0DE;
}
html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 2% 12%, rgba(185,138,71,0.13), transparent 22rem),
    radial-gradient(circle at 96% 44%, rgba(81,112,140,0.18), transparent 28rem),
    var(--ivory-50);
}
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] .brand-word,
html[data-theme="dark"] .nav-links a,
html[data-theme="dark"] .field label,
html[data-theme="dark"] .amenity,
html[data-theme="dark"] .fact-tile strong,
html[data-theme="dark"] .trip-body h3 { color: #F4F7F5; }
html[data-theme="dark"] .site-nav,
html[data-theme="dark"] .site-nav.is-scrolled {
  background: rgba(8,22,39,0.72);
  border-color: rgba(203,221,235,0.18);
  box-shadow: 0 18px 42px -28px rgba(0,0,0,0.82), inset 0 1px 0 rgba(255,255,255,0.08);
}
html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .nav-links a[aria-current="page"] { color: var(--gold-300); }
html[data-theme="dark"] .btn-outline { color: #F4F7F5; border-color: rgba(244,247,245,0.65); }
html[data-theme="dark"] .btn-outline:hover { background: #F4F7F5; color: var(--indigo-950); }
html[data-theme="dark"] .theme-toggle {
  background: rgba(20,36,58,0.88);
  border-color: rgba(217,189,140,0.50);
  color: var(--gold-300);
}
html[data-theme="dark"] .theme-toggle::before { transform: translateX(14px); background: var(--gold-300); }
html[data-theme="dark"] .theme-toggle__sun { opacity: 0; }
html[data-theme="dark"] .theme-toggle__moon { opacity: 1; }
html[data-theme="dark"] .stub,
html[data-theme="dark"] .fact-tile,
html[data-theme="dark"] .todo-card,
html[data-theme="dark"] .package-mini,
html[data-theme="dark"] .review-card,
html[data-theme="dark"] .form-shell,
html[data-theme="dark"] .amenity,
html[data-theme="dark"] .postcard {
  background: rgba(20,36,58,0.78);
  border-color: rgba(203,221,235,0.14);
}
html[data-theme="dark"] .field input,
html[data-theme="dark"] .field select,
html[data-theme="dark"] .field textarea {
  color: #F4F7F5;
  background: rgba(8,22,39,0.82);
  border-color: rgba(203,221,235,0.24);
}
html[data-theme="dark"] .rate-tag,
html[data-theme="dark"] .trip-tags span { background: rgba(217,189,140,0.14); }
html[data-theme="dark"] .bg-mist { background: var(--mist-100); }
html[data-theme="dark"] .gallery-filters button { color: #F4F7F5; border-color: rgba(203,221,235,0.3); }

/* Keep text inside the intentionally deep panels legible in dark mode.
   --ivory-50 becomes the page surface in that theme, so these components
   use their own light text token instead. */
html[data-theme="dark"] .hero,
html[data-theme="dark"] .page-hero,
html[data-theme="dark"] .dest-card,
html[data-theme="dark"] .bg-indigo,
html[data-theme="dark"] .custom-banner,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] footer.site-footer,
html[data-theme="dark"] .lightbox,
html[data-theme="dark"] .scroll-top {
  --ivory-50: #F4F7F5;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide.is-active { transition: none; animation: none; }
}

/* A single, quiet Himalayan contour lives at the end of every page. */
footer.site-footer {
  position: relative;
  isolation: isolate;
}
footer.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='190' viewBox='0 0 520 190'%3E%3Cpath d='M-20 188 L90 98 L152 154 L242 40 L308 126 L375 72 L540 188' fill='none' stroke='%23D9BD8C' stroke-opacity='.22' stroke-width='1.2'/%3E%3Cpath d='M-40 188 L62 132 L150 180 L273 104 L365 162 L454 92 L560 188' fill='none' stroke='%237592AB' stroke-opacity='.26' stroke-width='1'/%3E%3Cpath d='M221 70 L242 40 L263 72' fill='none' stroke='%23EEF2F6' stroke-opacity='.16' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: 520px 190px;
}
footer.site-footer > .wrap {
  position: relative;
  z-index: 1;
}
