/* ─────────────────────────────────────────────────────────────
   Khushamadeed — design system
   Palette pulled from the room: deep teal velvet, gold trim, cream walls.
───────────────────────────────────────────────────────────── */
:root {
  --teal-950: #061d1d;
  --teal-900: #082626;
  --teal-800: #0e3d3d;
  --teal-700: #124d4d;
  --teal-600: #176060;
  --teal-500: #1f7a7a;
  --gold: #c9a24a;
  --gold-light: #e6c979;
  --gold-dark: #a8822f;
  --cream: #f4efe4;
  --ivory: #fbf8f1;
  --ink: #14201f;
  --muted: #5d6b69;
  --line: rgba(20, 32, 31, .12);
  --line-light: rgba(255, 255, 255, .14);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-logo: 'Yatra One', 'Tiro Devanagari Hindi', serif;
  --font-hindi: 'Tiro Devanagari Hindi', 'Noto Serif Devanagari', serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 22px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
::selection { background: var(--gold); color: var(--teal-900); }

.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: clamp(80px, 11vw, 150px); position: relative; }
.section--dark { background: var(--teal-900); color: var(--cream); }
.section--cream { background: var(--cream); }

.eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.eyebrow--gold { color: var(--gold); }
.h2 { font-size: clamp(38px, 5.4vw, 68px); max-width: 16ch; }
.h2 em { font-style: italic; color: var(--gold-dark); }
.section--dark .h2 em { color: var(--gold-light); }
.lede { font-size: clamp(17px, 1.35vw, 20px); color: var(--muted); max-width: 58ch; }
.section--dark .lede { color: rgba(244, 239, 228, .72); }
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--center { text-align: center; }
.section-head--center .h2, .section-head--center .lede { margin-inline: auto; }
.section-head--center .eyebrow::before { display: none; }

/* split-text lines (filled by JS) */
[data-split] .split-line { display: block; overflow: hidden; }
[data-split] .split-line > span { display: block; transform: translateY(110%); }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 16px 30px;
  border-radius: 999px; font-weight: 600; font-size: 15px; letter-spacing: .02em; overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), background .35s, color .35s, border-color .35s;
  will-change: transform;
}
.btn > span { position: relative; z-index: 1; }
.btn--sm { padding: 11px 20px; font-size: 13px; }
.btn--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark)); color: var(--teal-950); box-shadow: 0 10px 30px -10px rgba(201, 162, 74, .7); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(201, 162, 74, .85); }
.btn__shine { position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%); transform: translateX(-120%); transition: transform .9s var(--ease-out); }
.btn--gold:hover .btn__shine { transform: translateX(120%); }
.btn--outline { border: 1.5px solid rgba(244, 239, 228, .45); color: var(--cream); }
.btn--outline:hover { background: rgba(244, 239, 228, .1); border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-3px); }
.btn--ghost { border: 1.5px solid var(--line); color: inherit; }
.nav.is-dark .btn--ghost, .nav:not(.is-scrolled) .btn--ghost { border-color: rgba(244, 239, 228, .35); }
.btn--ghost:hover { background: var(--gold); border-color: var(--gold); color: var(--teal-950); }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--teal-700); margin-top: 8px; }
.link-arrow span { display: inline-block; transition: transform .4s var(--ease-out); }
.link-arrow:hover span { transform: translateX(6px); }

