/* Inter — variable, self-hosted (no CDN). Latin + Latin-Ext only. */
@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;
  src:url(../fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;
  src:url(../fonts/inter-latin.woff2) format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}

/* ==========================================================================
   Kesariya Holidays — design system v2 "Swiss utility"
   One grotesk, paper white, ink black, one accent. Square corners, hairline
   rules, no shadows. Packages read as a timetable, not as marketing cards.
   ========================================================================== */

/* --- 1. Tokens ----------------------------------------------------------- */
/* Thrillophilia ke design se aligned: Inter, warm neutrals, cream/peach bands,
   vivid kesar accent, rounded corners aur soft shadows. */
:root {
  /* Paper + warm tinted bands */
  --c-paper:   #FFFFFF;
  --c-sand:    #FBF7F3;   /* neutral warm band */
  --c-peach:   #FEF6EF;   /* accent-tinted band */
  --c-cream:   #FFF5E2;   /* highlight band */
  --c-lav:     #F1EAFB;   /* secondary highlight */

  /* Text: warm greys, not cold */
  --c-ink:     #141414;
  --c-body:    #202020;
  --c-ink-2:   #4A453F;
  --c-muted:   #6B6157;
  --c-muted-2: #A99E92;
  --c-rule:    #E6E1D8;
  --c-rule-2:  #F0ECE5;

  /* Brand + support colours */
  --c-accent:   #F2681C;          /* logo kesar */
  --c-accent-d: #D2540F;
  --c-accent-t: rgba(242, 104, 28, .09);
  --c-green:    #1E9E4A;
  --c-green-t:  rgba(30, 158, 74, .10);
  --c-yellow:   #FCAF17;
  --c-purple:   #7A1FE0;
  --c-purple-t: rgba(122, 31, 224, .09);
  --c-navy:     #152A4A;

  --f: Inter, "Inter Fallback", ui-sans-serif, system-ui, -apple-system,
       "Segoe UI", Roboto, sans-serif;

  --t-xs:   0.75rem;     /* 12 */
  --t-sm:   0.875rem;    /* 14 */
  --t-base: 1rem;        /* 16 */
  --t-md:   1.125rem;    /* 18 */
  --t-lg:   1.5rem;      /* 24 */
  --t-xl:   clamp(1.5rem, 1rem + 1.6vw, 2rem);        /* 24 -> 32 */
  --t-2xl:  clamp(1.75rem, 1.05rem + 2.4vw, 2.625rem);/* 28 -> 42 */
  --t-3xl:  clamp(2rem, 1rem + 4vw, 3.25rem);

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px;

  --section-y: clamp(48px, 5.5vw, 88px);
  --gutter: clamp(16px, 3vw, 40px);
  --maxw: 1320px;
  --maxw-read: 68ch;

  /* Rounded, like theirs */
  --r-1: 6px;
  --r-2: 10px;
  --r-3: 16px;
  --r-pill: 999px;

  /* Soft, warm shadows */
  --sh-1: 0 1px 4px rgba(32, 32, 32, .10);
  --sh-2: 0 2px 8px rgba(20, 15, 5, .14);
  --sh-3: 0 16px 44px -10px rgba(33, 26, 13, .22);
  --sh-cta: 0 10px 22px -8px rgba(242, 104, 28, .5);

  --e-out: cubic-bezier(.2, .6, .35, 1);
  --d-1: 120ms;
  --d-2: 200ms;
}

/* --- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f);
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--c-body);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

img, svg, video { display: block; max-width: 100%; }
[hidden] { display: none !important; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--c-ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h2, h3 { font-weight: 600; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; }
::selection { background: var(--c-ink); color: #fff; }

/* --- 3. Layout ----------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 820px; }
.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(32px, 4vw, 56px); }
.section-sand { background: var(--c-sand); }
.section-peach { background: var(--c-peach); }
.section-cream { background: var(--c-cream); }
.section-ink { background: #16130F; color: #F2F2F2; }
.section + .section:not([class*="section-"]) { border-top: 1px solid var(--c-rule-2); }
.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--c-ink); color: #fff; padding: var(--s-3) var(--s-5); }
.skip:focus { left: 0; }

/* --- 4. Type ------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-accent-d);
  background: var(--c-accent-t);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  margin: 0 0 var(--s-4);
}
.section-ink .eyebrow { color: #FFC9A6; background: rgba(242,104,28,.18); }

.h-display { font-size: var(--t-3xl); }
.h-1 { font-size: var(--t-2xl); }
.h-2 { font-size: var(--t-xl); }
.h-3 { font-size: var(--t-lg); line-height: 1.18; }

.lede { font-size: var(--t-md); line-height: 1.6; color: var(--c-muted); max-width: 58ch; }
.section-ink .lede { color: #C4C4C4; }

.prose p { max-width: var(--maxw-read); margin-bottom: var(--s-4); color: var(--c-ink-2); line-height: 1.65; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: var(--t-xl); margin: var(--s-7) 0 var(--s-4); }
.prose h3 { font-size: var(--t-lg); margin: var(--s-6) 0 var(--s-3); }
.prose ul { margin: 0 0 var(--s-4); padding-left: 1.05em; color: var(--c-ink-2); max-width: var(--maxw-read); }
.prose li { margin-bottom: var(--s-2); }
.prose li::marker { color: var(--c-accent); }
.prose a { color: var(--c-accent-d); }

.section-head { display: grid; gap: var(--s-3); margin-bottom: var(--s-6); }
@media (min-width: 860px) {
  .section-head.split { grid-template-columns: minmax(0, 1fr) minmax(0, 20rem); align-items: end; gap: var(--s-7); }
}

/* --- 5. Buttons ---------------------------------------------------------- */
.btn {
  --bg: var(--c-ink); --fg: #fff; --bd: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 12px 22px; min-height: 46px;
  border: 1px solid var(--bd); border-radius: var(--r-1);
  background: var(--bg); color: var(--fg);
  font-size: var(--t-sm); font-weight: 600; letter-spacing: 0;
  text-decoration: none; cursor: pointer;
  transition: background-color var(--d-1) var(--e-out), color var(--d-1) var(--e-out),
              border-color var(--d-1) var(--e-out), box-shadow var(--d-2) var(--e-out),
              transform var(--d-1) var(--e-out);
}
.btn:hover { --bg: var(--c-accent); --bd: var(--c-accent); }
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .4; pointer-events: none; }

