/* ============================================================
   RANA'S INDIAN FUSION & DOSA HOUSE — Design System
   Warm & airy luxury: ivory canvas, saffron + gold, charcoal,
   dramatic maroon/dark sections.
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=Hanken+Grotesk:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Cinzel:wght@400;500;600;700;800;900&family=Great+Vibes&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* surfaces */
  --cream:        #FBF6EC;
  --cream-2:      #F4EAD7;
  --cream-3:      #ECDFC6;
  --paper:        #FFFDF8;

  /* ink */
  --ink:          #271C12;
  --ink-soft:     #5E5040;
  --ink-faint:    #8A7A64;

  /* brand */
  --saffron:      #C4571C;
  --saffron-deep: #A23E0C;
  --gold:         #C0991F;
  --gold-light:   #DFBE5E;
  --gold-soft:    #E9D9A6;
  --maroon:       #5E1418;
  --maroon-deep:  #3A0B0E;
  --maroon-2:     #761A1E;

  /* Punjab / Haryana phulkari palette */
  --mustard:      #E3A50B;
  --punjab-pink:  #C2185B;
  --punjab-green: #2E7D32;
  --punjab-orange:#E85D04;

  /* utility */
  --line:         #E3D6BC;
  --line-soft:    rgba(39,28,18,.10);
  --shadow-sm:    0 2px 10px rgba(58,32,8,.06);
  --shadow-md:    0 14px 40px -18px rgba(58,32,8,.30);
  --shadow-lg:    0 40px 90px -40px rgba(20,8,2,.55);

  /* type */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --script: 'Great Vibes', cursive;
  --regal:  'Cinzel', 'Playfair Display', serif;

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }
.display {
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.02em;
}
.h-section {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 700;
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow.on-dark { color: var(--gold-light); }
.eyebrow::before, .eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .55;
}
.eyebrow.center { justify-content: center; }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--ink-soft);
  line-height: 1.65;
}
.script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--saffron);
}
em.gold { font-style: italic; color: var(--gold); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1440px; }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section-sm { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }
.stack-sm > * + * { margin-top: .9rem; }
.divider-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--gold); margin: 18px 0;
}
.divider-ornament::before, .divider-ornament::after {
  content: ""; height: 1px; width: clamp(40px, 12vw, 120px);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.diamond { width: 9px; height: 9px; transform: rotate(45deg); background: var(--gold); flex: none; }
.diamond.hollow { background: transparent; border: 1.5px solid var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --bg: var(--saffron); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 30px;
  background: var(--bg); color: var(--fg);
  font-family: var(--sans); font-weight: 600; font-size: .94rem;
  letter-spacing: .02em;
  border-radius: 2px;
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 10px 24px -12px rgba(164,62,12,.7);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(164,62,12,.8); }
.btn:active { transform: translateY(0); }
.btn--gold { --bg: linear-gradient(135deg, var(--gold-light), var(--gold)); --fg: var(--maroon-deep); box-shadow: 0 10px 24px -12px rgba(192,153,31,.8); }
.btn--ghost {
  --fg: var(--ink); background: transparent; color: var(--fg);
  border: 1.5px solid var(--line); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--saffron); color: var(--saffron); background: rgba(196,87,28,.05); }
.btn--ghost-light {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(255,255,255,.4); box-shadow: none;
}
.btn--ghost-light:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(255,255,255,.06); }
.btn--gold-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); box-shadow: none; }
.btn--gold-outline:hover { background: var(--gold); color: var(--maroon-deep); }
.nav.on-hero:not(.scrolled) .btn--gold-outline { color: var(--gold-light); border-color: var(--gold-light); }
.nav.on-hero:not(.scrolled) .btn--gold-outline:hover { background: var(--gold-light); color: var(--maroon-deep); }
.btn--lg { padding: 18px 38px; font-size: 1rem; }
.btn--sm { padding: 11px 20px; font-size: .84rem; }
.btn--block { display: flex; width: 100%; }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }

