/* =========================================================================
   So India — design system, built from the restaurant's own physical brand.

   THESIS: every colour here was sampled from something the restaurant
   actually owns — the plum road sign on Stane Street, the magenta namaste
   medallion etched on the windows, the gold-and-vermillion gem in the
   logo, the near-black takeaway menu. Nothing is invented.
   OWN-WORLD: deep plum ground (hue 284°, matching the road sign, NOT the
   red-maroon this file used before), brass/gold structure, and a
   two-accent split with real meaning — vermillion for ORDERING (the logo
   gem, the takeaway menu) and magenta for HOSPITALITY (the namaste
   welcome medallion, dine-in and booking).
   Marcellus for display (inscriptional, regal — not another bookish serif
   default), Yellowtail only for the logotype, General Sans for body/UI.
   ========================================================================= */

:root {
  /* -- ground: true plum, sampled from the Stane Street road sign (hue 284°) -- */
  --ink: #1a0b1d;
  --ink-2: #25122a;
  --ink-3: #331b39;
  --ivory: #f5ecdf;
  --ivory-dim: #d8c4a3;
  --ivory-faint: #a89680;
  --gold: #d9b06a;
  --brass: #ab8657; /* brightened from #96754a — the darker value passed contrast with too thin a margin (~4.56:1) */
  --brass-dim: #4a3625;
  /* -- ordering accent: the gem in the logo + the takeaway menu -- */
  --vermillion: #c01f28;
  --vermillion-bright: #e2222b;
  --gem-gold: #f7cf6b;
  /* -- hospitality accent: the namaste medallion etched on the windows -- */
  --magenta: #ae3362;
  --magenta-bright: #c73c72;
  --line: rgba(245, 236, 223, 0.14);
  --line-strong: rgba(245, 236, 223, 0.26);
  --success: #7ea87a;
  --danger: #e0684a;

  --serif: 'Marcellus', ui-serif, Georgia, serif;
  --script: 'Yellowtail', cursive;
  --sans: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --container: 1360px;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 22px;

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

  color-scheme: dark;
}

/* -------------------------------- Reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
/* min-height, not height: a fixed 100% height caps the sticky header's
   containing block at one viewport, so it unsticks once you scroll past it. */
html, body { min-height: 100%; }
/* `clip` not `hidden`: overflow-x:hidden on body turns body into a scroll
   container, which silently breaks position:sticky on the header. `clip`
   prevents sideways scroll without creating that container. */
html, body { overflow-x: clip; }
/* Scroll lock for the mobile nav and the cart drawer. Locking via
   `body { overflow: hidden }` would stomp the overflow-x above and turn body
   back into a scroll container — the very thing that broke the sticky header.
   Locking overflow-y on the root leaves body's overflow-x intact. */
html.is-scroll-locked { overflow-y: hidden; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }

::selection { background: var(--vermillion); color: var(--ivory); }

/* Focus visibility — WCAG AA, always present */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------ Typography ------------------------------ */
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--vermillion-bright), transparent);
}
.chapter-number {
  font-family: var(--serif);
  font-variant-numeric: tabular-nums;
  font-style: italic;
  color: var(--brass);
  font-size: 1.05rem;
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ivory-dim);
  max-width: 62ch;
}
.price, .num-tab {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
.section { padding-block: clamp(64px, 10vw, 140px); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }

/* -------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background-color 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--vermillion);
  color: var(--ivory);
  box-shadow: 0 10px 24px -10px rgba(192, 31, 40, 0.7);
}
.btn--primary:hover { background: var(--vermillion-bright); box-shadow: 0 12px 28px -8px rgba(226, 34, 43, 0.6); transform: translateY(-1px); }

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  background: rgba(245, 236, 223, 0.03);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(217, 176, 106, 0.08); }

.btn--small { padding: 0.6em 1.15em; font-size: 0.85rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

.icon { width: 1em; height: 1em; flex: none; }

/* -------------------------------- Notice bar -------------------------------- */
.notice-bar {
  background: var(--ink-3);
  border-bottom: 1px solid var(--line);
  color: var(--ivory-dim);
  font-size: 0.85rem;
}
.notice-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px clamp(16px, 4vw, 40px);
  text-align: center;
  position: relative;
}
.notice-bar strong { color: var(--gold); font-weight: 600; }
.notice-bar__close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px;
  color: var(--ivory-faint);
  line-height: 0;
}
.notice-bar__close:hover { color: var(--ivory); }
.notice-bar[hidden] { display: none; }