/* ── Preloader ───────────────────────────────────────── */
.preloader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; overflow: hidden; pointer-events: none; }
.preloader__panel { position: absolute; top: 0; bottom: 0; width: 50.5%; background: var(--teal-900); }
.preloader__panel--l { left: 0; }
.preloader__panel--r { right: 0; }
.preloader__inner { position: relative; display: grid; justify-items: center; gap: 18px; padding: 0 24px; opacity: 0; transform: scale(.86); }
.preloader .logo--loader { width: min(78vw, 460px); height: auto; }
.logo--loader .draw { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.logo--loader .fade { opacity: 0; }
.preloader__sub { font-family: var(--font-hindi); font-size: 15px; color: rgba(244, 239, 228, .7); letter-spacing: .12em; opacity: 0; transform: translateY(8px); }

/* ── Cursor ──────────────────────────────────────────── */
.cursor { position: fixed; inset: 0; z-index: 999; pointer-events: none; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor__dot, .cursor__ring { position: absolute; top: 0; left: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor__dot { width: 6px; height: 6px; background: var(--gold); }
.cursor__ring { width: 36px; height: 36px; border: 1px solid rgba(201, 162, 74, .7); transition: width .35s var(--ease-out), height .35s var(--ease-out), background .35s, border-color .35s; }
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; background: rgba(201, 162, 74, .12); border-color: var(--gold); }
.cursor.is-hidden { opacity: 0; }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--nav-h);
  padding-top: env(safe-area-inset-top, 0px);
  transition: background .5s, box-shadow .5s, height .5s var(--ease-out), transform .6s var(--ease-out);
  color: var(--cream);
}
.nav.is-scrolled { height: 68px; background: rgba(8, 38, 38, .82); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 10px 40px -20px rgba(0,0,0,.5); }
.nav.is-hidden { transform: translateY(-110%); }
.nav__inner { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: block; height: 60px; width: auto; transition: height .5s var(--ease-out); }
.logo text { font-family: var(--font-logo); }
.nav.is-scrolled .logo { height: 48px; }
.nav__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(244,239,228,.35); transition: background .35s, border-color .35s, color .35s; }
.nav__icon:hover { background: var(--gold); border-color: var(--gold); color: var(--teal-950); }
.nav__links { display: flex; gap: 34px; }
.nav__links a { position: relative; font-size: 14px; font-weight: 500; letter-spacing: .04em; padding: 6px 0; opacity: .85; transition: opacity .3s; }
.nav__links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-out); }
.nav__links a:hover, .nav__links a.is-active { opacity: 1; }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.nav__burger span { width: 24px; height: 1.5px; background: currentColor; transition: transform .5s var(--ease-out), opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 890; pointer-events: none; display: flex; flex-direction: column; justify-content: center; padding: 120px var(--gutter) 60px; color: var(--cream); }
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu__bg { position: absolute; inset: 0; background: var(--teal-900); clip-path: circle(0% at calc(100% - 44px) 44px); transition: clip-path .9s var(--ease-in-out); }
.mobile-menu.is-open .mobile-menu__bg { clip-path: circle(150% at calc(100% - 44px) 44px); }
.mobile-menu__links, .mobile-menu__foot { position: relative; }
.mobile-menu__links a { display: flex; align-items: baseline; gap: 18px; font-family: var(--font-display); font-size: clamp(40px, 10vw, 64px); line-height: 1.15; opacity: 0; transform: translateY(30px); transition: opacity .6s var(--ease-out), transform .7s var(--ease-out); }
.mobile-menu__links a em { font-family: var(--font-body); font-style: normal; font-size: 12px; letter-spacing: .2em; color: var(--gold); }
.mobile-menu.is-open .mobile-menu__links a { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(1) { transition-delay: .25s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(2) { transition-delay: .32s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(3) { transition-delay: .39s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(4) { transition-delay: .46s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(5) { transition-delay: .53s; }
.mobile-menu__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; color: rgba(244,239,228,.7); opacity: 0; transition: opacity .6s .6s; }
.mobile-menu.is-open .mobile-menu__foot { opacity: 1; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(120% 90% at 80% 10%, var(--teal-700) 0%, var(--teal-900) 55%, var(--teal-950) 100%);
  color: var(--cream); padding: calc(var(--nav-h) + 40px) 0 80px;
}
.hero__pattern {
  position: absolute; inset: 0; opacity: .07; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, var(--gold-light) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000 30%, transparent 100%);
}
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; will-change: transform; }
.hero__glow--1 { width: 70vw; height: 70vw; background: radial-gradient(circle, rgba(201,162,74,.22) 0%, rgba(201,162,74,.08) 35%, transparent 65%); top: -25vw; right: -15vw; animation: drift 14s ease-in-out infinite alternate; }
.hero__glow--2 { width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(31,122,122,.45) 0%, rgba(31,122,122,.12) 40%, transparent 65%); bottom: -15vw; left: -15vw; animation: drift 18s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(6vw, 4vw); } }