.btn-accent { --bg: var(--c-accent); --bd: var(--c-accent); box-shadow: var(--sh-cta); }
.btn-accent:hover { --bg: var(--c-accent-d); --bd: var(--c-accent-d); }

.btn-ghost { --bg: transparent; --fg: var(--c-ink); --bd: var(--c-ink); }
.btn-ghost:hover { --bg: var(--c-ink); --fg: #fff; }

.btn-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.55); }
.btn-light:hover { --bg: #fff; --fg: var(--c-ink); --bd: #fff; }

.btn-wa { --bg: var(--c-green); --bd: var(--c-green); }
.btn-wa:hover { --bg: #0E7039; --bd: #0E7039; }

.btn-sm { min-height: 38px; padding: 9px 16px; font-size: var(--t-sm); }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--t-sm); font-weight: 600;
  color: var(--c-accent-d); text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
}
.link-arrow:hover { color: var(--c-accent); border-bottom-color: var(--c-accent); }
.link-arrow svg { transition: transform var(--d-2) var(--e-out); }
.link-arrow:hover svg { transform: translateX(3px); }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: #fff; }
.section-ink .link-arrow { color: #fff; border-bottom-color: #fff; }
.section-ink .link-arrow:hover { color: #F2965E; border-bottom-color: #F2965E; }

/* --- 6. Header ----------------------------------------------------------- */
.topbar { background: #16130F; color: #CFC7BC; font-size: var(--t-xs); letter-spacing: .02em; }
.topbar-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-3); min-height: 34px; padding-block: 5px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: #fff; text-decoration: none; white-space: nowrap; }
.topbar a svg { flex: none; color: var(--c-accent); }
.topbar a:hover { color: var(--c-accent); }
.topbar-list { display: flex; gap: var(--s-5); align-items: center; }
@media (max-width: 860px) { .topbar-tag { display: none; } }
@media (max-width: 560px) {
  .topbar-list { width: 100%; justify-content: space-between; gap: var(--s-3); }
  .topbar-list a:last-child { overflow: hidden; text-overflow: ellipsis; }
}

.site-header { position: sticky; top: 0; z-index: 100; background: var(--c-paper); border-bottom: 1px solid var(--c-rule); }
.site-header.is-stuck { box-shadow: var(--sh-1); }
.site-header > .wrap, .topbar > .wrap { max-width: 1440px; }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); min-height: 68px; }

