/* ============================================================
   ANGAAR — charcoal & ember
   Palette:
     Charcoal Pit  #100D0B  (base)
     Slate Char    #1A1512  (panels)
     Ember         #FF5C1F  (primary accent — heat)
     Glow Amber    #FFA14A  (gradient partner, small doses)
     Smoke         #B9AEA3  (body text)
     Ash           #F2EAE0  (headlines)
     Verdigris     #4FC49A  (RESERVED: open-now + reserve moments only)
   ============================================================ */

:root {
  --bg: #100D0B;
  --bg-2: #17110D;
  --panel: #1A1512;
  --panel-hi: #241C16;
  --line: rgba(242, 234, 224, 0.09);
  --line-strong: rgba(242, 234, 224, 0.16);

  --ash: #F2EAE0;
  --smoke: #B9AEA3;
  --smoke-dim: #857A70;

  --ember: #FF5C1F;
  --amber: color-mix(in oklab, var(--ember) 55%, #FFD9A0);
  --ember-dim: color-mix(in oklab, var(--ember) 45%, var(--bg));
  --mint: #4FC49A;

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Segoe UI", sans-serif;
  --font-urdu: "Noto Nastaliq Urdu", serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(20px, 5vw, 96px);
}

/* Evening: 18:00–06:00 — deeper charcoal, warmer ember (set by JS) */
.theme-evening {
  --bg: #0B0807;
  --bg-2: #120C09;
  --panel: #161009;
  --panel-hi: #1F1710;
  --ember: #FF6A2A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* NOTE: no CSS scroll-behavior here — it fights ScrollTrigger's pin math; Lenis owns smoothing */
body {
  background: var(--bg);
  color: var(--smoke);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 1.2s ease;
}

/* grain — one fixed layer, the whole page breathes through it */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 4;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--ember); color: var(--bg); }

img, svg, video, canvas { display: block; max-width: 100%; }

a { color: var(--ash); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--amber); }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

[lang="ur"] {
  font-family: var(--font-urdu);
  line-height: 1.9;
}

/* ---------- type scale ---------- */
.section-kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ash);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease-out), background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.25s;
  will-change: auto;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 34px; font-size: 17px; }

/* the ONLY places verdigris appears: reserve buttons + open-now status */
.btn--reserve {
  background: var(--mint);
  color: #0A1410;
  box-shadow: 0 0 0 0 rgba(79, 196, 154, 0);
}
.btn--reserve:hover {
  background: #63D8AE;
  color: #0A1410;
  box-shadow: 0 6px 28px -6px rgba(79, 196, 154, 0.45);
}

.btn--ghost {
  color: var(--ash);
  border-color: var(--line-strong);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px var(--pad);
  background: linear-gradient(to bottom, rgba(16, 13, 11, 0.85), rgba(16, 13, 11, 0));
  backdrop-filter: blur(2px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.brand__mark {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px 2px var(--ember);
  align-self: center;
  animation: coal-breathe 3.4s ease-in-out infinite;
}
@keyframes coal-breathe {
  0%, 100% { opacity: 0.75; box-shadow: 0 0 8px 1px var(--ember); }
  50% { opacity: 1; box-shadow: 0 0 16px 3px var(--ember); }
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ash);
}
.brand__urdu { font-size: 15px; color: var(--amber); }

.site-nav { display: flex; gap: 22px; }
.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--smoke);
  text-decoration: none;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.site-nav a:hover { color: var(--ash); }
.site-nav a:hover::after { transform: scaleX(1); }