.hero__lanterns { position: absolute; inset: 0; pointer-events: none; color: var(--gold); }
.lantern { position: absolute; width: 44px; height: auto; transform-origin: 50% 0; opacity: .9; will-change: transform; }
.lantern--a { left: 2.5%; top: 36%; width: 50px; animation: swing 4.2s ease-in-out infinite; }
.lantern--b { left: 48%; top: 12%; width: 34px; animation: swing 5.1s ease-in-out infinite reverse; }
.lantern--c { right: 2.5%; top: 14%; width: 40px; animation: swing 4.6s ease-in-out .6s infinite; }

.hero__inner { position: relative; width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero__eyebrow { display: flex; align-items: center; gap: 14px; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 26px; }
.hero__eyebrow .line { width: 0; height: 1px; background: var(--gold); }
.hero__eyebrow-text { opacity: 0; }
.hero__title { font-size: clamp(56px, 8.2vw, 116px); line-height: .96; letter-spacing: -.02em; }
.hero__title-line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .word { display: inline-block; transform: translateY(110%); }
.word--accent { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero__hindi { font-family: var(--font-hindi); font-size: clamp(18px, 1.6vw, 22px); color: var(--gold); margin: 22px 0 14px; opacity: 0; }
.hero__hindi span { font-family: var(--font-display); font-style: italic; color: rgba(244, 239, 228, .75); }
.hero__lead { font-size: clamp(16px, 1.25vw, 19px); color: rgba(244, 239, 228, .78); max-width: 52ch; margin-bottom: 34px; opacity: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; opacity: 0; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; opacity: 0; }
.hero__contact { margin: 22px 0 0; font-size: 13px; color: rgba(244,239,228,.6); display: flex; flex-wrap: wrap; gap: 10px; opacity: 0; }
.hero__contact a { color: var(--gold-light); border-bottom: 1px solid rgba(201,162,74,.35); transition: border-color .3s; }
.hero__contact a:hover { border-color: var(--gold-light); }
.hero__tags li { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; padding: 7px 14px; border: 1px solid rgba(244, 239, 228, .2); border-radius: 999px; color: rgba(244, 239, 228, .75); }

.hero__visual { position: relative; aspect-ratio: 4 / 5; max-height: 78vh; }
.arch {
  position: absolute; inset: 0 8% 0 8%; border-radius: 999px 999px 26px 26px; overflow: hidden;
  border: 1.5px solid rgba(201, 162, 74, .45); box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .8), inset 0 0 0 10px var(--teal-900);
  clip-path: inset(100% 0 0 0 round 999px 999px 26px 26px);
}
.arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; transform: scale(1.18); will-change: transform; }
.arch__glass { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8, 38, 38, .55)); }
.hero__badge { position: absolute; left: -4%; bottom: 8%; width: 138px; height: 138px; opacity: 0; }
.hero__badge-ring { position: absolute; inset: 0; animation: spin 18s linear infinite; }
.hero__badge-ring text { font-family: var(--font-body); font-size: 9.6px; letter-spacing: .18em; text-transform: uppercase; fill: var(--gold-light); font-weight: 600; }
.hero__badge-core { position: absolute; inset: 26px; border-radius: 50%; background: var(--gold); color: var(--teal-950); display: grid; place-content: center; text-align: center; box-shadow: 0 20px 40px -15px rgba(201,162,74,.8); }
.hero__badge-num { font-family: var(--font-display); font-size: 28px; font-weight: 600; line-height: 1; }
.hero__badge-lbl { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__chip {
  position: absolute; margin: 0; display: flex; align-items: center; gap: 12px; padding: 8px 16px 8px 8px;
  background: rgba(8, 38, 38, .92);
  border: 1px solid rgba(201, 162, 74, .35); border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .02em; opacity: 0;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.8);
}
.hero__chip img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.hero__chip--1 { right: -2%; top: 14%; }
.hero__chip--2 { right: 4%; bottom: 20%; }