/* -------------------------------- Header -------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}
.site-header::before {
  /* Blur lives on a pseudo-element, not on .site-header itself, because
     backdrop-filter on .site-header would create a CSS containing block
     for its position:fixed mobile-nav descendant, breaking it site-wide. */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(26, 11, 29, 0.74);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
}
.site-header.is-condensed .site-header__inner { padding-block: 10px; }

/* The real So India logo, traced from the restaurant's own artwork.
   currentColor drives the lettering so one asset serves every ground;
   the gem keeps its fixed red/gold, exactly as in the original. */
.brand { display: flex; align-items: flex-end; gap: 10px; }
.brand__logo {
  width: clamp(112px, 12vw, 140px);
  height: auto;
  flex: none;
  color: var(--ivory);
}
.brand__place {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  white-space: nowrap;
  padding-bottom: 6px;
}
@media (max-width: 480px) {
  .brand__place { display: none; }
}

.main-nav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 24px); }
.main-nav a:not(.btn) {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ivory-dim);
  padding-block: 4px;
  white-space: nowrap;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -3px;
  height: 1px;
  background: var(--vermillion-bright);
  transition: right 0.25s var(--ease-out);
}
.main-nav a:not(.btn):hover { color: var(--ivory); }
.main-nav a:not(.btn):hover::after,
.main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--ivory); }

.header-ctas { display: flex; align-items: center; gap: 8px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ivory);
  position: relative;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.main-nav__ctas { display: none; }

/* Measured: brand + 6 nav links + 2 CTAs need ~1166px before they eat the
   container gutter, so the hamburger takes over below 1180px. */
@media (max-width: 1180px) {
  .main-nav { position: fixed; inset: 0; top: var(--header-h, 66px); z-index: 55;
    background: var(--ink); flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 32px clamp(20px, 6vw, 40px); gap: 22px; transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s; }
  .main-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
  .main-nav a:not(.btn) { font-size: 1.4rem; font-family: var(--serif); }
  .main-nav__ctas { display: flex; flex-direction: column; align-items: stretch; width: 100%; margin-top: 12px; gap: 10px; }
  .nav-toggle { display: inline-flex; }
  .site-header > .container > .header-ctas { display: none; }
}

/* -------------------------------- Hero -------------------------------- */
.hero {
  position: relative;
  min-height: calc(100dvh - 0px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(192, 31, 40, 0.24), transparent 60%),
    radial-gradient(80% 60% at 85% 0%, rgba(217, 176, 106, 0.14), transparent 55%),
    var(--ink);
  z-index: -2;
}
.hero__canvas { position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity 1.1s ease; }
.hero__canvas.is-ready { opacity: 1; }
.hero__grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 2; padding-block: clamp(100px, 16vw, 180px) clamp(56px, 8vw, 96px); width: 100%; }
.hero__status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 10px; border-radius: 999px;
  background: rgba(245, 236, 223, 0.06); border: 1px solid var(--line-strong);
  font-size: 0.8rem; color: var(--ivory-dim); margin-bottom: 22px;
}
.hero__status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ivory-faint); flex: none; }
.hero__status.is-open .hero__status-dot { background: var(--success); box-shadow: 0 1px 6px var(--success); }
.hero__status.is-closed .hero__status-dot { background: var(--danger); }
.hero h1 { font-size: clamp(2.1rem, 5vw, 4.4rem); max-width: min(17ch, 92vw); color: var(--ivory); }
.hero h1 .line { overflow: hidden; display: block; }
.hero h1 em { font-style: italic; color: var(--vermillion-bright); }
.hero__sub { margin-top: 26px; max-width: 46ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero__meta div { font-size: 0.85rem; color: var(--ivory-faint); }
.hero__meta strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--ivory); font-weight: 400; }