.brand { display: flex; align-items: center; gap: var(--s-3); text-decoration: none; flex: none; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-name { display: block; font-size: var(--t-md); font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.brand-tag { display: block; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--c-muted); margin-top: 4px; }

.nav { display: none; }
@media (min-width: 1100px) {
  .nav { display: block; margin-left: auto; }
  .nav-list { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
  .nav-item { position: relative; }
  .nav-link {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 24px 10px;
    font-size: var(--t-sm); font-weight: 600; letter-spacing: 0;
    color: var(--c-ink); text-decoration: none; white-space: nowrap;
    box-shadow: inset 0 -3px 0 transparent;
    transition: box-shadow var(--d-1) var(--e-out), color var(--d-1) var(--e-out);
  }
  .nav-link:hover, .nav-item:focus-within > .nav-link { color: var(--c-accent); box-shadow: inset 0 -3px 0 var(--c-accent); }
  .nav-link[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--c-ink); }
  .nav-link .chev { flex: none; color: var(--c-muted); transition: transform var(--d-2) var(--e-out); }
  .nav-item:hover .chev, .nav-item:focus-within .chev { transform: rotate(180deg); }

  .submenu {
    position: absolute; top: 100%; left: 0; min-width: 230px;
    background: var(--c-paper); border: 1px solid var(--c-rule-2); border-radius: var(--r-2);
    box-shadow: var(--sh-3); overflow: hidden; margin-top: 6px;
    list-style: none; margin: 0; padding: 0;
    opacity: 0; visibility: hidden;
    transition: opacity var(--d-2) var(--e-out), visibility var(--d-2);
  }
  .nav-item:hover > .submenu, .nav-item:focus-within > .submenu { opacity: 1; visibility: visible; }
  .submenu li + li { border-top: 1px solid var(--c-rule-2); }
  .submenu a {
    display: block; padding: 11px 14px;
    font-size: var(--t-sm); color: var(--c-ink-2); text-decoration: none;
    transition: background-color var(--d-1) var(--e-out), color var(--d-1) var(--e-out);
  }
  .submenu a:hover { background: var(--c-accent-t); color: var(--c-accent-d); }
}
.header-cta { display: none; }
@media (min-width: 1400px) { .header-cta { display: inline-flex; flex: none; } }

.nav-toggle {
  display: inline-flex; align-items: center; gap: var(--s-2);
  margin-left: auto; padding: 10px 14px;
  background: transparent; border: 1px solid var(--c-rule); border-radius: var(--r-1);
  font-size: var(--t-sm); font-weight: 600; cursor: pointer;
}
@media (min-width: 1100px) { .nav-toggle { display: none; } }
.nav-toggle .bars { display: grid; gap: 3px; }
.nav-toggle .bars span { display: block; width: 16px; height: 2px; background: var(--c-ink); }

.drawer { position: fixed; inset: 0; z-index: 150; pointer-events: none; }
.drawer[hidden] { display: none; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(17,17,17,.55); opacity: 0; transition: opacity var(--d-2) var(--e-out); }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 90vw);
  background: var(--c-paper); box-shadow: var(--sh-3);
  overflow-y: auto; transform: translateX(100%);
  transition: transform 280ms var(--e-out);
  padding: var(--s-5) var(--s-5) var(--s-8);
}
.drawer.is-open { pointer-events: auto; }
.drawer.is-open .drawer-scrim { opacity: 1; }
.drawer.is-open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-5); padding-bottom: var(--s-4); border-bottom: 1px solid var(--c-ink); }
.drawer-close { width: 40px; height: 40px; display: grid; place-items: center; background: transparent; border: 1px solid var(--c-rule); border-radius: var(--r-1); cursor: pointer; }
.drawer-nav { list-style: none; margin: 0; padding: 0; }
.drawer-nav > li { border-bottom: 1px solid var(--c-rule-2); }
.drawer-nav a, .drawer-acc {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  width: 100%; padding: 13px 0;
  font-size: var(--t-md); font-weight: 600;
  color: var(--c-ink); text-decoration: none; background: none; border: 0; text-align: left; cursor: pointer;
}
.drawer-acc .chev { transition: transform var(--d-2) var(--e-out); }
.drawer-acc[aria-expanded="true"] .chev { transform: rotate(180deg); }
.drawer-sub { list-style: none; margin: 0 0 var(--s-3); padding: 0 0 0 var(--s-4); display: none; border-left: 1px solid var(--c-rule); }
.drawer-sub.is-open { display: block; }
.drawer-sub a { font-size: var(--t-sm); font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--c-ink-2); padding: 8px 0; }
.drawer-foot { margin-top: var(--s-6); display: grid; gap: var(--s-3); }

