/* =========================================================================
   Aafrien Indian Restaurant — "Saffron Cream & Maroon" design system
   Brand palette: warm cream, gilded gold, deep maroon — matches the logo.
   Hand-authored. Accessible (WCAG AA contrast), reduced-motion aware.
   Redesign by DinePalace Marketing.
   ========================================================================= */

:root {
  /* Palette — brand: cream #faf2df · maroon #a5271d · gold #c9a24b · espresso #2b1a12 */
  --emerald-900: #2b1a12;   /* espresso — dark section bg + display text on cream (~13:1) */
  --emerald-800: #3a241a;
  --emerald-700: #a5271d;   /* maroon — order links / accents */
  --emerald-600: #b8863a;
  --brass:       #a97e3f;   /* gold accent on cream — large text/icons */
  --brass-deep:  #8a6531;   /* gold accent on cream for small text (~4.7:1) */
  --gold:        #c9a24b;
  --gold-bright: #e6bd5f;   /* gold on espresso/maroon (~7:1) */
  --maroon:      #a5271d;   /* brand red — primary buttons, CTAs */
  --maroon-deep: #7d1c14;
  --ivory:       #faf2df;   /* page bg — warm cream */
  --cream:       #fdf8ee;   /* raised bg */
  --paper:       #fffdf8;
  --ink:         #241a12;   /* body text on cream (~14:1) */
  --muted:       #5f5344;   /* secondary text on cream (~5.6:1) */
  --line:        #e8ddc6;
  --spice:       #a5271d;   /* maroon */
  --cream-2:     #f2e7cf;

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --text-hero: clamp(2.7rem, 1.4rem + 5.2vw, 5.4rem);
  --text-section: clamp(2rem, 1.3rem + 2.6vw, 3.2rem);
  --gutter: clamp(1.1rem, 0.6rem + 2vw, 2.4rem);
  --maxw: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow: 0 18px 40px -24px rgba(60, 32, 20, 0.42);
  --shadow-lg: 0 30px 70px -30px rgba(60, 32, 20, 0.52);
  --dur: 240ms;
  --dur-slow: 520ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald-700); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--emerald-900); }
h1 { font-weight: 800; }
:focus-visible { outline: 3px solid var(--brass-deep); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.2rem, 2rem + 5vw, 6.5rem); }
.section[id] { scroll-margin-top: 92px; }
.center { text-align: center; }
.eyebrow { display: inline-block; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.74rem; color: var(--brass-deep); }
.eyebrow.on-dark { color: var(--gold-bright); }
.section-head { max-width: 62ch; }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: var(--text-section); margin: 0.5rem 0 0.6rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head.on-dark h2 { color: var(--cream); }
.section-head.on-dark p { color: rgba(247, 242, 230, 0.82); }

/* skip link */
.skip-link { position: absolute; left: 8px; top: -60px; z-index: 200; background: var(--emerald-900); color: var(--cream); padding: 0.6rem 1rem; border-radius: 8px; transition: top var(--dur) var(--ease); }
.skip-link:focus { top: 8px; }

/* Buttons */
.btn { --bg: var(--emerald-700); --fg: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em; padding: 0.85rem 1.5rem; border-radius: var(--radius-pill); border: 2px solid transparent; background: var(--bg); color: var(--fg); cursor: pointer; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease); white-space: normal; max-width: 100%; text-align: center; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn-gold { --bg: linear-gradient(135deg, var(--gold), var(--gold-bright)); --fg: var(--emerald-900); box-shadow: 0 12px 30px -14px rgba(201, 162, 75, 0.7); }
.btn-outline { --bg: transparent; --fg: var(--emerald-900); border-color: var(--brass); }
.btn-outline:hover { background: var(--emerald-900); color: var(--cream); border-color: var(--emerald-900); }
.btn-outline.on-dark { --fg: var(--cream); border-color: var(--gold-bright); }
.btn-outline.on-dark:hover { background: var(--gold-bright); color: var(--emerald-900); }
.btn-ghost { --bg: transparent; --fg: var(--emerald-700); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.02rem; }