.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(244,239,228,.6); opacity: 0; }
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollcue 2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollcue { 0% { transform: scaleY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }

/* ── Marquee ─────────────────────────────────────────── */
.marquee { background: var(--gold); color: var(--teal-950); overflow: hidden; padding: 16px 0; border-block: 1px solid rgba(0,0,0,.08); }
.marquee__track { will-change: transform; display: flex; gap: 40px; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: .02em; align-items: center; }
.marquee__track i { font-style: normal; font-size: 12px; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Story ───────────────────────────────────────────── */
.story__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.story__media { position: relative; }
.reveal-img { position: relative; overflow: hidden; border-radius: var(--radius); clip-path: inset(0 100% 0 0 round var(--radius)); }
.reveal-img img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.story__media .reveal-img { aspect-ratio: 4 / 3; }
.story__stamp { position: absolute; right: -28px; bottom: -28px; width: 150px; height: 150px; border-radius: 50%; background: var(--teal-900); color: var(--gold); display: grid; place-items: center; box-shadow: 0 25px 60px -20px rgba(8,38,38,.6); animation: spin 26s linear infinite reverse; }
.story__stamp svg { width: 100%; height: 100%; }
.story__stamp text { font-family: var(--font-body); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; fill: var(--gold-light); font-weight: 600; }
.story__stamp-center { font-family: var(--font-hindi) !important; font-size: 18px !important; letter-spacing: 0 !important; text-transform: none !important; fill: var(--cream) !important; }
.story__copy .lede strong { color: var(--ink); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 32px; margin: 42px 0 36px; padding-top: 36px; border-top: 1px solid var(--line); }
.stats li { display: grid; gap: 4px; }
.stats__num { font-family: var(--font-display); font-size: clamp(38px, 4vw, 54px); font-weight: 600; color: var(--teal-800); line-height: 1; }
.stats__lbl { font-size: 13px; color: var(--muted); letter-spacing: .02em; }

/* ── Signature (pinned horizontal) ───────────────────── */
.signature { overflow: hidden; padding-bottom: 0; }
.signature .container { position: relative; z-index: 1; }
.signature__track { display: flex; gap: clamp(20px, 2.5vw, 34px); padding: 0 var(--gutter) clamp(80px, 10vw, 140px); width: max-content; will-change: transform; }
.dish {
  position: relative; width: clamp(290px, 28vw, 400px); padding: 28px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(201, 162, 74, .22); transform-style: preserve-3d; transition: border-color .4s, box-shadow .5s;
  display: flex; flex-direction: column;
}
.dish:hover { border-color: rgba(201, 162, 74, .6); box-shadow: 0 40px 80px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(201,162,74,.15); }
.dish__img { width: 132px; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 1.5px solid rgba(201,162,74,.45); background: var(--cream); margin: 10px 0 26px auto; transform: translateZ(30px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.8); }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.2s var(--ease-out); }
.dish:hover .dish__img img { transform: scale(1.12) rotate(-2deg); }
.dish__num { position: absolute; top: 34px; left: 28px; font-family: var(--font-display); font-size: 44px; color: var(--gold); letter-spacing: .02em; opacity: .55; line-height: 1; }
.dish h3 { font-size: 30px; margin-bottom: 10px; color: var(--cream); }
.dish p { font-size: 14.5px; color: rgba(244,239,228,.68); }
.dish__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.price { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--gold-light); }
.dish__tag { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,239,228,.55); }
.signature__hint { position: absolute; right: var(--gutter); top: clamp(80px, 11vw, 150px); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,239,228,.5); margin: 0; }
.signature__hint span { color: var(--gold); }