/* -------------------------------- Chapters / sections -------------------------------- */
.chapter-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: clamp(28px, 4vw, 48px); }
.chapter-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); color: var(--ivory); }
.rule { height: 1px; background: linear-gradient(90deg, var(--line-strong), transparent); margin-block: 20px; }

.prose { max-width: 68ch; }
.prose p + p { margin-top: 1.1em; }
.prose { color: var(--ivory-dim); font-size: clamp(1rem, 1.2vw, 1.08rem); }

/* Signature-dish tasting notes — a typeset menu insert, not a card grid */
.tasting-list { margin-top: 8px; }
.tasting-item {
  display: grid; grid-template-columns: 1fr auto; column-gap: 24px; row-gap: 6px;
  align-items: baseline; padding-block: 28px; border-top: 1px solid var(--line);
}
.tasting-item:last-child { border-bottom: 1px solid var(--line); }
.tasting-item__tag { grid-column: 1 / -1; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); }
.tasting-item__name { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--ivory); font-weight: 400; }
.tasting-item__price { font-family: var(--serif); font-size: 1.2rem; color: var(--gold); white-space: nowrap; }
.tasting-item__desc { grid-column: 1 / -1; color: var(--ivory-dim); font-size: 0.95rem; max-width: 62ch; }
.tasting-item--featured { padding-block: 34px; }
.tasting-item--featured .tasting-item__name { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.tasting-item--featured .tasting-item__desc { font-size: 1.05rem; max-width: 56ch; }

/* offer / banquet callouts */
.callout {
  border-radius: var(--radius-l); border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(192, 31, 40, 0.12), rgba(217, 176, 106, 0.05));
  padding: clamp(28px, 4vw, 48px); display: grid; gap: 22px;
}
.callout--split { grid-template-columns: 1.3fr 1fr; align-items: center; }
.callout h3 { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--ivory); font-weight: 400; }
.callout p { color: var(--ivory-dim); margin-top: 10px; }
@media (max-width: 760px) { .callout--split { grid-template-columns: 1fr; } }

.progress-track { height: 8px; border-radius: 999px; background: rgba(245,236,223,0.08); overflow: hidden; margin-top: 14px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--vermillion-bright)); width: 0%; transition: width 0.4s var(--ease-out); border-radius: 999px; }
.progress-note { font-size: 0.85rem; color: var(--ivory-dim); margin-top: 10px; }
.progress-note.is-qualified { color: var(--success); font-weight: 600; }

/* social proof */
.proof-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.proof-link {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 999px;
  border: 1px solid var(--line-strong); font-size: 0.9rem; font-weight: 500;
}
.proof-link:hover { border-color: var(--gold); color: var(--gold); }

/* -------------------------------- Menu page -------------------------------- */
.menu-hero { padding-block: clamp(120px, 14vw, 160px) 40px; }
.menu-hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.menu-toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }

.category-nav {
  position: sticky; top: var(--header-h, 66px); z-index: 40;
  background: rgba(26,11,29,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); border-top: 1px solid var(--line);
  overflow-x: auto; scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }
.category-nav__inner { display: flex; gap: 6px; padding-block: 12px; width: max-content; }
.category-nav a {
  padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; white-space: nowrap; color: var(--ivory-dim);
  border: 1px solid transparent;
}
.category-nav a:hover { color: var(--ivory); }
.category-nav a.is-active { color: var(--ink); background: var(--ivory); font-weight: 600; }

.menu-category { padding-block: clamp(48px, 7vw, 88px); scroll-margin-top: calc(var(--header-h, 66px) + 60px); border-bottom: 1px solid var(--line); }
.menu-category:last-of-type { border-bottom: none; }
.menu-category__note { color: var(--ivory-faint); font-size: 0.9rem; font-style: italic; margin-top: 8px; }