/* ---------------------------------- Topbar --------------------------------- */
.topbar { background: var(--maroon); color: var(--cream); font-size: 0.8rem; letter-spacing: 0.01em; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.5rem; }
.topbar strong { color: var(--gold-bright); font-weight: 700; }
.tb-right { display: flex; gap: 1.2rem; align-items: center; }
.tb-badge { background: var(--gold-bright); color: var(--emerald-900); font-weight: 800; padding: 0.1rem 0.6rem; border-radius: var(--radius-pill); }
@media (max-width: 720px) { .tb-right { display: none; } .topbar .container { justify-content: center; text-align: center; } }

/* ---------------------------------- Header --------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247, 242, 230, 0.88); backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid transparent; transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.site-header.scrolled { box-shadow: 0 8px 24px -18px rgba(43, 26, 18, 0.5); border-color: var(--line); background: rgba(247, 242, 230, 0.96); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding-block: 0.45rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand img { height: 68px; width: auto; }
@media (max-width: 560px) { .brand img { height: 50px; } }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--emerald-900); line-height: 1; }
.brand-word span { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass-deep); margin-top: 2px; }
.nav-links { display: flex; list-style: none; gap: 0.2rem; padding: 0; }
.nav-links a { display: block; padding: 0.5rem 0.8rem; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.94rem; color: var(--ink); transition: color var(--dur) var(--ease), background var(--dur) var(--ease); }
.nav-links a:hover { color: var(--emerald-700); background: rgba(165, 39, 29, 0.08); }
.nav-links a[aria-current="page"] { color: var(--maroon); }
.nav-cta { display: flex; align-items: center; gap: 0.7rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--cream); border-radius: 12px; cursor: pointer; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 22px; height: 2px; background: var(--emerald-900); transform: translate(-50%, -50%); transition: transform var(--dur) var(--ease); }
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after { transform: translate(-50%, 5px); }

.mobile-menu { display: none; }
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: block; position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); background: var(--emerald-900); color: var(--cream); padding: 5rem 1.6rem 2rem; transform: translateX(100%); transition: transform var(--dur-slow) var(--ease); z-index: 130; overflow-y: auto; }
  .mobile-menu.open { transform: none; }
  .mobile-menu a { display: block; color: var(--cream); font-size: 1.1rem; font-weight: 600; padding: 0.7rem 0; border-bottom: 1px solid rgba(246, 232, 200, 0.14); }
  .mobile-menu a:hover { color: var(--gold-bright); }
  .mobile-menu .btn { margin-top: 1.2rem; width: 100%; }
  .m-backdrop { position: fixed; inset: 0; background: rgba(43, 26, 18, 0.5); opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur); z-index: 120; }
  .m-backdrop.open { opacity: 1; visibility: visible; }
}

/* ---------------------------------- Hero ----------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--emerald-900); color: var(--cream); }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(43, 26, 18, 0.94) 30%, rgba(43, 26, 18, 0.62) 70%, rgba(43, 26, 18, 0.32)); }
.hero .container { position: relative; z-index: 2; padding-block: clamp(1.75rem, 1rem + 3vw, 3.5rem); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: center; }
.hero-copy { max-width: 34rem; }
.hero-copy .eyebrow { color: var(--gold-bright); }
.hero h1 { font-size: var(--text-hero); color: var(--cream); margin: 0.6rem 0; }
.hero h1 em { font-style: normal; color: var(--gold-bright); }
.hero .lede { color: rgba(247, 242, 230, 0.88); font-size: 1.12rem; max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 1.8rem; font-size: 0.86rem; color: rgba(247, 242, 230, 0.85); }
.hero-trust div { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-trust svg { width: 1.05em; height: 1.05em; color: var(--gold-bright); }
.hero-visual { position: relative; }
.hero-plate { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; border: 1px solid rgba(227, 192, 114, 0.3); }
.hero-plate img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; left: -18px; bottom: 26px; background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--emerald-900); width: 108px; height: 108px; border-radius: 50%; display: grid; place-content: center; text-align: center; font-family: var(--font-display); box-shadow: var(--shadow); line-height: 1.1; }
.hero-badge b { font-size: 1.9rem; display: block; }
.hero-badge span { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }
@media (max-width: 860px) { .hero .container { grid-template-columns: 1fr; } .hero-visual { max-width: 380px; } }

/* Rating strip */
.rating-badge { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.5rem 1rem; border: 1px solid rgba(227, 192, 114, 0.4); border-radius: var(--radius-pill); background: rgba(247, 242, 230, 0.06); color: var(--cream); text-decoration: none; }
.rating-badge .num { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-bright); font-weight: 700; line-height: 1; }
.stars-bar { position: relative; white-space: nowrap; letter-spacing: 0.1em; color: rgba(247, 242, 230, 0.3); }
.stars-bar .fill { position: absolute; inset: 0; overflow: hidden; color: var(--gold-bright); }
.rating-badge .count { font-size: 0.82rem; color: rgba(247, 242, 230, 0.78); }