/* --- 7. Home: full-width slider + big search bar ------------------------- */
.hslider { position: relative; background: var(--c-ink); overflow: hidden; }
.hslide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 700ms var(--e-out), visibility 700ms; }
.hslide.is-on { opacity: 1; visibility: visible; }
.hslide:first-child { position: relative; }
.hslide-media { position: absolute; inset: 0; }
.hslide-media img { width: 100%; height: 100%; object-fit: cover; }
.hslide-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.8) 0%, rgba(8,8,8,.42) 48%, rgba(8,8,8,.06) 84%),
    linear-gradient(180deg, rgba(8,8,8,.32) 0%, rgba(8,8,8,0) 38%, rgba(8,8,8,.5) 100%);
}
.hslide-in {
  position: relative;
  min-height: clamp(440px, 56vw, 640px);
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(56px, 7vw, 88px) clamp(104px, 12vw, 160px);
  color: #fff;
}
.hslide-eyebrow { font-size: var(--t-xs); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #F2965E; margin-bottom: var(--s-4); }
.hslide h1, .hslide h2 {
  font-size: clamp(2rem, 1.1rem + 3.5vw, 3.4rem);
  font-weight: 700; letter-spacing: -.022em; line-height: 1.06;
  color: #fff; max-width: 18ch; text-shadow: 0 2px 26px rgba(0,0,0,.5);
}
.hslide p { margin-top: var(--s-4); max-width: 46ch; font-size: var(--t-md); line-height: 1.5; color: #E8E8E8; text-shadow: 0 1px 16px rgba(0,0,0,.45); }
.hslide-actions { margin-top: var(--s-5); display: flex; flex-wrap: wrap; gap: var(--s-3); }

.hs-nav {
  position: absolute; z-index: 4; left: 0; right: 0;
  bottom: clamp(104px, 12vw, 160px);
  display: flex; justify-content: center; pointer-events: none;
}
.hs-nav-in { width: 100%; max-width: var(--maxw); padding-inline: var(--gutter); display: flex; align-items: center; justify-content: flex-end; gap: var(--s-3); }
.hs-btn {
  pointer-events: auto; width: 40px; height: 40px; display: grid; place-items: center;
  background: transparent; border: 1px solid rgba(255,255,255,.55); color: #fff; border-radius: 0; cursor: pointer;
  transition: background-color var(--d-1) var(--e-out), border-color var(--d-1) var(--e-out), color var(--d-1) var(--e-out);
}
.hs-btn:hover { background: #fff; color: var(--c-ink); border-color: #fff; }
.hs-dots { pointer-events: auto; display: flex; gap: 7px; margin-right: var(--s-3); order: -1; }
.hs-dot { width: 28px; height: 3px; padding: 0; border: 0; border-radius: 0; background: rgba(255,255,255,.45); cursor: pointer; transition: background-color var(--d-2) var(--e-out); }
.hs-dot[aria-current="true"] { background: var(--c-accent); }
@media (max-width: 720px) { .hs-nav { bottom: auto; top: 18px; } }

/* Photo band under an inner page's head. Height inline se aati hai. */
.hero-strip { position: relative; height: clamp(200px, 28vw, 380px); background: var(--c-ink); overflow: hidden; }
.hero-strip img { width: 100%; height: 100%; object-fit: cover; }
.hero-strip figcaption {
  position: absolute; left: var(--s-4); bottom: var(--s-4);
  background: rgba(20,16,12,.72); color: #fff; border-radius: var(--r-pill);
  font-size: var(--t-xs); font-weight: 600; padding: 6px 14px;
}

/* Button row used on page heads and tour details */
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* Big search bar, overlapping the slider */
.bigsearch { position: relative; z-index: 5; margin-top: clamp(-112px, -9vw, -76px); }
.bigsearch form { background: var(--c-paper); border-radius: var(--r-3); box-shadow: var(--sh-3); display: grid; overflow: hidden; }
@media (min-width: 980px) { .bigsearch form { grid-template-columns: 1.15fr 1fr 1fr auto; } }
.bigsearch .pf { display: grid; gap: 3px; padding: var(--s-4) var(--s-5); border-bottom: 1px solid var(--c-rule); }
@media (min-width: 980px) { .bigsearch .pf { border-bottom: 0; border-right: 1px solid var(--c-rule); } }
.bigsearch label { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--c-muted); }
.bigsearch select {
  border: 0; background: transparent; padding: 0 22px 0 0; width: 100%;
  font-size: var(--t-md); font-weight: 600; color: var(--c-ink); appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right center;
}
.bigsearch select:focus { outline: none; }
.bigsearch .pf:focus-within { background: var(--c-paper-2); }
.bigsearch button { border-radius: 0; box-shadow: none; min-height: 100%; padding-inline: clamp(24px, 4vw, 44px); font-size: var(--t-sm); letter-spacing: .08em; }

/* Page head for inner pages: rule + title, photo strip under it */
.pagehead { background: var(--c-peach); }
.pagehead-in { padding-block: clamp(28px, 4vw, 56px); }
.crumbs { display: flex; flex-wrap: wrap; gap: var(--s-2); font-size: var(--t-sm); color: var(--c-muted); margin-bottom: var(--s-4); }
.crumbs a { color: var(--c-ink); text-decoration: none; }
.crumbs a:hover { color: var(--c-accent); }
.pagehead h1 { font-size: var(--t-2xl); font-weight: 700; letter-spacing: -.03em; max-width: 22ch; }
.pagehead .lede { margin-top: var(--s-4); }
.pagehead-grid { display: grid; gap: var(--s-4); }
@media (min-width: 900px) { .pagehead-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s-8); align-items: end; } }

/* --- 8. Package list: a timetable, not marketing cards -------------------- */
.plist { border-top: 1px solid var(--c-ink); }
.prow {
  display: grid;
  gap: var(--s-3) var(--s-5);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--c-rule-2);
  align-items: center;
  grid-template-columns: 104px minmax(0, 1fr);
  transition: background-color var(--d-1) var(--e-out);
}
.prow:hover { background: var(--c-paper-2); }
@media (min-width: 900px) {
  .prow { grid-template-columns: 148px minmax(0, 1.9fr) 8.5rem 8rem 8.5rem; }
}
.prow-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-paper-2); }
.prow-media img { width: 100%; height: 100%; object-fit: cover; }
.prow-main { min-width: 0; }
.prow h3 { font-size: var(--t-md); font-weight: 600; letter-spacing: -.015em; }
.prow h3 a { text-decoration: none; }
.prow h3 a:hover { color: var(--c-accent); }
.prow h3 a::after { content: ""; position: absolute; inset: 0; }
.prow { position: relative; }
.prow-route { margin-top: 3px; font-size: var(--t-sm); color: var(--c-muted); }
.prow-blurb { margin-top: 6px; font-size: var(--t-sm); color: var(--c-ink-2); max-width: 62ch; }
.prow-dur { font-size: var(--t-sm); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.prow-price { font-size: var(--t-lg); font-weight: 600; letter-spacing: -.02em; }
.prow-price small { display: block; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 2px; }
.prow-cta { justify-self: start; }
@media (min-width: 900px) { .prow-cta { justify-self: end; } }
@media (max-width: 899px) {
  .prow-dur, .prow-price, .prow-cta { grid-column: 2; }
  .prow-blurb { display: none; }
}
.plist-head {
  display: none;
  padding-bottom: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--c-muted);
}
@media (min-width: 900px) {
  .plist-head { display: grid; grid-template-columns: 148px minmax(0, 1.9fr) 8.5rem 8rem 8.5rem; gap: var(--s-5); }
}

/* --- 8b. Browse layout: filter sidebar + tour cards --------------------- */
.browse { display: grid; gap: var(--s-6); }
@media (min-width: 1000px) { .browse { grid-template-columns: 252px minmax(0, 1fr); gap: var(--s-7); align-items: start; } }