/* ============================================================
   HERO — scrub zone
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__media, .hero__media video, .hero__media canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(16, 13, 11, 0.92) 0%, rgba(16, 13, 11, 0.35) 42%, rgba(16, 13, 11, 0.25) 100%);
  z-index: 2;
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding: 0 var(--pad) clamp(72px, 12vh, 140px);
  max-width: 900px;
}

.hero__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}
.hero__kicker [lang="ur"] { text-transform: none; letter-spacing: 0; font-size: 15px; margin-inline-start: 8px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 12vw, 160px);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--ash);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55);
  margin-bottom: 22px;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ash);
  max-width: 46ch;
  margin-bottom: 30px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.7);
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__hint {
  position: absolute;
  right: var(--pad);
  bottom: 32px;
  z-index: 3;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__hint-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--ember), transparent);
  animation: hint-drop 2.2s var(--ease-out) infinite;
}
@keyframes hint-drop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* fades to the exact page bg over the last ~18% of the scrub — no color jump */
.hero__handoff {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   sections shared
   ============================================================ */
main section { padding: clamp(90px, 14vh, 160px) var(--pad); }

/* ============================================================
   THE LIVING MENU (signature)
   ============================================================ */
.menu { background: var(--bg); }

.menu__head { max-width: 820px; margin-bottom: 56px; }
.menu__note { margin-top: 16px; color: var(--smoke); font-size: 15px; }

.menu__chips { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }

.chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--smoke);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s, box-shadow 0.3s;
}
.chip__time { color: var(--smoke-dim); font-weight: 400; margin-left: 6px; font-size: 12px; }
.chip:hover { border-color: var(--amber); color: var(--ash); }
.chip[aria-selected="true"] {
  background: var(--ember-dim);
  border-color: var(--ember);
  color: var(--ash);
  box-shadow: 0 0 24px -6px var(--ember);
}
.chip[aria-selected="true"] .chip__time { color: var(--amber); }

.menu__body {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.menu__list { list-style: none; }

.dish {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "names price"
    "desc  order";
  gap: 2px 24px;
  padding: 22px 18px;
  margin: 0 -18px;
  border-bottom: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
  transition: background-color 0.25s;
  cursor: default;
}
.dish::before {
  content: "";
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 3px;
  border-radius: 3px;
  background: var(--ember);
  box-shadow: 0 0 14px 1px var(--ember);
  opacity: 0;
  transition: opacity 0.25s;
}
.dish:hover, .dish.is-lit {
  background: linear-gradient(90deg, color-mix(in oklab, var(--ember) 10%, transparent), transparent 65%);
}
.dish:hover::before, .dish.is-lit::before { opacity: 1; }

.dish__names { grid-area: names; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.dish__urdu {
  font-size: 21px;
  color: var(--amber);
}
.dish__en {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ash);
}
.dish__desc { grid-area: desc; font-size: 14.5px; color: var(--smoke); max-width: 52ch; }
.dish__price {
  grid-area: price;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ash);
  white-space: nowrap;
  align-self: baseline;
}
.dish__order {
  grid-area: order;
  justify-self: end;
  align-self: end;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--smoke-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.dish__order:hover { color: var(--mint); border-color: var(--mint); }

/* side visual — sticky, swaps by dish category */
.menu__visual {
  position: sticky;
  top: 90px;
  aspect-ratio: 3 / 3.4;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(120% 90% at 50% 110%, color-mix(in oklab, var(--ember) 16%, transparent), transparent 60%),
    var(--panel);
  overflow: hidden;
}
.plate {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.plate.is-active { opacity: 1; transform: none; }
.plate svg { width: 78%; margin: 0 auto; }
.plate__cap {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke-dim);
  margin-top: 18px;
}

/* plate showing an AI still instead of the coded SVG art */
.plate--img { padding: 0; }
.plate--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plate--img .plate__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0;
  padding: 40px 16px 16px;
  color: var(--ash);
  background: linear-gradient(to top, rgba(10, 8, 7, 0.85), transparent);
}

/* ============================================================
   TONIGHT — live strip
   ============================================================ */
.tonight {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tonight__underline {
  height: 3px;
  max-width: 320px;
  margin: 22px 0 48px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.tonight__underline span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--ember), var(--amber));
  box-shadow: 0 0 12px var(--ember);
  transform: scaleX(0);
  transform-origin: left;
}

.tonight__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tonight__card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px;
}

.tonight__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke-dim);
  margin-bottom: 14px;
}
.demo-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--smoke-dim);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: 2px;
}