/* ------------------------------- Dish cards -------------------------------- */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
@media (max-width: 900px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dish-grid { grid-template-columns: 1fr; } }
.dish { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.dish-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.dish:hover .dish-img img { transform: scale(1.05); }
.dish-tag { position: absolute; top: 0.7rem; left: 0.7rem; background: var(--emerald-900); color: var(--gold-bright); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.65rem; border-radius: var(--radius-pill); }
.dish-body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.dish-body h3 { font-size: 1.22rem; display: flex; justify-content: space-between; gap: 0.6rem; align-items: baseline; }
.dish-body .price { font-family: var(--font-body); font-weight: 800; color: var(--brass-deep); font-size: 1rem; white-space: nowrap; }
.dish-body p { color: var(--muted); font-size: 0.9rem; flex: 1; }
.dish-order { margin-top: 0.5rem; font-weight: 700; font-size: 0.85rem; color: var(--emerald-700); display: inline-flex; align-items: center; gap: 0.35rem; }
.dish-order svg { width: 1em; height: 1em; }

/* dark section */
.section--dark { background: var(--emerald-900); color: var(--cream); }
.section--cream { background: var(--cream); }

/* ------------------------------- Menu page --------------------------------- */
.menu-nav { position: sticky; top: var(--header-h, 102px); z-index: 40; background: var(--emerald-900); border-block: 1px solid rgba(227, 192, 114, 0.25); }
.menu-nav__scroll { display: flex; gap: 0.4rem; overflow-x: auto; padding: 0.6rem var(--gutter); scrollbar-width: thin; }
.menu-nav a { flex-shrink: 0; padding: 0.4rem 0.85rem; border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 600; color: rgba(247, 242, 230, 0.82); white-space: nowrap; }
.menu-nav a:hover { background: rgba(247, 242, 230, 0.1); color: var(--cream); }
.menu-nav a.is-active { background: var(--gold-bright); color: var(--emerald-900); }

.mcat { padding-block: clamp(2.2rem, 1.4rem + 3vw, 3.6rem); scroll-margin-top: calc(var(--header-h, 102px) + var(--menu-nav-h, 66px) + 8px); border-bottom: 1px solid var(--line); }
.mcat:last-child { border-bottom: 0; }
.mcat-media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.4rem; box-shadow: var(--shadow); border: 1px solid var(--line); }
.mcat-media img { width: 100%; height: clamp(150px, 26vw, 300px); object-fit: cover; display: block; transition: transform var(--dur-slow) var(--ease); }
.mcat-media:hover img { transform: scale(1.03); }
.mcat-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 0.8rem 1.4rem; margin-bottom: 1.4rem; }
.mcat-head h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); }
.mcat-head .eyebrow { display: block; margin-bottom: 0.2rem; }
.mcat-order { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.9rem; color: var(--emerald-700); border: 2px solid var(--brass); border-radius: var(--radius-pill); padding: 0.5rem 1.1rem; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.mcat-order:hover { background: var(--emerald-900); color: var(--cream); border-color: var(--emerald-900); }
.mcat-order svg { width: 1em; height: 1em; }
.mitems { display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem 2.6rem; }
@media (max-width: 720px) { .mitems { grid-template-columns: 1fr; } }
.mrow { display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1rem; align-items: baseline; padding: 0.7rem 0; border-bottom: 1px dotted var(--line); }
.mrow__name { font-weight: 700; font-size: 1.02rem; color: var(--emerald-900); display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap; }
.mrow__price { font-weight: 800; color: var(--brass-deep); white-space: nowrap; }
.mrow__desc { grid-column: 1 / -1; color: var(--muted); font-size: 0.86rem; margin-top: -0.15rem; }
.tag { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.12rem 0.42rem; border-radius: 5px; line-height: 1.4; }
.tag--veg { color: #1c6b50; background: rgba(28, 107, 80, 0.14); }
.tag--spicy { color: var(--spice); background: rgba(192, 73, 43, 0.12); }
.tag--gf { color: var(--brass-deep); background: rgba(169, 126, 63, 0.14); }
.menu-note { color: var(--muted); font-size: 0.85rem; margin-top: 1.4rem; }

/* Menu feature spread */
.mfeature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.2rem, 0.6rem + 2.4vw, 3rem); align-items: center; }
.mfeature--flip { grid-template-columns: 1.1fr 0.9fr; }
.mfeature--flip .mfeature-media { order: 2; }
.mfeature-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5 / 4; }
.mfeature-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) { .mfeature, .mfeature--flip { grid-template-columns: 1fr; } .mfeature--flip .mfeature-media { order: 0; } }