.fpanel { border: 1px solid var(--c-rule-2); border-radius: var(--r-3); box-shadow: var(--sh-1); padding: var(--s-5); background: var(--c-paper); }
@media (min-width: 1000px) { .fpanel { position: sticky; top: 92px; max-height: calc(100vh - 120px); overflow-y: auto; } }
.fpanel-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-3); margin-bottom: var(--s-4); }
.fpanel-head h2 { font-size: var(--t-md); font-weight: 700; }
.fclear { background: none; border: 0; padding: 0; cursor: pointer; font-size: var(--t-xs); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--c-accent-d); text-decoration: underline; }
.fgroup + .fgroup { margin-top: var(--s-5); padding-top: var(--s-5); border-top: 1px solid var(--c-rule); }
.fgroup h3 { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--c-muted); margin-bottom: var(--s-3); }
.fgroup select { width: 100%; padding: 10px 12px; border: 1px solid var(--c-rule); border-radius: var(--r-1); background: var(--c-paper); font-size: var(--t-sm); }
.fgroup select:focus { outline: none; border-color: var(--c-ink); }
.fcheck { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: var(--t-sm); color: var(--c-ink-2); cursor: pointer; }
.fcheck:hover { color: var(--c-ink); }
.fcheck input {
  appearance: none; -webkit-appearance: none;
  width: 15px; height: 15px; flex: none; margin: 0;
  border: 1.5px solid var(--c-rule); border-radius: 4px; background: var(--c-paper);
  display: grid; place-items: center; cursor: pointer;
}
.fcheck input:checked { background: var(--c-accent); border-color: var(--c-accent); }
.fcheck input:checked::after { content: ""; width: 6px; height: 6px; border-radius: 1px; background: #fff; }
.fcheck input:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; }
.fcount { margin-left: auto; font-size: var(--t-xs); color: var(--c-muted); }

.toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--s-3); padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--c-rule); margin-bottom: var(--s-5);
}
.toolbar p { font-size: var(--t-sm); color: var(--c-muted); }
.toolbar p b { color: var(--c-ink); font-weight: 700; }
.toolbar label { display: inline-flex; align-items: center; gap: var(--s-2); font-size: var(--t-sm); font-weight: 600; color: var(--c-muted); }
.toolbar select { border: 1px solid var(--c-rule); background: var(--c-paper); padding: 8px 12px; border-radius: var(--r-1); font-size: var(--t-sm); letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--c-ink); }
.toolbar select:focus { outline: none; border-color: var(--c-ink); }

.tcards { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr)); }
.tcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--c-paper); border: 1px solid var(--c-rule-2);
  border-radius: var(--r-3); overflow: hidden;
  box-shadow: var(--sh-1);
  transition: box-shadow var(--d-2) var(--e-out), transform var(--d-2) var(--e-out);
}
.tcard:hover { box-shadow: var(--sh-3); transform: translateY(-3px); }
.tcard-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-sand); }
.tcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--e-out); }
.tcard:hover .tcard-media img { transform: scale(1.04); }
.tcard-price {
  position: absolute; right: 0; bottom: 0;
  background: var(--c-accent); color: #fff;
  font-size: var(--t-sm); font-weight: 700;
  padding: 7px 14px; border-radius: var(--r-2) 0 0 0;
}
.tcard-price small { font-weight: 500; opacity: .85; }
.tcard-body { padding: var(--s-4); display: flex; flex-direction: column; gap: 7px; flex: 1; }
.tcard h3 { font-size: var(--t-md); font-weight: 600; letter-spacing: -.015em; }
.tcard h3 a { text-decoration: none; }
.tcard h3 a::after { content: ""; position: absolute; inset: 0; }
.tcard:hover h3 a { color: var(--c-accent); }
.tcard-route { font-size: var(--t-sm); color: var(--c-muted); }
.tcard-blurb { line-height: 1.5; }
.tcard-blurb { font-size: var(--t-sm); color: var(--c-ink-2); }
.tcard-meta {
  margin-top: auto; padding-top: var(--s-3); border-top: 1px solid var(--c-rule-2);
  display: flex; flex-wrap: wrap; gap: 6px var(--s-4);
  font-size: var(--t-xs); color: var(--c-ink-2);
}
.tcard-meta span { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.tcard-meta svg { flex: none; color: var(--c-accent); }
.tcard-meta span:last-child { color: var(--c-purple); font-weight: 600; }
.tcard-meta span:last-child svg { color: var(--c-purple); }

/* --- 9. Tiles, cards, chips ---------------------------------------------- */
.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 244px), 1fr)); }
.grid-5 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr)); }

/* caption BELOW the image, Swiss style */
.tile { display: block; text-decoration: none; color: inherit; }
.tile-img { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-3); background: var(--c-sand); }
.tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--e-out); }
.tile:hover .tile-img img { transform: scale(1.04); }
.tile-cap { padding-top: var(--s-3); }
.tile-cap h3 { font-size: var(--t-md); font-weight: 600; }
.tile:hover .tile-cap h3 { color: var(--c-accent); }
.tile-cap p { font-size: var(--t-sm); color: var(--c-muted); margin-top: 3px; }