.dish-list { margin-top: 30px; display: flex; flex-direction: column; }
.dish-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 6px 24px; align-items: start;
  padding-block: 20px; border-top: 1px solid var(--line);
}
.dish-row:last-child { border-bottom: 1px solid var(--line); }
.dish-row__name { font-family: var(--serif); font-size: 1.15rem; color: var(--ivory); font-weight: 400; grid-column: 1; }
.dish-row__desc { grid-column: 1; color: var(--ivory-dim); font-size: 0.9rem; max-width: 56ch; margin-top: 4px; }
.dish-row__price { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); align-self: center; white-space: nowrap; }
.dish-row__price small { color: var(--ivory-faint); font-family: var(--sans); font-size: 0.7rem; display: block; text-align: center; }

.qty-add {
  display: flex; align-items: center; gap: 8px; align-self: center;
}
.qty-add__btn {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--ivory);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.qty-add__btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-add__btn:active { transform: scale(0.9); }
.qty-add__count { min-width: 22px; text-align: center; font-variant-numeric: tabular-nums; }
.qty-add__add {
  padding: 8px 16px; border-radius: 999px; background: var(--vermillion); border: 1px solid var(--vermillion);
  color: var(--ivory); font-size: 0.82rem; font-weight: 600;
}
.qty-add__add:hover { background: var(--vermillion-bright); border-color: var(--vermillion-bright); }
.qty-add__add.is-added { background: var(--success); border-color: var(--success); color: var(--ink); }

@media (max-width: 640px) {
  .dish-row { grid-template-columns: 1fr auto; }
  .qty-add { grid-column: 1 / -1; justify-content: flex-start; margin-top: 6px; }
}

.allergy-box {
  border: 1px solid var(--line-strong); border-radius: var(--radius-m); padding: 24px 26px;
  background: var(--ink-3); font-size: 0.88rem; color: var(--ivory-dim); margin-top: 40px;
}
.allergy-box h4 { font-family: var(--sans); color: var(--gold); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.info-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.info-pill { font-size: 0.8rem; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--ivory-dim); }

/* Cart panel */
.cart-fab {
  position: fixed; right: 22px; bottom: 96px; z-index: 70;
  display: flex; align-items: center; gap: 10px;
  background: var(--vermillion); color: var(--ivory);
  padding: 14px 20px; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 10px 26px -8px rgba(192,31,40,0.65);
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.cart-fab:hover { transform: translateY(-2px); background: var(--vermillion-bright); }
.cart-fab[hidden] { display: none; }
.cart-fab__count { background: rgba(245,236,223,0.22); border-radius: 999px; padding: 2px 9px; font-variant-numeric: tabular-nums; }
@media (min-width: 761px) { .cart-fab { bottom: 28px; } }

.cart-panel {
  position: fixed; inset: 0 0 0 auto; width: min(440px, 100vw); z-index: 90;
  background: var(--ink-2); border-left: 1px solid var(--line-strong);
  transform: translateX(100%); transition: transform 0.4s var(--ease-out);
  display: flex; flex-direction: column;
}
.cart-panel.is-open { transform: translateX(0); }
.cart-panel__head { display: flex; align-items: center; justify-content: space-between; padding: 22px clamp(20px,5vw,28px); border-bottom: 1px solid var(--line); }
.cart-panel__head h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.cart-panel__close { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; }
.cart-panel__body { flex: 1; overflow-y: auto; padding: 20px clamp(20px,5vw,28px); }
.cart-panel__foot { border-top: 1px solid var(--line); padding: 20px clamp(20px,5vw,28px) calc(20px + env(safe-area-inset-bottom)); background: var(--ink-2); }
.cart-overlay {
  position: fixed; inset: 0; z-index: 85; background: rgba(14,6,16,0.62); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding-block: 16px; border-bottom: 1px solid var(--line); }
.cart-item__name { font-family: var(--serif); font-size: 1rem; color: var(--ivory); }
.cart-item__price { font-size: 0.92rem; color: var(--gold); }
.cart-item__row { display: flex; align-items: center; gap: 10px; grid-column: 1 / -1; margin-top: 6px; }
.cart-item__remove { font-size: 0.78rem; color: var(--ivory-faint); text-decoration: underline; margin-left: auto; }
.cart-item__remove:hover { color: var(--danger); }
.cart-empty { text-align: center; padding-block: 40px; color: var(--ivory-faint); }

.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 1.1rem; margin-bottom: 6px; }
.cart-total-row strong { font-family: var(--serif); font-size: 1.5rem; color: var(--ivory); font-weight: 400; }
.cart-count-note { font-size: 0.82rem; color: var(--ivory-faint); margin-bottom: 14px; }