/* ── Menu ────────────────────────────────────────────── */
.menu { background: var(--ivory); }
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 48px; position: sticky; top: 78px; z-index: 5; padding: 8px; background: rgba(251,248,241,.96); border-radius: 999px; width: fit-content; margin-inline: auto; max-width: 100%; }
.tab { position: relative; padding: 12px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; transition: color .35s; z-index: 1; white-space: nowrap; }
.tab small { font-family: var(--font-hindi); font-size: 12px; opacity: .7; }
.tab::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: var(--teal-900); transform: scale(.85); opacity: 0; transition: transform .45s var(--ease-out), opacity .35s; z-index: -1; }
.tab:hover { color: var(--teal-900); }
.tab.is-active { color: var(--cream); }
.tab.is-active::before { transform: scale(1); opacity: 1; }
.menu__panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 56px) clamp(40px, 6vw, 90px); min-height: 400px; }
.menu-section { opacity: 0; transform: translateY(24px); }
.menu-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-bottom: 1.5px solid var(--teal-900); padding-bottom: 12px; margin-bottom: 8px; }
.menu-section__head h3 { font-size: clamp(26px, 2.4vw, 34px); color: var(--teal-900); }
.menu-section__head small { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-align: right; }
.menu-cols { display: grid; grid-template-columns: 1fr repeat(var(--n), 64px); gap: 12px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; padding: 10px 0 4px; text-align: right; }
.menu-item { display: grid; grid-template-columns: 1fr repeat(var(--n, 1), 64px); gap: 12px; align-items: baseline; padding: 11px 0; border-bottom: 1px dashed var(--line); transition: background .3s, padding-left .4s var(--ease-out); }
.menu-item:hover { padding-left: 8px; background: linear-gradient(90deg, rgba(201,162,74,.08), transparent); }
.menu-item__name { font-size: 16px; font-weight: 500; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.menu-item__name .sig { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-950); background: var(--gold); padding: 3px 7px; border-radius: 999px; font-weight: 700; }
.menu-item__price { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--teal-800); text-align: right; white-space: nowrap; }
.menu-item__price.is-na { color: var(--line); }
.menu-item--single .menu-item__price { min-width: 64px; }
.menu__cards { margin-top: 64px; padding: 36px; border-radius: var(--radius); background: var(--teal-900); color: var(--cream); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.menu__cards p { margin: 0; font-family: var(--font-display); font-size: 24px; }

/* ── Ambience / gallery ──────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 18px; }
.gallery__item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption { position: absolute; left: 18px; bottom: 16px; padding: 8px 14px; border-radius: 999px; background: rgba(8,38,38,.7); color: var(--cream); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(8px); transform: translateY(8px); opacity: 0; transition: transform .5s var(--ease-out), opacity .4s; }
.gallery__item:hover figcaption { transform: none; opacity: 1; }
.gallery__item--insta { grid-column: span 2; background: var(--teal-900); color: var(--cream); display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 28px; transition: background .4s; }
.gallery__item--insta:hover { background: var(--teal-800); }
.gallery__item--insta svg { color: var(--gold); margin-bottom: 10px; }
.gallery__item--insta strong { font-family: var(--font-display); font-size: 24px; }
.gallery__item--insta span { font-size: 13px; color: rgba(244,239,228,.65); }
.gallery__item--insta em { margin-top: 12px; font-style: normal; font-size: 13px; color: var(--gold-light); font-weight: 600; }

/* ── Visit ───────────────────────────────────────────── */
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.info { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; margin: 40px 0 36px; }
.info dt { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 700; }
.info dd { margin: 0; font-size: 16px; line-height: 1.6; color: rgba(244,239,228,.85); }
.info dd a { border-bottom: 1px solid rgba(201,162,74,.35); transition: color .3s, border-color .3s; }
.info dd a:hover { color: var(--gold-light); border-color: var(--gold-light); }
.visit__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.visit__map { aspect-ratio: 4 / 5; max-height: 640px; border: 1.5px solid rgba(201,162,74,.35); background: var(--teal-800); }
.visit__map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85) contrast(1.05); }