.link-underline {
  font-weight: 600; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--saffron); display: inline-flex; align-items: center; gap: .5em;
  border-bottom: 1.5px solid transparent; padding-bottom: 3px;
  transition: border-color .25s, gap .25s;
}
.link-underline:hover { border-color: var(--saffron); gap: .8em; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  top: 35px;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: top .3s ease, height .3s ease, background .3s ease, box-shadow .3s ease;
}
.nav__top-strip {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--maroon-deep); color: var(--gold-soft);
  font-size: .8rem; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  padding: 7px 16px;
  transition: transform .3s ease;
}
.nav__top-strip a { color: var(--gold-light); font-weight: 600; white-space: nowrap; }
.nav__top-strip .mi { white-space: nowrap; }
.nav__top-strip .sep { opacity: .4; }
.has-strip { padding-top: 35px; } /* offset for top strip on body */
.nav.scrolled {
  top: 0;
  background: var(--paper);
  box-shadow: 0 6px 30px -16px rgba(58,32,8,.4);
  height: 70px;
}
.nav__inner {
  width: 100%; max-width: 1440px; margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand__mark {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border: 1.5px solid var(--gold); border-radius: 50%;
  color: var(--gold); position: relative;
}
.brand__mark span { font-family: var(--serif); font-weight: 800; font-size: 1.25rem; color: var(--saffron); }
.brand__mark::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%;
  border: 1px solid var(--gold-soft);
}
.brand__txt { line-height: 1; }
.brand__name { font-family: var(--serif); font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -.01em; }
.brand__sub { font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-top: 3px; }
.nav.on-hero:not(.scrolled) .brand__name { color: var(--cream); }
.nav.on-hero:not(.scrolled) .nav__link { color: rgba(255,255,255,.85); }
.nav.on-hero:not(.scrolled) .nav__link:hover { color: #fff; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-weight: 500; font-size: .92rem; color: var(--ink-soft);
  padding: 9px 15px; border-radius: 2px; position: relative;
  transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 1.5px; background: var(--saffron); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover, .nav__link.active { color: var(--saffron); }
.nav.on-hero:not(.scrolled) .nav__link.active { color: var(--gold-light); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav.on-hero:not(.scrolled) .nav__link::after { background: var(--gold-light); }
.nav__cta { display: flex; align-items: center; gap: 10px; flex: none; }

.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s; border-radius: 2px; }
.nav.on-hero:not(.scrolled) .nav__burger span { background: var(--cream); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--maroon-deep);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px var(--gutter) 40px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.7,0,.2,1);
  visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer__links { display: flex; flex-direction: column; gap: 6px; }
.drawer__links a {
  font-family: var(--serif); font-size: 2rem; color: var(--cream); font-weight: 600;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer__links a .n { font-family: var(--sans); font-size: .8rem; color: var(--gold); opacity: .7; }
.drawer__links a:hover, .drawer__links a.active { color: var(--gold-light); }
.drawer__foot { margin-top: 36px; color: var(--gold-soft); }
.drawer__foot .ph { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-light); }
.drawer .btn { margin-top: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: var(--cream); overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,9,5,.55) 0%, rgba(31,9,5,.35) 40%, rgba(31,9,5,.82) 100%),
    radial-gradient(120% 90% at 70% 20%, rgba(0,0,0,0) 30%, rgba(31,9,5,.6) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; padding-block: 60px; }
.hero__title { margin: 18px 0 22px; text-shadow: 0 4px 40px rgba(0,0,0,.4); }
.hero__title .ln2 { color: var(--gold-light); font-style: italic; font-weight: 600; }
.hero__lead { font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta {
  position: absolute; bottom: 34px; left: var(--gutter); right: var(--gutter); z-index: 2;
  display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center;
  color: rgba(255,255,255,.82); font-size: .9rem;
  border-top: 1px solid rgba(255,255,255,.16); padding-top: 22px;
}
.hero__meta b { color: var(--gold-light); font-weight: 600; }
.hero__meta .mi { display: inline-flex; align-items: center; gap: 9px; }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: none;
}

/* ============================================================
   IMAGE PLACEHOLDERS  (styled drop-in slots)
   ============================================================ */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(94,20,24,.05) 0 14px, rgba(94,20,24,.02) 14px 28px),
    linear-gradient(135deg, var(--cream-3), var(--cream-2));
  display: grid; place-items: center; color: var(--ink-faint);
  border: 1px solid var(--line);
}
.ph::before {
  content: ""; position: absolute; inset: 11px;
  border: 1px dashed rgba(94,20,24,.22);
  pointer-events: none;
}
.ph__label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .72rem; letter-spacing: .06em; text-transform: lowercase;
  color: var(--saffron-deep); background: rgba(251,246,236,.85);
  padding: 6px 12px; border-radius: 2px; text-align: center;
  max-width: 80%; position: relative; z-index: 1;
  border: 1px solid rgba(196,87,28,.2);
}
.ph__icon { position: absolute; font-size: 2.2rem; opacity: .12; }
.ph.dark {
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.18) 0 14px, rgba(0,0,0,.08) 14px 28px),
    linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold-soft); border-color: rgba(223,190,94,.2);
}
.ph.dark::before { border-color: rgba(223,190,94,.25); }
.ph.dark .ph__label { color: var(--gold-light); background: rgba(58,11,14,.7); border-color: rgba(223,190,94,.3); }

/* ============================================================
   SECTION: STORY / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split.flip > .split__media { order: 2; }
.split__media { position: relative; }
.split__media .ph { aspect-ratio: 4/5; border-radius: 3px; box-shadow: var(--shadow-md); }
.media-badge {
  position: absolute; bottom: -26px; right: -22px;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); padding: 18px 22px; border-radius: 3px;
  text-align: center; max-width: 200px;
}
.media-badge .big { font-family: var(--serif); font-size: 2.2rem; font-weight: 800; color: var(--saffron); line-height: 1; }
.media-badge .lbl { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 6px; }
.split__media .stack-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split__media .stack-media .ph:first-child { aspect-ratio: 3/4; grid-row: span 2; }
.split__media .stack-media .ph { aspect-ratio: 1; }

/* feature list */
.feat-list { display: grid; gap: 18px; margin-top: 28px; }
.feat-list li { display: flex; gap: 16px; align-items: flex-start; }
.feat-list .ic {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  display: grid; place-items: center; background: var(--cream-2);
  border: 1px solid var(--gold-soft); color: var(--saffron); font-size: 1.1rem;
}
.feat-list h4 { font-family: var(--sans); font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.feat-list p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--cream); padding: 34px 24px; text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: var(--saffron); line-height: 1; }
.stat .lbl { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 10px; }