.tonight__status {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  text-transform: uppercase;
  color: var(--ash);
  line-height: 1;
}
.tonight__status.is-open { color: var(--mint); text-shadow: 0 0 24px rgba(79, 196, 154, 0.35); }
.tonight__meta { margin-top: 10px; font-size: 14px; color: var(--smoke); }

.tonight__special {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.02;
  color: var(--amber);
}

.tonight__seatings { list-style: none; }
.tonight__seatings li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ash);
}
.tonight__seatings li:last-child { border-bottom: none; }
.tonight__seatings .seats-left { color: var(--smoke); font-size: 13.5px; }
.tonight__seatings .seats-left.is-tight { color: var(--ember); }

/* ============================================================
   THE ROOM — broken editorial grid
   ============================================================ */
.room__head { max-width: 760px; margin-bottom: 64px; }

.room__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.room__card { position: relative; }
.room__card figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--smoke);
}

/* broken grid: overlap + varied sizes, not a uniform gallery */
.room__card--a { grid-column: 1 / 6;  grid-row: 1; margin-top: 40px; }
.room__card--b { grid-column: 6 / 10; grid-row: 1; }
.room__card--c { grid-column: 10 / 13; grid-row: 1; margin-top: 90px; }
.room__card--d { grid-column: 2 / 7;  grid-row: 2; margin-top: -30px; }
.room__card--e { grid-column: 8 / 12; grid-row: 2; margin-top: 50px; }