.card {
  background: var(--c-paper);
  border: 1px solid var(--c-rule-2);
  border-radius: var(--r-3);
  box-shadow: var(--sh-1);
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
  text-decoration: none; color: inherit;
  transition: border-color var(--d-1) var(--e-out);
}
.card:hover { box-shadow: var(--sh-2); transform: translateY(-2px); }
.card-ico { width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--r-2); background: var(--c-accent-t); color: var(--c-accent-d); }
.card p { font-size: var(--t-sm); color: var(--c-ink-2); }
.section-ink .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); box-shadow: none; }
.section-ink .card:hover { border-color: #fff; }
.section-ink .card p { color: #BDBDBD; }
.section-ink .card-ico { background: rgba(242,104,28,.2); color: #FFC9A6; }

.chips { display: flex; flex-wrap: wrap; gap: 0; list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--c-rule); }
.chips-1 li { width: 100% !important; border-left: 0 !important; }
.chips-1 .chip { padding-left: 0 !important; }
.chips li { width: 100%; border-bottom: 1px solid var(--c-rule-2); }
@media (min-width: 620px) { .chips li { width: 50%; } .chips li:nth-child(2n) { border-left: 1px solid var(--c-rule-2); } }
@media (min-width: 1000px) { .chips li { width: 33.3333%; } .chips li:nth-child(2n) { border-left: 0; } .chips li:not(:nth-child(3n+1)) { border-left: 1px solid var(--c-rule-2); } }
.chip { display: block; padding: 11px var(--s-4) 11px 0; font-size: var(--t-sm); color: var(--c-ink-2); }
@media (min-width: 620px) { .chips li:not(:nth-child(3n+1)) .chip { padding-left: var(--s-4); } }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-6); }
.filter {
  padding: 9px 16px; background: var(--c-paper);
  border: 1px solid var(--c-rule); border-radius: var(--r-pill);
  font-size: var(--t-sm); font-weight: 600;
  color: var(--c-ink-2); cursor: pointer;
  transition: background-color var(--d-1) var(--e-out), color var(--d-1) var(--e-out);
}

.filter:hover { border-color: var(--c-accent); color: var(--c-accent-d); }
.filter[aria-pressed="true"] { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.empty-state { display: none; padding: var(--s-8) var(--s-5); text-align: center; border: 1px dashed var(--c-rule); border-radius: var(--r-3); color: var(--c-muted); }
.empty-state.is-shown { display: block; }

/* Link row — "other destinations / other themes" */
.linkrow { display: flex; flex-wrap: wrap; gap: var(--s-2); list-style: none; margin: 0; padding: 0; }
.linkrow li { }
.linkrow a {
  display: block; padding: 9px 18px;
  background: var(--c-paper); border: 1px solid var(--c-rule); border-radius: var(--r-pill);
  font-size: var(--t-sm); font-weight: 600;
  color: var(--c-ink); text-decoration: none;
  transition: border-color var(--d-1) var(--e-out), color var(--d-1) var(--e-out);
}
.linkrow a:hover { color: var(--c-accent-d); border-color: var(--c-accent); }

/* Fleet table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.spec-table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); min-width: 560px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px var(--s-4) 13px 0; border-bottom: 1px solid var(--c-rule-2); vertical-align: top; }
.spec-table thead th {
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-muted); border-bottom: 1px solid var(--c-rule); padding-bottom: 10px;
}
.spec-table tbody th { font-weight: 700; white-space: nowrap; }
.spec-table td { color: var(--c-ink-2); }
.spec-table .num { text-align: right; white-space: nowrap; padding-right: var(--s-5); }
.spec-table .rate { color: var(--c-accent-d); font-weight: 700; }
.spec-table tbody tr:hover { background: var(--c-peach); }
@media (max-width: 899px) { .spec-table .hide-sm { display: none; } .spec-table { min-width: 460px; } }

/* --- 9b. Tour detail: content + sticky booking column ------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.detail { display: grid; gap: var(--s-6); }
@media (min-width: 1000px) { .detail { grid-template-columns: minmax(0, 1fr) 340px; gap: var(--s-7); align-items: start; } }
.detail-main { min-width: 0; }
.detail-hero { margin: 0 0 var(--s-6); }
.detail-hero img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-3); }
.detail-h { margin-bottom: var(--s-4); padding-bottom: var(--s-3); border-bottom: 1px solid var(--c-rule); }
.detail-main .detail-h + .lede + .detail-table,
.detail-main .itin { margin-top: var(--s-5); }
.detail-main h2.detail-h:not(:first-of-type) { margin-top: var(--s-8); }
.detail-table { margin-top: var(--s-5); min-width: 0; }
.detail-table th { width: 34%; white-space: normal; }

.detail-side { display: block; }
@media (min-width: 1000px) { .detail-side { position: sticky; top: 92px; } }

.bookbox { border: 1px solid var(--c-rule-2); border-radius: var(--r-3); box-shadow: var(--sh-2); padding: var(--s-5); background: var(--c-paper); }
.bookbox-label { font-size: var(--t-sm); font-weight: 500; color: var(--c-muted); }
.bookbox-price { font-size: var(--t-xl); font-weight: 700; letter-spacing: -.02em; color: var(--c-accent); margin-top: 2px; }
.bookbox-price small { font-size: var(--t-sm); font-weight: 500; color: var(--c-ink-2); letter-spacing: 0; }
.bookbox-list { margin: var(--s-5) 0; display: grid; gap: 0; border-top: 1px solid var(--c-rule); }
.bookbox-list > div { display: grid; grid-template-columns: 6.5rem minmax(0, 1fr); gap: var(--s-3); padding: 9px 0; border-bottom: 1px solid var(--c-rule-2); }
.bookbox-list dt { font-size: var(--t-sm); font-weight: 500; color: var(--c-muted); padding-top: 1px; }
.bookbox-list dd { margin: 0; font-size: var(--t-sm); color: var(--c-ink); }

.flexbox { margin-top: var(--s-5); border-radius: var(--r-3); padding: var(--s-5); background: var(--c-cream); }
.flexlist { list-style: none; margin: var(--s-4) 0 0; padding: 0; display: grid; gap: var(--s-4); }
.flexlist li { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: var(--s-3); }
.flexlist svg { color: var(--c-accent); margin-top: 3px; }
.flexlist b { display: block; font-size: var(--t-sm); font-weight: 700; }
.flexlist span { display: block; font-size: var(--t-xs); color: var(--c-ink-2); margin-top: 2px; line-height: 1.5; }

/* --- 10. Editorial split -------------------------------------------------- */
.split { display: grid; gap: var(--s-6); align-items: start; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 4vw, 64px); }
  .split.wide-media { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
  .split.media-right .split-media { order: 2; }
}
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-media figcaption { padding-top: var(--s-2); font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); border-top: 1px solid var(--c-rule); margin-top: var(--s-2); }