/* ------------------------------- Reviews ----------------------------------- */
.reviews { background: var(--emerald-900); color: var(--cream); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr; } }
.review { background: rgba(247, 242, 230, 0.05); border: 1px solid rgba(227, 192, 114, 0.16); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.review .stars { color: var(--gold-bright); letter-spacing: 0.14em; }
.review p { color: rgba(247, 242, 230, 0.9); font-style: italic; flex: 1; }
.review .who { font-weight: 700; color: var(--gold-bright); font-size: 0.88rem; }
.review-foot { text-align: center; margin-top: 1.8rem; color: rgba(247, 242, 230, 0.65); font-size: 0.86rem; }
.review-foot a { color: var(--gold-bright); font-weight: 600; }

/* ------------------------------- Gallery ----------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gal-cell { border: 0; padding: 0; background: none; cursor: zoom-in; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; display: block; }
.gal-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.gal-cell:hover img, .gal-cell:focus-visible img { transform: scale(1.06); }
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.6rem; margin-top: 2.2rem; }
@media (max-width: 720px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }
.gallery-strip a { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; display: block; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; }

/* Venue / dine-in ambiance duo */
.venue-duo { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1rem; margin-top: 2.2rem; }
.venue-shot { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(227, 192, 114, 0.28); aspect-ratio: 4 / 3; }
.venue-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.venue-shot:hover img { transform: scale(1.04); }
.venue-shot figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.1rem 0.85rem; font-family: var(--font-body); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.01em; color: var(--cream); background: linear-gradient(to top, rgba(43, 26, 18, 0.82), transparent); }
@media (max-width: 720px) { .venue-duo { grid-template-columns: 1fr; } .venue-shot { aspect-ratio: 16 / 10; } }

/* Venue mosaic (interior + exterior) */
.venue-mosaic { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 0.9rem; margin-top: 2.4rem; }
.venue-mosaic figure { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(227, 192, 114, 0.28); min-height: 170px; }
.venue-mosaic .vm-lead { grid-row: 1 / span 2; }
.venue-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-slow) var(--ease); }
.venue-mosaic figure:hover img { transform: scale(1.04); }
.venue-mosaic figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3rem 0.9rem 0.7rem; font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; color: var(--cream); background: linear-gradient(to top, rgba(43, 26, 18, 0.82), transparent); }
@media (max-width: 820px) { .venue-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: none; } .venue-mosaic .vm-lead { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 9; } }
@media (max-width: 480px) { .venue-mosaic { grid-template-columns: 1fr; } .venue-mosaic figure { aspect-ratio: 16 / 10; min-height: 0; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(6, 30, 22, 0.94); padding: clamp(1rem, 4vw, 3rem); }
.lightbox.open { display: flex; }
.lightbox__stage { margin: 0; max-width: min(1100px, 92vw); max-height: 88vh; display: flex; flex-direction: column; gap: 0.6rem; }
.lightbox__stage img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lightbox__stage figcaption { color: rgba(247, 242, 230, 0.86); text-align: center; font-size: 0.9rem; }
.lightbox button { position: absolute; border: 0; background: rgba(247, 242, 230, 0.14); color: #fff; cursor: pointer; border-radius: 50%; }
.lightbox__close { top: 1rem; right: 1.2rem; width: 44px; height: 44px; font-size: 1.8rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lightbox__prev { left: clamp(0.5rem, 2vw, 2rem); }
.lightbox__next { right: clamp(0.5rem, 2vw, 2rem); }
.lightbox button:hover { background: var(--gold-bright); color: var(--emerald-900); }

/* --------------------------- Info / find / cards --------------------------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 0.8rem + 2vw, 3rem); align-items: start; }
@media (max-width: 820px) { .info-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.info-list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.info-list svg { width: 1.4em; height: 1.4em; color: var(--brass-deep); flex-shrink: 0; margin-top: 2px; }
.info-list b { display: block; color: var(--emerald-900); }
.info-list a { color: var(--emerald-700); font-weight: 600; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
@media (min-width: 821px) { .info-grid { align-items: stretch; } .info-grid > .map-embed { aspect-ratio: auto; min-height: 340px; } }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 0.45rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.hours-table th { font-weight: 600; color: var(--muted); }
.hours-table td { font-weight: 700; color: var(--emerald-900); text-align: right; }
.hours-table tr.today th, .hours-table tr.today td { color: var(--brass-deep); }

/* page hero (interior pages) */
.page-hero { position: relative; background: var(--emerald-900); color: var(--cream); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,26,18,0.82), rgba(43,26,18,0.94)); }
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(1.75rem, 1.1rem + 2vw, 3rem); }
.breadcrumb { font-size: 0.82rem; color: rgba(247, 242, 230, 0.7); margin-bottom: 0.6rem; }
.breadcrumb a { color: var(--gold-bright); }
.page-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 1.5rem + 3vw, 3.6rem); }
.page-hero h1 em { font-style: normal; color: var(--gold-bright); }
.page-hero p { color: rgba(247, 242, 230, 0.85); max-width: 60ch; margin-top: 0.6rem; }