.room__art {
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.room__card--a .room__art { aspect-ratio: 4 / 3; }
.room__card--b .room__art { aspect-ratio: 3 / 4; }
.room__card--c .room__art { aspect-ratio: 1 / 1.15; }
.room__card--d .room__art { aspect-ratio: 16 / 9; }
.room__card--e .room__art { aspect-ratio: 4 / 3; }

/* coded atmosphere art — swapped for AI stills via ROOM_IMAGES */
.room__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
}
.room__art--pit {
  background:
    radial-gradient(90% 70% at 50% 105%, color-mix(in oklab, var(--ember) 55%, transparent), transparent 65%),
    radial-gradient(40% 30% at 30% 100%, color-mix(in oklab, var(--amber) 40%, transparent), transparent),
    linear-gradient(to top, #241610, #0E0B09 70%);
}
.room__art--tandoor {
  background:
    radial-gradient(45% 32% at 50% 58%, var(--amber), color-mix(in oklab, var(--ember) 70%, transparent) 45%, transparent 72%),
    linear-gradient(to bottom, #0E0B09, #1B120C);
}
.room__art--table {
  background:
    radial-gradient(20% 14% at 25% 22%, color-mix(in oklab, var(--amber) 65%, transparent), transparent 70%),
    radial-gradient(20% 14% at 55% 20%, color-mix(in oklab, var(--amber) 55%, transparent), transparent 70%),
    radial-gradient(20% 14% at 82% 24%, color-mix(in oklab, var(--amber) 60%, transparent), transparent 70%),
    linear-gradient(to bottom, #120D0A 40%, #221710);
}
.room__art--coal {
  background:
    radial-gradient(30% 24% at 30% 78%, color-mix(in oklab, var(--ember) 60%, transparent), transparent 70%),
    radial-gradient(24% 20% at 62% 84%, color-mix(in oklab, var(--ember) 45%, transparent), transparent 70%),
    radial-gradient(18% 16% at 80% 74%, color-mix(in oklab, var(--amber) 40%, transparent), transparent 70%),
    linear-gradient(to top, #191009, #0C0A09 60%);
}
.room__art--late {
  background:
    radial-gradient(50% 40% at 78% 30%, color-mix(in oklab, var(--amber) 28%, transparent), transparent 70%),
    linear-gradient(105deg, #0C0A09 55%, #17100B);
}

/* ============================================================
   PROOF BAND
   ============================================================ */
.proof {
  background: var(--bg);
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.proof__counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 var(--pad);
  margin-bottom: 72px;
}

.counter { text-align: center; }
.counter__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 1;
  color: var(--ash);
  font-variant-numeric: tabular-nums;
}
.counter__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke-dim);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.review {
  display: flex;
  align-items: baseline;
  gap: 16px;
  white-space: nowrap;
  font-size: 16px;
  color: var(--ash);
}
.review::before { content: "★"; color: var(--amber); }
.review cite { font-style: normal; font-size: 13.5px; color: var(--smoke-dim); }

/* ============================================================
   FIND US
   ============================================================ */
.findus {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.findus__address {
  font-style: normal;
  font-size: 16px;
  color: var(--ash);
  margin: 26px 0 30px;
  line-height: 1.8;
}

.hours-table {
  width: 100%;
  max-width: 420px;
  border-collapse: collapse;
  margin-bottom: 34px;
  font-size: 15px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.hours-table th { font-weight: 600; color: var(--ash); }
.hours-table td { color: var(--smoke); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.is-now th, .hours-table tr.is-now td { color: var(--mint); }

.findus__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-pin__pulse { animation: pin-pulse 2.6s ease-out infinite; transform-origin: 290px 196px; }
@keyframes pin-pulse {
  0% { transform: scale(0.5); opacity: 0.4; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta__glow {
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 120%;
  background: radial-gradient(50% 50% at 50% 100%, color-mix(in oklab, var(--ember) 34%, transparent), transparent 70%);
  pointer-events: none;
}
.cta__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ash);
}
.cta__sub { position: relative; margin: 20px auto 36px; max-width: 44ch; }
.cta__actions {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px var(--pad) 40px;
  background: var(--bg);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 44px;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--ash);
}
.footer__brand [lang="ur"] { font-size: 16px; color: var(--amber); text-transform: none; margin-inline-start: 8px; }
.footer__tag { font-size: 14px; margin-top: 6px; }
.footer__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke-dim);
  margin-bottom: 10px;
}
.footer__text { font-size: 14.5px; }
.footer__text a { color: var(--smoke); }
.footer__theme-line { font-size: 12.5px; color: var(--smoke-dim); margin-bottom: 6px; }
.footer__credit { font-size: 12.5px; color: var(--smoke-dim); }
.footer__credit strong { color: var(--amber); font-weight: 600; }

/* ============================================================
   FLOATING UI
   ============================================================ */
.float-reserve {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--mint);
  color: #0A1410;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 30px -6px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.float-reserve.is-visible { opacity: 1; transform: none; }

.perf-badge {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 50;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--smoke);
  background: rgba(16, 13, 11, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  backdrop-filter: blur(6px);
  font-variant-numeric: tabular-nums;
}
.perf-badge .ok { color: var(--mint); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .menu__body { grid-template-columns: 1fr; }
  .menu__visual { position: relative; top: 0; max-width: 420px; aspect-ratio: 3 / 2.4; }
  .plate svg { width: 46%; }
  .tonight__grid { grid-template-columns: 1fr; }
  .findus { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .room__grid { display: flex; flex-direction: column; gap: 36px; }
  .room__card { margin: 0 !important; }
  .room__card--c .room__art { aspect-ratio: 4 / 3; }
  .proof__counters { grid-template-columns: 1fr; gap: 44px; }
  .footer__grid { grid-template-columns: 1fr; }
  .float-reserve { display: inline-flex; }
  .dish { grid-template-areas: "names price" "desc desc" "order order"; }
  .dish__order { margin-top: 8px; }
  .perf-badge { font-size: 10.5px; padding: 6px 10px; }
}

@media (max-width: 480px) {
  #headerReserve { display: none; }
  .hero__hint { display: none; }
}

/* ============================================================
   REDUCED MOTION — full static fallback, non-negotiable
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; gap: 18px 40px; padding: 0 var(--pad); }
  .review { white-space: normal; }
  .hero { height: auto; min-height: 92vh; }
  .tonight__underline span { transform: none; }
  .float-reserve { opacity: 1; transform: none; }
}