/* ============================================================
   MENU CARDS
   ============================================================ */
.menu-featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dish {
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dish__media { aspect-ratio: 5/4; position: relative; }
.dish__media .ph { position: absolute; inset: 0; }
.dish__spice { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; gap: 3px; background: rgba(58,11,14,.7); padding: 5px 9px; border-radius: 20px; }
.dish__spice .f { font-size: .8rem; }
.dish__price-tag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--gold); color: var(--maroon-deep); font-weight: 700;
  padding: 6px 12px; border-radius: 20px; font-size: .9rem; box-shadow: var(--shadow-sm);
}
.dish__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.dish__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 700; }
.dish__desc { font-size: .92rem; color: var(--ink-soft); margin: 8px 0 16px; flex: 1; }
.dish__tags { display: flex; flex-wrap: wrap; gap: 7px; }

/* dietary tag */
.tag {
  font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px; border: 1px solid;
}
.tag--gf    { color: #2f6b3a; border-color: #b6d8be; background: #eef6ef; }
.tag--vegan { color: #3a6b2f; border-color: #c2dbb0; background: #f0f6ea; }
.tag--veg   { color: #2f6b3a; border-color: #b6d8be; background: #eef6ef; }
.tag--halal { color: var(--saffron-deep); border-color: #e8c9b0; background: #fbf0e7; }
.tag--df    { color: #5a4a8a; border-color: #cdc4e6; background: #f1eefa; }
.tag--chef  { color: var(--gold); border-color: var(--gold-soft); background: #fdf8e9; }

/* ============================================================
   FULL MENU (menu page)
   ============================================================ */
.menu-nav {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: rgba(251,246,236,.92); backdrop-filter: blur(10px);
  border-block: 1px solid var(--line);
}
.menu-nav__inner { display: flex; gap: 6px; overflow-x: auto; padding: 12px var(--gutter); scrollbar-width: none; }
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: none; padding: 9px 18px; border-radius: 30px; font-weight: 600; font-size: .88rem;
  color: var(--ink-soft); white-space: nowrap; transition: .2s; border: 1px solid transparent;
}
.menu-tab:hover { color: var(--saffron); background: rgba(196,87,28,.06); }
.menu-tab.active { background: var(--maroon); color: var(--cream); }

.menu-cat { padding-top: clamp(48px, 7vw, 90px); scroll-margin-top: calc(var(--nav-h) + 70px); }
.menu-cat__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 12px; }
.menu-cat__title { display: flex; align-items: baseline; gap: 16px; }
.menu-cat__title .idx { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); font-style: italic; }
.menu-cat__note { font-size: .9rem; color: var(--ink-faint); font-style: italic; max-width: 380px; }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 56px; margin-top: 26px; }
.mi-row {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 16px;
  padding: 18px 0; border-bottom: 1px dashed var(--line); align-items: baseline;
}
.mi-row__head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.mi-row__name { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; }
.mi-row__dots { flex: 1; border-bottom: 1px dotted var(--line); min-width: 18px; transform: translateY(-4px); }
.mi-row__price { font-family: var(--serif); font-weight: 700; font-size: 1.12rem; color: var(--saffron); white-space: nowrap; }
.mi-row__desc { grid-column: 1 / -1; font-size: .9rem; color: var(--ink-soft); margin-top: 4px; max-width: 90%; }
.mi-row__tags { grid-column: 1 / -1; display: flex; gap: 6px; margin-top: 9px; flex-wrap: wrap; }
.mi-row.chef .mi-row__name::after {
  content: "★"; color: var(--gold); font-size: .8rem; margin-left: 6px; vertical-align: super;
}
.spice-dots { display: inline-flex; gap: 2px; align-items: center; }
.spice-dots .s { width: 6px; height: 6px; border-radius: 50%; background: var(--saffron); }
.spice-dots .s.off { background: var(--line); }

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.reviews { background: var(--maroon-deep); color: var(--cream); position: relative; overflow: hidden; }
.reviews::before {
  content: "\201C"; position: absolute; top: -40px; left: 4%; font-family: var(--serif);
  font-size: 22rem; color: rgba(223,190,94,.07); line-height: 1; pointer-events: none;
}
.review-track { position: relative; min-height: 240px; }
.review {
  position: absolute; inset: 0; opacity: 0; transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 800px; margin-inline: auto;
}
.review.active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.review__stars { color: var(--gold-light); letter-spacing: 4px; font-size: 1.1rem; margin-bottom: 22px; }
.review__quote { font-family: var(--serif); font-size: clamp(1.3rem, 2.7vw, 2rem); line-height: 1.4; font-weight: 500; }
.review__who { margin-top: 26px; }
.review__name { font-weight: 700; color: var(--gold-light); letter-spacing: .04em; }
.review__src { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 3px; }
.review-dots { display: flex; gap: 9px; justify-content: center; margin-top: 40px; }
.review-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.25); transition: .3s; }
.review-dots button.active { background: var(--gold-light); width: 28px; border-radius: 6px; }
.review-arrows { display: flex; gap: 12px; justify-content: center; margin-top: 8px; }