/* ── Footer ──────────────────────────────────────────── */
.footer { background: var(--teal-950); color: rgba(244,239,228,.75); overflow: hidden; }
.footer__marquee { padding: 40px 0 10px; overflow: hidden; border-bottom: 1px solid var(--line-light); }
.footer__marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 40s linear infinite; font-family: var(--font-display); font-size: clamp(64px, 12vw, 150px); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(201,162,74,.4); }
.footer__marquee-track span:nth-child(even) { font-family: var(--font-hindi); -webkit-text-stroke: 0; color: rgba(201,162,74,.22); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 60px 0 40px; }
.footer__brand .logo { height: 76px; margin-bottom: 14px; }
.footer__brand p { font-size: 14px; }
.footer__col h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer__col a { display: block; font-size: 15px; padding: 5px 0; transition: color .3s, transform .4s var(--ease-out); }
.footer__col a:hover { color: var(--gold-light); transform: translateX(6px); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 22px 0 calc(28px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line-light); font-size: 12.5px; color: rgba(244,239,228,.5); }

/* ── Lightbox ────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 950; background: rgba(6,29,29,.92); backdrop-filter: blur(10px); display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .45s; padding: 60px 20px; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__fig { margin: 0; max-width: min(92vw, 560px); max-height: 100%; display: grid; gap: 12px; justify-items: center; transform: scale(.94) translateY(16px); transition: transform .6s var(--ease-out); }
.lightbox.is-open .lightbox__fig { transform: none; }
.lightbox__fig img { max-height: calc(100vh - 160px); width: auto; max-width: 100%; border-radius: 14px; box-shadow: 0 40px 100px -30px rgba(0,0,0,.9); object-fit: contain; }
.lightbox__fig figcaption { color: var(--gold-light); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.lightbox__close, .lightbox__nav { position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(244,239,228,.25); color: var(--cream); display: grid; place-items: center; font-size: 22px; transition: background .3s, transform .4s var(--ease-out); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: var(--teal-950); border-color: var(--gold); transform: scale(1.08); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 34px; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--prev { left: 22px; } .lightbox__nav--next { right: 22px; }
.lightbox__count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(244,239,228,.6); font-size: 12px; letter-spacing: .2em; }

.totop { position: fixed; right: 22px; bottom: calc(22px + env(safe-area-inset-bottom, 0px)); z-index: 800; width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--teal-950); display: grid; place-items: center; font-weight: 700; box-shadow: 0 14px 30px -10px rgba(201,162,74,.8); opacity: 0; transform: translateY(20px) scale(.8); transition: opacity .4s, transform .5s var(--ease-out); pointer-events: none; }
.totop.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { transform: translateY(-4px); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; max-height: none; }
  .hero__chip--1 { right: 0; }
  .story__grid, .visit__grid { grid-template-columns: 1fr; }
  .story__stamp { right: 10px; bottom: -20px; width: 120px; height: 120px; }
  .menu__panel { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --nav-h: 72px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta .btn { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 24px); }
  .hero__title { font-size: clamp(50px, 14vw, 96px); }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .tabs { position: static; border-radius: 22px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; width: 100%; scrollbar-width: none; }
  .tabs::-webkit-scrollbar { display: none; }
  .signature__hint { display: none; }
  .signature__track { width: 100%; display: grid; grid-template-columns: 1fr; padding-inline: var(--gutter); }
  .dish { width: 100%; }
  .lantern--b { display: none; }
  .lantern--a { display: none; }
  .lantern--c { right: 4%; top: 11%; width: 34px; }
  .info { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 26px; }
  .lightbox__nav--prev { left: 8px; } .lightbox__nav--next { right: 8px; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--insta { grid-column: span 1; }
  .hero__badge { display: none; }
  .hero__chip { font-size: 12px; }
  .menu-item { grid-template-columns: 1fr repeat(var(--n, 1), 52px); gap: 8px; }
  .menu-cols { grid-template-columns: 1fr repeat(var(--n), 52px); gap: 8px; }
  .menu-item__price { font-size: 17px; }
  .menu__cards { padding: 26px; }
}

/* ── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .hero__title .word, [data-split] .split-line > span { transform: none; }
  .hero__eyebrow-text, .hero__hindi, .hero__lead, .hero__actions, .hero__tags, .hero__contact, .hero__badge, .hero__chip, .hero__scroll, .menu-section { opacity: 1; transform: none; }
  .arch { clip-path: none; }
  .reveal-img { clip-path: none; }
  .hero__eyebrow .line { width: 34px; }
}