/* the over-£25 reward, shown as a real saving rather than a promise */
.cart-total-row--saving { font-size: 0.92rem; color: var(--success); }
.cart-total-row--saving[hidden] { display: none; }
.cart-item--free .cart-item__name { color: var(--ivory); }
.cart-item--free .cart-item__price s { color: var(--ivory-faint); margin-right: 6px; }
.cart-free-tag {
  display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 999px;
  background: var(--success); color: var(--ink);
  font-family: var(--sans); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; vertical-align: 2px;
}
.free-side {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-m);
  border: 1px solid var(--magenta); background: rgba(174, 51, 98, 0.14);
  display: flex; flex-direction: column; gap: 8px;
}
.free-side[hidden] { display: none; }
.free-side__label { font-size: 0.82rem; font-weight: 600; color: var(--ivory); letter-spacing: 0.02em; }
.free-side select {
  background: rgba(245,236,223,0.06); border: 1px solid var(--line-strong);
  border-radius: var(--radius-s); padding: 12px 14px; color: var(--ivory);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23d8c4a3' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.free-side select:focus { border-color: var(--gold); outline: none; }
.free-side__hint { font-size: 0.78rem; color: var(--ivory-dim); }

/* -------------------------------- Forms -------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }
.form-grid--single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; letter-spacing: 0.03em; color: var(--ivory-dim); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  background: rgba(245,236,223,0.04); border: 1px solid var(--line-strong); border-radius: var(--radius-s);
  padding: 13px 15px; color: var(--ivory); transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ivory-faint); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(245,236,223,0.07); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23d8c4a3' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field-hint { font-size: 0.78rem; color: var(--ivory-faint); }
.field-error { font-size: 0.78rem; color: var(--danger); display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field.has-error .field-error { display: block; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
.slot {
  padding: 10px 6px; text-align: center; border-radius: var(--radius-s); border: 1px solid var(--line-strong);
  font-size: 0.85rem; font-variant-numeric: tabular-nums;
}
.slot:hover { border-color: var(--gold); }
.slot.is-selected { background: var(--vermillion); border-color: var(--vermillion); color: var(--ivory); font-weight: 700; }

.form-card {
  border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
}
.form-status { margin-top: 18px; font-size: 0.9rem; }
.form-status.is-error { color: var(--danger); }

.success-panel { text-align: center; padding: clamp(40px,6vw,64px) clamp(20px,4vw,40px); }
.success-panel__icon { width: 64px; height: 64px; margin: 0 auto 20px; color: var(--success); }
.success-panel h3 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 10px; font-weight: 400; }
.success-panel p { color: var(--ivory-dim); }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* -------------------------------- Gallery -------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid figure {
  position: relative; border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 4/3; background: var(--ink-3);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure figcaption {
  position: absolute; inset: auto 0 0 0; padding: 14px 16px; font-size: 0.8rem; color: var(--ivory-dim);
  background: linear-gradient(0deg, rgba(14,6,16,0.88), transparent);
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery-grid { grid-template-columns: 1fr; } }

/* -------------------------------- Footer -------------------------------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 64px 28px; background: var(--ink-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 16px; }
.footer-col p, .footer-col a { display: block; color: var(--ivory-dim); font-size: 0.92rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold); }
.footer-brand p { max-width: 34ch; color: var(--ivory-faint); font-size: 0.88rem; margin-top: 14px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--ivory-faint); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* -------------------------------- Mobile bottom bar -------------------------------- */
.bottom-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: rgba(26,11,29,0.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-strong);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-bar a, .bottom-bar button {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 4px 10px; font-size: 0.72rem; font-weight: 600; color: var(--ivory-dim); letter-spacing: 0.02em;
}
.bottom-bar .icon { width: 20px; height: 20px; }
.bottom-bar a:first-child { color: var(--ivory); }
.bottom-bar__order { color: var(--gold) !important; }
@media (max-width: 760px) {
  .bottom-bar { display: grid; }
  body { padding-bottom: 64px; }
  .cart-fab { right: 16px; bottom: 78px; }
}

/* -------------------------------- Utilities -------------------------------- */
[data-reveal] { opacity: 1; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 200; background: var(--vermillion); color: var(--ivory);
  padding: 12px 18px; border-radius: var(--radius-s); font-weight: 600; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.map-frame { border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); filter: grayscale(0.4) invert(0.92) contrast(0.9); aspect-ratio: 4/3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* Dish photographs from the restaurant's own kitchen. Small originals, so
   they run at modest display sizes where they hold up rather than being
   blown up into a hero. */
.dish-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
}
.dish-strip__item {
  border-radius: var(--radius-m); overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-3);
  aspect-ratio: 3/2;
}
.dish-strip__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.dish-strip__item:hover img { transform: scale(1.05); }
@media (max-width: 700px) {
  .dish-strip { grid-template-columns: 1fr 1fr; }
  .dish-strip__item:first-child { grid-column: 1 / -1; }
}