/* "How we work" columns — icon, heading, one line of explanation.
   Koi container rule nahi: section-head ki line hi kaafi hai, warna do
   parallel lines ek galti jaisi dikhti hain. */
.steps { display: grid; gap: var(--s-5); }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 620px) { .steps-2 { grid-template-columns: repeat(2, 1fr) !important; } }
.steps-2 .step:nth-child(2) { padding-right: 0; border-right: 0; }
.step { padding: var(--s-5); background: var(--c-paper); border: 1px solid var(--c-rule-2); border-radius: var(--r-3); box-shadow: var(--sh-1); }

.step-ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-2);
  background: var(--c-accent-t); color: var(--c-accent-d);
  margin-bottom: var(--s-4);
}
.step-n {
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .08em;
  color: var(--c-accent-d); margin-bottom: var(--s-2);
}
.step h3 { font-size: var(--t-md); font-weight: 600; margin-bottom: 6px; }
.step p { font-size: var(--t-sm); color: var(--c-ink-2); }

/* Itinerary */
.itin { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.itin li { display: grid; gap: var(--s-2); padding: var(--s-5); background: var(--c-paper); border: 1px solid var(--c-rule-2); border-left: 3px solid var(--c-accent); border-radius: var(--r-2); }
@media (min-width: 720px) { .itin li { grid-template-columns: 5.5rem minmax(0, 1fr); gap: var(--s-5); align-items: start; } }
.itin .day { font-size: var(--t-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-accent-d); padding-top: 5px; }
.itin-body { min-width: 0; }
.itin h3 { font-size: var(--t-md); font-weight: 600; }
.itin p { font-size: var(--t-sm); line-height: 1.55; color: var(--c-ink-2); margin-top: 6px; max-width: 64ch; }

/* Spec table (tour facts) */
.spec { display: grid; border: 1px solid var(--c-rule-2); border-radius: var(--r-3); overflow: hidden; background: var(--c-sand); }
@media (min-width: 700px) { .spec { grid-template-columns: repeat(4, 1fr); } }
.spec > div { padding: var(--s-4) var(--s-5); border-bottom: 1px solid var(--c-rule-2); }
@media (min-width: 700px) { .spec > div { border-bottom: 0; border-right: 1px solid var(--c-rule-2); } .spec > div:last-child { border-right: 0; } }
.spec dt { font-size: var(--t-sm); font-weight: 500; color: var(--c-muted); }
.spec dd { margin: 4px 0 0; font-size: var(--t-lg); font-weight: 600; letter-spacing: -.02em; }

/* Quotes */
.quote { padding: var(--s-5); background: var(--c-paper); border: 1px solid var(--c-rule-2); border-radius: var(--r-3); box-shadow: var(--sh-1); display: flex; flex-direction: column; gap: var(--s-4); }
.quote blockquote { margin: 0; font-size: var(--t-md); line-height: 1.5; color: var(--c-ink); }
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: var(--s-3); font-size: var(--t-sm); color: var(--c-muted); }
.quote figcaption b { display: block; color: var(--c-ink); font-weight: 600; }
.avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; overflow: hidden;
  background: var(--c-accent-t); border: 1px solid var(--c-accent); color: var(--c-accent-d);
  font-size: var(--t-sm); font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* FAQ */
.faq { border-top: 1px solid var(--c-rule); }
.faq-item { border-bottom: 1px solid var(--c-rule-2); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-4) 0; background: none; border: 0;
  font-size: var(--t-md); font-weight: 600; letter-spacing: -.01em; color: var(--c-ink); text-align: left; cursor: pointer;
}
.faq-q:hover { color: var(--c-accent); }
.faq-q .sign { flex: none; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--c-accent-t); color: var(--c-accent-d); transition: transform var(--d-2) var(--e-out); }
.faq-q[aria-expanded="true"] .sign { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 var(--s-5); max-width: var(--maxw-read); color: var(--c-ink-2); font-size: var(--t-sm); }
.faq-a.is-open { display: block; }