/* immersive full-bleed atmosphere band */
.immersive { position: relative; color: var(--cream); background: var(--emerald-900); overflow: hidden; }
.immersive__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.immersive__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43, 26, 18, 0.92) 0%, rgba(43, 26, 18, 0.72) 48%, rgba(43, 26, 18, 0.42) 100%); }
.immersive .container { position: relative; z-index: 2; padding-block: clamp(3.5rem, 2.4rem + 6vw, 7rem); }
.immersive__inner { max-width: 40rem; }
.immersive .eyebrow { color: var(--gold-bright); }
.immersive h2 { color: var(--cream); font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); margin: 0.5rem 0 0; }
.immersive h2 em { font-style: normal; color: var(--gold-bright); }
.immersive p { color: rgba(247, 242, 230, 0.9); max-width: 46ch; margin-top: 0.7rem; }
@media (min-width: 900px) and (pointer: fine) { .immersive__bg { background-attachment: fixed; } }
@media (prefers-reduced-motion: reduce) { .immersive__bg { background-attachment: scroll; } }

/* app / loyalty band */
.appband { background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900)); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(1.8rem, 1.2rem + 3vw, 3.2rem); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; box-shadow: var(--shadow-lg); }
@media (max-width: 720px) { .appband { grid-template-columns: 1fr; text-align: center; } }
.appband h2 { color: var(--cream); font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); }
.appband .badges { display: flex; gap: 0.7rem; margin-top: 1.1rem; flex-wrap: wrap; }
.appband .badges.center { justify-content: center; }
.store-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: #000; color: #fff; border-radius: 12px; padding: 0.5rem 0.9rem; font-size: 0.8rem; }
.store-badge svg { width: 1.4em; height: 1.4em; }
.appband .loyalty { text-align: center; background: rgba(247, 242, 230, 0.06); border: 1px solid rgba(227, 192, 114, 0.25); border-radius: var(--radius); padding: 1.3rem; }
.appband .loyalty b { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-bright); display: block; line-height: 1; }

/* forms */
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--emerald-900); }
.field input, .field select, .field textarea { font: inherit; padding: 0.7rem 0.9rem; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass); outline: 2px solid rgba(169, 126, 63, 0.3); }