/* -------------------------------- Real photography --------------------------------
   Shot on site July 2026. These are the restaurant's own rooms, walls and
   signage — the design leans on them rather than on stock curry-house imagery. */
.photo-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-3);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame--portrait { aspect-ratio: 4/5; }
.photo-frame--landscape { aspect-ratio: 3/2; }
.photo-frame figcaption {
  position: absolute; inset: auto 0 0 0; padding: 20px 22px 18px;
  font-size: 0.85rem; color: var(--ivory-dim);
  background: linear-gradient(0deg, rgba(14,6,16,0.92), rgba(14,6,16,0.55) 55%, transparent);
}

/* Full-bleed photographic band, plum-graded so it sits inside the world */
.photo-band {
  position: relative;
  min-height: clamp(340px, 52vh, 560px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.photo-band__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.photo-band::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(0deg, var(--ink) 2%, rgba(26,11,29,0.72) 45%, rgba(26,11,29,0.42) 100%),
    linear-gradient(90deg, rgba(26,11,29,0.80), transparent 65%);
}
.photo-band__content { padding-block: clamp(36px, 6vw, 64px); width: 100%; }
.photo-band h2 { color: var(--ivory); }

/* Gallery: real photos deserve varied sizes rather than a uniform 3-up grid */
.gallery-grid { grid-auto-flow: dense; }
.gallery-grid figure.is-wide { grid-column: span 2; aspect-ratio: 3/2; }
.gallery-grid figure.is-tall { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 760px) {
  .gallery-grid figure.is-wide { grid-column: span 2; }
  .gallery-grid figure.is-tall { grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 460px) {
  .gallery-grid figure.is-wide { grid-column: span 1; }
}

/* The namaste medallion etched on the restaurant's windows, as an ornament */
.namaste-mark { width: 100%; height: auto; display: block; color: var(--magenta); opacity: 0.9; }
.namaste-rule {
  display: flex; align-items: center; gap: 20px;
  margin-block: clamp(36px, 6vw, 64px);
}
.namaste-rule::before, .namaste-rule::after {
  content: ''; flex: 1; height: 1px; background: var(--line-strong);
}
.namaste-rule svg { width: 42px; height: 42px; flex: none; color: var(--magenta); }

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

/* -------------------------------- Small screens floor -------------------------------- */
@media (max-width: 380px) {
  .container { padding-inline: 16px; }
}