/* --- 11. Forms ------------------------------------------------------------ */
.form { display: grid; gap: var(--s-4); }
.field { display: grid; gap: 5px; }
.field label { font-size: var(--t-sm); font-weight: 600; color: var(--c-ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 12px;
  background: var(--c-paper); border: 1px solid var(--c-rule); border-radius: var(--r-1);
  font-size: var(--t-base);
  transition: border-color var(--d-1) var(--e-out);
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--c-ink-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px var(--c-accent-t); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #B3261E; box-shadow: inset 0 0 0 1px #B3261E; }
.field-error { display: none; font-size: var(--t-xs); color: #B3261E; }
.field.is-invalid .field-error { display: block; }
.form-row { display: grid; gap: var(--s-4); }
@media (min-width: 620px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: var(--t-xs); color: var(--c-muted); }
.form-status { display: none; padding: var(--s-3) var(--s-4); font-size: var(--t-sm); border: 1px solid; border-radius: var(--r-1); }
.form-status.is-shown { display: block; }
.form-status.ok { border-color: var(--c-green); color: #0E7039; }
.form-status.err { border-color: #B3261E; color: #B3261E; }
.btn.is-loading { pointer-events: none; opacity: .7; }
.btn.is-loading .spin { display: inline-block; }
.spin { display: none; width: 13px; height: 13px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.enquiry-panel { border: 1px solid var(--c-rule-2); border-radius: var(--r-3); box-shadow: var(--sh-2); background: var(--c-paper); padding: clamp(20px, 2.5vw, 32px); }
.enquiry-panel h2, .enquiry-panel h3 { margin-bottom: var(--s-2); }

/* --- 12. CTA band --------------------------------------------------------- */
.cta-band { background: #16130F; color: #fff; }
.cta-band-media { display: none; }
.cta-band-in { padding-block: clamp(40px, 5vw, 72px); display: grid; gap: var(--s-5); align-items: center; }
@media (min-width: 900px) { .cta-band-in { grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); } }
.cta-band h2 { font-size: var(--t-xl); font-weight: 700; color: #fff; letter-spacing: -.02em; }
.cta-band p { color: #CFC7BC; margin-top: var(--s-3); max-width: 52ch; font-size: var(--t-sm); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
@media (min-width: 900px) { .cta-band-actions { justify-content: flex-end; } }

/* --- 13. Footer ----------------------------------------------------------- */
.site-footer { background: var(--c-navy); color: #A9B6C9; font-size: var(--t-sm); }
.footer-top { padding-block: var(--s-8) var(--s-7); display: grid; gap: var(--s-6); }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; } }
.footer-brand { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); }
.footer-brand img { width: 46px; height: 46px; background: #fff; padding: 3px; border-radius: 50%; }
.footer-brand b { font-size: var(--t-md); color: #fff; display: block; line-height: 1.1; font-weight: 700; }
.footer-brand span span { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: #7C8DA6; }
.site-footer h3 { font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: var(--s-4); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: #A9B6C9; text-decoration: none; transition: color var(--d-1) var(--e-out); }
.site-footer a:hover { color: var(--c-accent); }
.footer-contact { display: grid; gap: var(--s-3); }
.footer-contact div { display: flex; gap: var(--s-3); }
.footer-contact svg { flex: none; margin-top: 3px; color: var(--c-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-block: var(--s-4); display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; justify-content: space-between; font-size: var(--t-xs); }

/* Sticky mobile action bar */
/* --- Back to top ---------------------------------------------------------- */
.totop {
  position: fixed; right: clamp(14px, 2vw, 28px); bottom: clamp(14px, 2vw, 28px);
  z-index: 95; width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--c-accent); color: #fff; border: 0; cursor: pointer;
  border-radius: var(--r-pill); box-shadow: var(--sh-cta);
  opacity: 0; transform: translateY(10px) scale(.9); pointer-events: none;
  transition: opacity var(--d-2) var(--e-out), transform var(--d-2) var(--e-out),
              background var(--d-1) var(--e-out);
}
.totop.is-on { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--c-accent-d); }
.totop:focus-visible { outline: 2px solid var(--c-ink); outline-offset: 3px; }
/* mobile par WhatsApp/Call bar ke upar bitha do */
@media (max-width: 1099px) { .totop { bottom: calc(56px + 14px); } }
@media (prefers-reduced-motion: reduce) { .totop { transition: opacity 1ms; transform: none; } }

.mobar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 -2px 12px rgba(20,15,5,.16); }
.mobar a {
  display: flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 14px 10px; background: var(--c-paper);
  font-size: var(--t-sm); font-weight: 700;
  color: var(--c-ink); text-decoration: none;
}
.mobar a + a { border-left: 1px solid var(--c-rule); }
.mobar a.wa { background: var(--c-green); color: #fff; border-left-color: var(--c-green); }
@media (min-width: 1100px) { .mobar { display: none; } }
@media (max-width: 1099px) { body { padding-bottom: 52px; } }

/* --- 14. Motion: minimal ---------------------------------------------------
   Swiss direction, so no entrance choreography. Reveal fades only, short. */
.reveal { opacity: 0; }
.reveal.is-in { opacity: 1; transition: opacity 320ms var(--e-out); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