/* --------------------------------- CTA ------------------------------------- */
.cta-card { background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(2.4rem, 4vw, 4rem); text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-card h2 { color: var(--cream); font-size: var(--text-section); }
.cta-card p { color: rgba(247, 242, 230, 0.85); max-width: 50ch; margin: 0.6rem auto 1.4rem; }
.cta-card .hero-cta { justify-content: center; }

/* -------------------------------- Footer ----------------------------------- */
.site-footer { background: var(--emerald-900); color: rgba(247, 242, 230, 0.82); padding-top: clamp(3rem, 4vw, 4.5rem); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2rem; padding-bottom: 2.6rem; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold-bright); font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer a { color: rgba(247, 242, 230, 0.82); }
.site-footer a:hover { color: var(--gold-bright); }
.foot-brand .brand-word { color: var(--cream); }
.foot-brand p { font-size: 0.9rem; margin-top: 0.8rem; max-width: 30ch; }
.socials { display: flex; gap: 0.6rem; margin-top: 1rem; }
.socials a { width: 40px; height: 40px; border: 1px solid rgba(227, 192, 114, 0.3); border-radius: 50%; display: grid; place-content: center; }
.socials svg { width: 1.2em; height: 1.2em; }
.foot-bottom { border-top: 1px solid rgba(247, 242, 230, 0.12); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; font-size: 0.82rem; }
.foot-legal { display: flex; gap: 1rem; flex-wrap: wrap; }

/* order bar (mobile sticky) */
.order-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--emerald-900); padding: 0.7rem var(--gutter); display: none; box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25); transform: translateY(110%); transition: transform var(--dur) var(--ease); }
.order-bar.show { transform: none; }
.order-bar .btn { width: 100%; }
@media (max-width: 720px) { .order-bar { display: block; } body:has(.order-bar.show) { padding-bottom: 74px; } }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* article/legal */
.article-body { max-width: 46rem; margin-inline: auto; }
.article-body h2 { font-size: 1.5rem; margin: 1.8rem 0 0.6rem; }
.article-body p, .article-body li { color: var(--ink); margin-bottom: 0.8rem; }
.article-body ul { padding-left: 1.2rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 0.8rem; background: var(--paper); }
.faq summary { font-weight: 700; color: var(--emerald-900); cursor: pointer; font-size: 1.05rem; }
.faq summary::marker { color: var(--brass); }
.faq p { margin-top: 0.6rem; color: var(--muted); }

/* ---- maroon button ---- */
.btn-maroon { --bg: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); --fg: var(--cream); box-shadow: 0 12px 30px -14px rgba(165, 39, 29, 0.6); }
.btn-maroon:hover { filter: brightness(1.08); }

/* ---- Services (Dine In / Take Out / Delivery / Catering) ---- */
.section--services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.4rem; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.5rem 1.6rem; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: var(--shadow); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-ico { width: 62px; height: 62px; display: grid; place-content: center; margin-bottom: 1rem; color: var(--maroon); background: linear-gradient(135deg, var(--gold), var(--gold-bright)); border-radius: 14px; transform: rotate(45deg); box-shadow: 0 10px 24px -12px rgba(201,162,75,.8); }
.svc-ico svg { width: 26px; height: 26px; transform: rotate(-45deg); }
.svc-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.svc-card p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.svc-card a { margin-top: 1.1rem; font-weight: 700; color: var(--maroon); display: inline-flex; align-items: center; gap: 0.35rem; }
.svc-card a:hover { color: var(--maroon-deep); }
.svc-card a svg { width: 16px; height: 16px; }

/* ---- Stat band (Happy Customers / Indian Dishes) ---- */
.stat-band { background: radial-gradient(120% 140% at 0% 0%, var(--cream-2), var(--ivory)); border-block: 1px solid var(--line); }
.stat-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
@media (max-width: 860px) { .stat-wrap { grid-template-columns: 1fr; } }
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 480px) { .stat-cards { grid-template-columns: 1fr; } }
.stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.4rem; text-align: center; box-shadow: var(--shadow); }
.stat b { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 1.6rem + 2.8vw, 3.4rem); line-height: 1; color: var(--maroon); display: block; }
.stat h4 { font-size: 1.15rem; margin: 0.5rem 0 0.4rem; }
.stat p { color: var(--muted); font-size: 0.88rem; }

/* ---- Follow us (Facebook + Instagram) ---- */
.follow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.2rem; }
@media (max-width: 760px) { .follow-grid { grid-template-columns: 1fr; } }
.follow-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow); }
.follow-card h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1.25rem; margin-bottom: 1rem; }
.follow-card h3 svg { width: 24px; height: 24px; color: var(--maroon); }
.fb-embed { width: 100%; border: 0; border-radius: var(--radius); overflow: hidden; min-height: 340px; background: var(--cream-2); }
.ig-card { background: linear-gradient(135deg, #7a1f16, #a5271d 55%, #c9a24b); color: var(--cream); display: flex; flex-direction: column; justify-content: space-between; }
.ig-card h3 { color: var(--cream); }
.ig-card h3 svg { color: var(--gold-bright); }
.ig-card p { color: rgba(253,248,238,.9); margin-bottom: 1.2rem; }
.ig-handle { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.2rem; display: block; }