/* ============================================================
   ORDER / CTA BANNER
   ============================================================ */
.order-banner { position: relative; overflow: hidden; color: var(--cream); }
.order-banner .ph { position: absolute; inset: 0; }
.order-banner__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(58,11,14,.92), rgba(94,20,24,.78) 55%, rgba(58,11,14,.55)); }
.order-banner__inner { position: relative; z-index: 2; }
.order-apps { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.app-btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px;
  background: var(--paper); color: var(--ink); border-radius: 4px; font-weight: 600;
  transition: transform .25s, box-shadow .25s; box-shadow: var(--shadow-sm);
}
.app-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.app-btn .logo { width: 30px; height: 30px; border-radius: 7px; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: .9rem; flex: none; }
.app-btn .logo.dd { background: #ff3008; }
.app-btn .logo.ue { background: #06c167; }
.app-btn .logo.sf { background: var(--saffron); }
.app-btn small { display: block; font-size: .68rem; color: var(--ink-faint); font-weight: 500; letter-spacing: .04em; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head {
  position: relative; padding-top: calc(var(--nav-h) + 60px); padding-bottom: 64px;
  background: var(--maroon-deep); color: var(--cream); overflow: hidden;
  text-align: center;
}
.page-head .ph { position: absolute; inset: 0; opacity: .35; }
.page-head::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58,11,14,.5), rgba(58,11,14,.92)); }
.page-head__inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; }
.page-head__title { margin: 16px 0 14px; font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
.page-head__lead { color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.breadcrumb { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); display: flex; gap: 10px; justify-content: center; }
.breadcrumb a { opacity: .8; } .breadcrumb a:hover { opacity: 1; }
.breadcrumb .sep { opacity: .4; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.info-card { display: grid; gap: 22px; }
.info-row { display: flex; gap: 18px; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.info-row:last-child { border: none; }
.info-row .ic { width: 46px; height: 46px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--maroon); color: var(--gold-light); font-size: 1.1rem; }
.info-row h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 5px; }
.info-row p { font-size: 1.08rem; color: var(--ink); }
.info-row a:hover { color: var(--saffron); }
.map-embed { aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: saturate(.9); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .98rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.hours-table tr.today td { color: var(--saffron); }
.hours-table tr.today td:first-child::before { content: "● "; color: #2f9e44; font-size: .7em; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 8px; }
.field label .req { color: var(--saffron); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; background: var(--cream); border: 1.5px solid var(--line);
  border-radius: 3px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(196,87,28,.12); background: var(--paper);
}
.field textarea { resize: vertical; min-height: 110px; }
.field.invalid input, .field.invalid select { border-color: #c0392b; }
.field .err { color: #c0392b; font-size: .8rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 9px 16px; border: 1.5px solid var(--line); border-radius: 30px; font-size: .88rem; font-weight: 500;
  transition: .2s; background: var(--cream);
}
.chip:hover { border-color: var(--saffron); }
.chip.sel { background: var(--maroon); color: var(--cream); border-color: var(--maroon); }
.form-success {
  display: none; text-align: center; padding: 20px;
}
.form-success.show { display: block; animation: pop .4s ease; }
.form-success .check { width: 66px; height: 66px; border-radius: 50%; background: #2f9e44; color: #fff; display: grid; place-items: center; font-size: 2rem; margin: 0 auto 18px; }
@keyframes pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* reservation widget (OpenTable-style) */
.res-widget {
  background: var(--paper); border: 1px solid var(--gold-soft); border-radius: 6px;
  box-shadow: var(--shadow-lg); padding: 26px; max-width: 380px;
}
.res-widget__head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.res-widget__head .ot { font-weight: 800; color: var(--saffron); font-size: .9rem; letter-spacing: .02em; }
.res-widget__head .powered { font-size: .68rem; color: var(--ink-faint); margin-left: auto; }

/* ============================================================
   CATERING / PACKAGE CARDS
   ============================================================ */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.pkg {
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: 34px 30px;
  display: flex; flex-direction: column; position: relative; transition: transform .3s, box-shadow .3s;
}
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pkg.featured { border-color: var(--gold); box-shadow: var(--shadow-md); }
.pkg.featured::before {
  content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--maroon-deep); font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 16px; border-radius: 20px;
}
.pkg__name { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; }
.pkg__price { font-family: var(--serif); font-size: 2.6rem; font-weight: 800; color: var(--saffron); margin: 12px 0 4px; }
.pkg__price small { font-family: var(--sans); font-size: .9rem; color: var(--ink-faint); font-weight: 500; }
.pkg__list { display: grid; gap: 12px; margin: 24px 0; flex: 1; }
.pkg__list li { display: flex; gap: 11px; font-size: .94rem; color: var(--ink-soft); }
.pkg__list .ck { color: #2f9e44; flex: none; font-weight: 700; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; }
.gallery-item .ph { position: absolute; inset: 0; transition: transform .5s ease; }
.gallery-item:hover .ph { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-cap {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 16px;
  background: linear-gradient(transparent, rgba(58,11,14,.8)); color: var(--cream);
  font-family: var(--serif); font-size: 1.05rem; opacity: 0; transform: translateY(10px); transition: .3s;
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--maroon-deep); color: rgba(255,255,255,.7); padding-top: clamp(56px, 8vw, 96px); position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 18px;
  background-color: var(--maroon);
  background-image:
    linear-gradient(135deg, var(--punjab-pink) 25%, transparent 25%),
    linear-gradient(225deg, var(--mustard) 25%, transparent 25%),
    linear-gradient(315deg, var(--punjab-green) 25%, transparent 25%),
    linear-gradient(45deg,  var(--punjab-orange) 25%, transparent 25%);
  background-position: -9px 0, -9px 0, 0 0, 0 0; background-size: 18px 18px; background-repeat: repeat-x; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 56px; }
.footer .brand__name { color: var(--cream); }
.footer__about { margin: 20px 0; font-size: .94rem; line-height: 1.7; max-width: 320px; }
.footer h5 { font-family: var(--sans); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .94rem; transition: color .2s, padding .2s; }
.footer__links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer__contact { display: grid; gap: 14px; font-size: .94rem; }
.footer__contact .row { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact .ic { color: var(--gold-light); flex: none; }
.footer__contact a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: var(--cream); transition: .25s; }
.socials a:hover { background: var(--gold); color: var(--maroon-deep); border-color: var(--gold); transform: translateY(-3px); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer__bar a:hover { color: var(--gold-light); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* SVG icon sizing */
.ico { width: 1.2em; height: 1.2em; stroke: currentColor; stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: middle; }
.ico-lg { width: 22px; height: 22px; }

/* deep-link anchor offset + highlight flash */
:target { scroll-margin-top: calc(var(--nav-h) + 30px); }
[id] { scroll-margin-top: calc(var(--nav-h) + 30px); }
@keyframes deeplinkFlash {
  0%   { box-shadow: 0 0 0 0 rgba(192,153,31,0); }
  18%  { box-shadow: 0 0 0 6px rgba(192,153,31,.45); }
  100% { box-shadow: 0 0 0 0 rgba(192,153,31,0); }
}
.deeplink-flash { animation: deeplinkFlash 1.8s ease-out; border-radius: 6px; }

/* ============================================================
   PHULKARI  —  Punjab/Haryana embroidery accent band
   ============================================================ */
.phulkari {
  height: 18px; width: 100%; flex: none;
  background-color: var(--maroon);
  background-image:
    linear-gradient(135deg, var(--punjab-pink) 25%, transparent 25%),
    linear-gradient(225deg, var(--mustard) 25%, transparent 25%),
    linear-gradient(315deg, var(--punjab-green) 25%, transparent 25%),
    linear-gradient(45deg,  var(--punjab-orange) 25%, transparent 25%);
  background-position: -9px 0, -9px 0, 0 0, 0 0;
  background-size: 18px 18px;
  background-repeat: repeat-x;
}
.phulkari--sm { height: 12px; background-size: 12px 12px; background-position: -6px 0, -6px 0, 0 0, 0 0; }
.phulkari-divider { display: flex; align-items: center; gap: 16px; margin: 0; }
.phulkari-divider .phulkari { width: clamp(60px, 22vw, 220px); border-radius: 2px; }
.phulkari-divider .gj {
  font-family: var(--regal); font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  font-size: .76rem; color: var(--saffron); white-space: nowrap;
}

/* ============================================================
   FLAVOUR MARQUEE  —  scrolling signature dishes
   ============================================================ */
.marquee { background: var(--maroon-deep); overflow: hidden; padding: 15px 0; position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--maroon-deep), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--maroon-deep), transparent); }
.marquee__track { display: flex; width: max-content; animation: marqueeScroll 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 30px; padding: 0 30px; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--gold-light); white-space: nowrap; }
.marquee__item::after { content: "\2726"; color: var(--saffron); font-size: .8em; font-style: normal; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   BRIDGE  —  “a place at the table for everyone”
   ============================================================ */
.bridge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.bridge-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 38px 34px; position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.bridge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bridge-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background-color: var(--maroon);
  background-image:
    linear-gradient(135deg, var(--punjab-pink) 25%, transparent 25%),
    linear-gradient(225deg, var(--mustard) 25%, transparent 25%),
    linear-gradient(315deg, var(--punjab-green) 25%, transparent 25%),
    linear-gradient(45deg,  var(--punjab-orange) 25%, transparent 25%);
  background-position: -7px 0, -7px 0, 0 0, 0 0; background-size: 14px 14px; }
.bridge-card__ic { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream-2); border: 1px solid var(--gold-soft); color: var(--saffron); font-size: 1.4rem; margin-bottom: 18px; }
.bridge-card__kick { font-family: var(--regal); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; color: var(--gold); }
.bridge-card h3 { font-family: var(--serif); font-size: 1.7rem; margin: 6px 0 12px; }
.bridge-card p { color: var(--ink-soft); font-size: .97rem; line-height: 1.65; margin-bottom: 16px; }
.bridge-card ul { display: grid; gap: 9px; }
.bridge-card li { display: flex; gap: 10px; font-size: .92rem; color: var(--ink); align-items: flex-start; }
.bridge-card li::before { content: "\2713"; color: #2f9e44; font-weight: 700; flex: none; }
@media (max-width: 760px) { .bridge-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ONLINE ORDERING
   ============================================================ */
.order-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.ord-cat { padding-top: 14px; }
.ord-list { display: grid; gap: 14px; }
.ord-item {
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.ord-item:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-sm); }
.ord-item__top { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.ord-item__name { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; }
.ord-item__price { color: var(--saffron); font-weight: 700; }
.ord-item__desc { font-size: .88rem; color: var(--ink-soft); margin: 5px 0 8px; max-width: 52ch; }
.ord-item__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ord-item__act { flex: none; }
.ord-add { white-space: nowrap; }

.qty { display: inline-flex; align-items: center; gap: 0; border: 1.5px solid var(--saffron); border-radius: 30px; overflow: hidden; }
.qty button { width: 34px; height: 36px; background: var(--saffron); color: #fff; font-size: 1.1rem; font-weight: 700; display: grid; place-items: center; transition: background .2s; }
.qty button:hover { background: var(--saffron-deep); }
.qty span { min-width: 30px; text-align: center; font-weight: 700; color: var(--ink); }
.qty--sm button { width: 26px; height: 28px; font-size: .95rem; }
.qty--sm { border-width: 1px; }
.qty--sm span { min-width: 22px; font-size: .9rem; }

.cart { position: sticky; top: calc(var(--nav-h) + 16px); background: var(--paper); border: 1px solid var(--gold-soft); border-radius: 12px; padding: 22px; box-shadow: var(--shadow-md); }
.cart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 10px; }
.cart-head h3 { font-family: var(--serif); font-size: 1.4rem; }
.cart-mode { display: inline-flex; border: 1px solid var(--line); border-radius: 30px; overflow: hidden; }
.cart-mode button { padding: 6px 13px; font-size: .8rem; font-weight: 600; color: var(--ink-soft); }
.cart-mode button.on { background: var(--maroon); color: var(--cream); }
.cart-empty { text-align: center; padding: 30px 10px; color: var(--ink-faint); }
.cart-empty span { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--cream-2); color: var(--saffron); margin-bottom: 12px; }
.cart-empty span svg { width: 24px; height: 24px; }
.cart-empty p { font-size: .9rem; line-height: 1.5; }
.cart-lines { display: grid; gap: 12px; margin-bottom: 16px; max-height: 40vh; overflow-y: auto; }
.cart-line { display: grid; grid-template-columns: auto 1fr auto auto; gap: 10px; align-items: center; }
.cart-line__name { font-size: .92rem; font-weight: 500; }
.cart-line__price { font-weight: 700; color: var(--ink); font-size: .92rem; }
.cart-line__x { width: 22px; height: 22px; border-radius: 50%; color: var(--ink-faint); font-size: 1.1rem; transition: .2s; }
.cart-line__x:hover { background: #fbe9e7; color: #c0392b; }
.cart-totals { border-top: 1px dashed var(--line); padding-top: 14px; margin-bottom: 16px; display: grid; gap: 8px; }
.cart-totals .row { display: flex; justify-content: space-between; font-size: .92rem; color: var(--ink-soft); }
/* tip selector */
.cart-tip { border-top: 1px dashed var(--line); padding-top: 14px; margin-bottom: 4px; }
.cart-tip__label { font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.cart-tip__label span { font-weight: 400; color: var(--ink-faint); font-size: .82rem; }
.cart-tip__opts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.cart-tip__opts button {
  padding: 9px 4px; border: 1.5px solid var(--line); border-radius: 7px; background: var(--cream);
  font-weight: 700; font-size: .86rem; color: var(--ink-soft); transition: .18s;
}
.cart-tip__opts button:hover { border-color: var(--saffron); color: var(--saffron); }
.cart-tip__opts button.on { background: var(--maroon); color: var(--cream); border-color: var(--maroon); }
.cart-tip__opts button[data-tip="custom"], .cart-tip__opts button[data-tip="none"] { grid-column: span 2; }
.cart-tip__custom { display: flex; align-items: center; gap: 6px; margin-top: 8px; border: 1.5px solid var(--saffron); border-radius: 7px; padding: 0 12px; }
.cart-tip__custom span { color: var(--ink-faint); font-weight: 700; }
.cart-tip__custom input { width: 100%; border: none; background: none; padding: 11px 0; font-weight: 700; }
.cart-tip__custom input:focus { outline: none; }
/* checkout modal breakdown */
.ord-modal__breakdown { text-align: left; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); padding: 12px 0; margin-bottom: 14px; display: grid; gap: 6px; }
.ord-modal__breakdown .row { display: flex; justify-content: space-between; font-size: .9rem; color: var(--ink-soft); }
.cart-totals .row--total { border-top: 1px solid var(--line); padding-top: 10px; margin-top: 4px; font-family: var(--serif); font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.cart-totals .row--total span:last-child { color: var(--saffron); }
.cart-alt { text-align: center; font-size: .82rem; color: var(--ink-faint); margin-top: 12px; }
.cart-alt a { color: var(--saffron); font-weight: 600; }

/* floating cart button (mobile) */
.cart-fab { position: fixed; left: 18px; bottom: 22px; z-index: 8000; width: 56px; height: 56px; border-radius: 50%; background: var(--maroon); color: var(--cream); display: none; place-items: center; box-shadow: var(--shadow-lg); }
.cart-fab svg { width: 24px; height: 24px; }
.cart-fab [data-cart-count] { position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; padding: 0 5px; border-radius: 11px; background: var(--gold); color: var(--maroon-deep); font-size: .76rem; font-weight: 800; display: grid; place-items: center; border: 2px solid var(--maroon-deep); }

/* checkout modal */
.ord-modal { position: fixed; inset: 0; z-index: 9500; background: rgba(31,9,5,.6); display: grid; place-items: center; padding: 20px; opacity: 0; transition: opacity .25s; }
.ord-modal.show { opacity: 1; }
.ord-modal__card { background: var(--paper); border-radius: 14px; padding: 36px 30px; max-width: 420px; text-align: center; box-shadow: var(--shadow-lg); transform: scale(.94); transition: transform .25s; }
.ord-modal.show .ord-modal__card { transform: none; }
.ord-modal__check { width: 64px; height: 64px; border-radius: 50%; background: #2f9e44; color: #fff; display: grid; place-items: center; font-size: 1.8rem; margin: 0 auto 18px; }
.ord-modal__card h3 { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 12px; }
.ord-modal__card p { color: var(--ink-soft); margin-bottom: 16px; line-height: 1.55; }
.ord-modal__total { display: flex; justify-content: space-between; background: var(--cream-2); border-radius: 8px; padding: 14px 18px; margin-bottom: 18px; }
.ord-modal__total b { font-family: var(--serif); font-size: 1.3rem; color: var(--saffron); }

@media (max-width: 920px) {
  .order-layout { grid-template-columns: 1fr; }
  .cart { position: static; }
  .cart-fab { display: grid; }
}

/* ============================================================
   BRAND IDENTITY  —  matches the menu cover
   metallic gold lockup · filigree · emblem · damask
   ============================================================ */

/* metallic gold text */
.gold-text {
  background: linear-gradient(177deg, #fff3cf 0%, #f2da8c 22%, #e8c14a 42%, #c0991f 58%, #9c7615 72%, #e8c14a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.35));
}

/* the stacked wordmark lockup (Rana's / INDIAN FUSION / & DOSA HOUSE) */
.lockup { text-align: center; line-height: 1; }
.lockup__rana {
  font-family: var(--script); font-weight: 400;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: .8; display: block; padding-top: .1em;
}
.lockup__fusion {
  font-family: var(--regal); font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 3.1rem);
  letter-spacing: .06em; display: block; margin-top: .12em;
  text-transform: uppercase;
}
.lockup__dosa {
  display: flex; align-items: center; justify-content: center; gap: .8em;
  font-family: var(--regal); font-weight: 600;
  font-size: clamp(.7rem, 1.6vw, 1.05rem);
  letter-spacing: .26em; text-transform: uppercase; margin-top: .7em;
  color: var(--gold-light);
}
.lockup__dosa::before, .lockup__dosa::after {
  content: ""; width: clamp(20px, 5vw, 54px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}
.lockup__dosa::after { background: linear-gradient(90deg, var(--gold-light), transparent); }
.lockup__dosa .d { width: 6px; height: 6px; transform: rotate(45deg); background: var(--gold-light); flex: none; }

/* damask / maroon brand surface */
.brand-surface {
  background:
    radial-gradient(120% 120% at 50% -10%, rgba(150,40,30,.55), transparent 60%),
    radial-gradient(80% 80% at 80% 110%, rgba(120,25,30,.5), transparent 60%),
    linear-gradient(160deg, #4a1013 0%, #3a0b0e 45%, #2a0709 100%);
  position: relative;
}
.brand-surface::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(223,190,94,.05) 0 2px, transparent 3px),
    radial-gradient(circle at 75% 70%, rgba(223,190,94,.05) 0 2px, transparent 3px);
  background-size: 46px 46px;
}

/* filigree gold frame (decorative corners + thin border) */
.filigree-frame { position: relative; }
.filigree-frame > .fcorner {
  position: absolute; width: clamp(48px, 9vw, 104px); height: clamp(48px, 9vw, 104px);
  color: var(--gold); opacity: .85; pointer-events: none; z-index: 4;
}
.fcorner.tl { top: 14px; left: 14px; }
.fcorner.tr { top: 14px; right: 14px; transform: scaleX(-1); }
.fcorner.bl { bottom: 14px; left: 14px; transform: scaleY(-1); }
.fcorner.br { bottom: 14px; right: 14px; transform: scale(-1, -1); }
.gold-rule {
  border: none; height: 2px; width: min(420px, 70%); margin: 22px auto;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* emblem (round badge) */
.emblem { display: block; flex: none; }
.brand__mark.emblem-mark { border: none; width: 50px; height: 50px; }
.brand__mark.emblem-mark::after { display: none; }

/* ---- image slots (real photo with graceful placeholder fallback) ---- */
.ph__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 2; opacity: 1;
}
.ph.has-photo::before { display: none; }
.ph.has-photo .ph__label { display: none; }
.gold-edge { box-shadow: 0 0 0 1px var(--gold-soft), var(--shadow-md); }

/* arched brand image (cover style) */
.arch {
  position: relative; overflow: hidden;
  border-radius: 50% 50% 8px 8px / 32% 32% 8px 8px;
  border: 2px solid var(--gold); box-shadow: var(--shadow-lg);
}
.arch .ph { position: absolute; inset: 0; border: none; }

/* ============================================================
   COVER HERO (home) — evokes the printed menu cover
   ============================================================ */
.cover-hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: var(--cream); padding-top: var(--nav-h); overflow: hidden; }
.cover-hero__inner {
  position: relative; z-index: 3; width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center;
  padding-block: clamp(40px, 6vw, 70px);
}
.cover-hero__brand { text-align: center; }
.cover-hero__tagline {
  font-family: var(--regal); font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  font-size: clamp(.78rem, 1.5vw, 1rem); color: var(--cream); margin-top: 6px;
}
.cover-hero__phone { font-family: var(--regal); font-weight: 700; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gold-light); margin-top: 4px; letter-spacing: .03em; }
.cover-hero__addr { font-size: .92rem; color: rgba(255,255,255,.7); margin-top: 6px; }
.cover-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }
.cover-hero__media { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cover-hero__media .arch { aspect-ratio: 3/4; }
.cover-hero__media .arch:first-child { grid-column: 1 / -1; aspect-ratio: 16/10; border-radius: 180px 180px 10px 10px / 80px 80px 10px 10px; }
.cover-hero__badge {
  position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%); z-index: 5;
}

/* ============================================================
   MENU CATEGORY BANNER (photo header per section)
   ============================================================ */
.menu-cat__banner {
  position: relative; height: 140px; border-radius: 4px; overflow: hidden;
  margin-bottom: 28px; box-shadow: 0 0 0 1px var(--gold-soft), var(--shadow-sm);
}
.menu-cat__banner .ph { position: absolute; inset: 0; border: none; }
.menu-cat__banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(58,11,14,.82), rgba(58,11,14,.35) 70%, transparent); z-index: 3; }
.menu-cat__banner .bt { position: absolute; z-index: 4; left: 26px; bottom: 18px; right: 26px; }
.menu-cat__banner .bt .idx { font-family: var(--regal); font-style: normal; font-weight: 700; color: var(--gold-light); font-size: .85rem; letter-spacing: .12em; }
.menu-cat__banner .bt h2 { color: var(--cream); font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-top: 2px; }

@media (max-width: 920px) {
  .cover-hero__inner { grid-template-columns: 1fr; }
  .cover-hero__media { max-width: 460px; margin: 8px auto 0; }
  .cover-hero { min-height: auto; padding-bottom: 70px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: flex; }
}
@media (max-width: 920px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split.flip > .split__media { order: 0; }
  .split__media { max-width: 520px; margin-inline: auto; }
  .menu-featured { grid-template-columns: 1fr 1fr; }
  .menu-list { grid-template-columns: 1fr; gap: 0 0; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  :root { --nav-h: 72px; }
  .nav__top-strip { gap: 14px; font-size: .72rem; }
  .nav__top-strip .hide-sm { display: none; }
  .menu-featured { grid-template-columns: 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-item.wide { grid-column: span 2; }
  .media-badge { right: 0; bottom: -18px; padding: 14px 16px; }
  .hero__meta { gap: 10px 24px; font-size: .82rem; }
  .stat { padding: 24px 14px; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
}

/* ============================================================
   PRINT  (clean menu / page printing)
   ============================================================ */
@media print {
  .nav, .nav__top-strip, .drawer, .menu-nav, .cz-launcher, .cz-panel,
  .cart, .cart-fab, .order-banner, .reviews, .scroll-cue, .fcorner,
  .phulkari, .footer__bar .socials, [data-form] button[type=submit] {
    display: none !important;
  }
  body { background: #fff; color: #000; font-size: 12pt; }
  .has-strip { padding-top: 0 !important; }
  .page-head { background: #fff !important; color: #000 !important; padding-top: 20px !important; }
  .page-head .ph, .page-head::after { display: none !important; }
  .page-head__title, .page-head__lead, .breadcrumb { color: #000 !important; }
  .section, .section-sm { padding-block: 14px !important; }
  .ph__img, .dish__media, .menu-cat__banner { display: none !important; }
  .menu-list { grid-template-columns: 1fr 1fr !important; }
  .mi-row { break-inside: avoid; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a { color: #000 !important; text-decoration: none !important; }
  .footer { background: #fff !important; color: #000 !important; }
  .footer::before { display: none !important; }
}
