/* ============================================================
   Aroos Damascus — Damascene visual system
   ============================================================ */

:root {
  /* Palette */
  --red-damascus: #7C1F1F;
  --gold-antique: #C9A24B;
  --gold-soft: #d4b46a;
  --pomegranate: #A92F2F;
  --ivory: #F5EFE2;
  --parchment: #EADFC4;
  --parchment-deep: #ddcfa9;
  --charcoal: #1B1B1B;
  --charcoal-soft: #2d2a26;
  --olive: #6B6A3A;
  --ink-60: rgba(27,27,27,0.6);
  --ink-40: rgba(27,27,27,0.4);
  --ink-15: rgba(27,27,27,0.15);
  --ink-08: rgba(27,27,27,0.08);

  /* Type */
  --font-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-arabic-display: "Aref Ruqaa", "Amiri", serif;
  --font-arabic-body: "IBM Plex Sans Arabic", "Noto Sans Arabic", "Cairo", system-ui, sans-serif;

  --container: 1240px;
}

/* Arabic scoping — never apply Arabic faces to Latin text. */
:lang(ar), [dir="rtl"] {
  font-family: var(--font-arabic-body);
}
:lang(ar) .display, [dir="rtl"] .display {
  font-family: var(--font-arabic-display);
  letter-spacing: 0;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* Subtle paper grain over the ivory background */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(124,31,31,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: 0;
  opacity: 0.6;
}

/* ============================================================
   Typography
   ============================================================ */
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0;
  color: var(--charcoal);
}
h1 { font-size: clamp(48px, 6vw, 88px); line-height: 1.02; letter-spacing: -0.015em; }
h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.08; letter-spacing: -0.01em; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-damascus);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
:lang(ar) .eyebrow, [dir="rtl"] .eyebrow {
  font-family: var(--font-arabic-body);
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 13px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}

.lede {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--ink-60);
  font-style: italic;
  font-weight: 400;
}
:lang(ar) .lede, [dir="rtl"] .lede {
  font-family: var(--font-arabic-body);
  font-style: normal;
}

.alt-locale {
  opacity: 0.5;
  font-size: 0.55em;
  line-height: 1.4;
  display: block;
  margin-top: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
section.section {
  padding-block: clamp(64px, 9vw, 128px);
  position: relative;
  z-index: 1;
}

.divider-star {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
.divider-star svg {
  width: 32px; height: 32px;
  color: var(--gold-antique);
  opacity: 0.7;
}
.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-antique), transparent);
  opacity: 0.45;
  margin: 0;
}

/* ============================================================
   Header / nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(245, 239, 226, 0.88);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--ink-08);
}

/* Dark-mode nav for late-night route */
body[data-route="late-night"] .nav .wordmark,
body[data-route="late-night"] .nav .nav-link {
  color: var(--ivory);
}
body[data-route="late-night"] .nav .wordmark-stack small {
  color: rgba(245,239,226,0.55);
}
body[data-route="late-night"] .nav .mark { color: var(--gold-antique); }
body[data-route="late-night"] .nav .wordmark-ar { color: var(--gold-antique); }
body[data-route="late-night"] .nav .lang-toggle { border-color: rgba(245,239,226,0.25); }
body[data-route="late-night"] .nav .lang-toggle button { color: rgba(245,239,226,0.6); }
body[data-route="late-night"] .nav .lang-toggle button.on { background: var(--ivory); color: var(--charcoal); }
body[data-route="late-night"] .nav.solid {
  background: rgba(27,27,27,0.85);
  border-bottom-color: rgba(245,239,226,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 18px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.nav-brand .mark {
  width: 36px; height: 36px;
  color: var(--red-damascus);
}
.nav-brand .wordmark {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}
.nav-brand .wordmark-ar {
  font-family: var(--font-arabic-display);
  font-size: 26px;
  line-height: 1;
  color: var(--red-damascus);
}
.nav-brand .wordmark-stack {
  display: flex; flex-direction: column;
  gap: 2px;
}
.nav-brand .wordmark-stack small {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--charcoal);
  background: transparent;
  border: none;
  transition: background 150ms ease, color 150ms ease;
  white-space: nowrap;
}
.nav-link:hover { background: var(--ink-08); }
.nav-link.active {
  background: var(--charcoal);
  color: var(--ivory);
}
:lang(ar) .nav-link, [dir="rtl"] .nav-link { font-family: var(--font-arabic-body); letter-spacing: 0; font-size: 14px; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { padding: 10px 16px; font-size: 12.5px; }

.lang-toggle {
  display: inline-flex;
  background: transparent;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  padding: 3px;
  cursor: pointer;
  user-select: none;
}
.lang-toggle button {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-60);
}
.lang-toggle button.on {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms ease, transform 80ms ease, box-shadow 150ms ease;
}
:lang(ar) .btn, [dir="rtl"] .btn { font-family: var(--font-arabic-body); font-size: 14px; }
.btn.primary { background: var(--red-damascus); color: #fffaee; }
.btn.primary:hover { background: #911f1f; }
.btn.primary:active { transform: scale(0.98); }
.btn.gold { background: var(--gold-antique); color: var(--charcoal); }
.btn.gold:hover { background: var(--gold-soft); }
.btn.ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--ink-15);
}
.btn.ghost:hover { border-color: var(--charcoal); }
.btn.dark { background: var(--charcoal); color: var(--ivory); }
.btn.dark:hover { background: #2c2c2c; }
.btn.lg { padding: 16px 28px; font-size: 14px; }
.btn.sm { padding: 8px 14px; font-size: 12px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
[dir="rtl"] .hero-grid { direction: rtl; }

.hero-eyebrow-row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--parchment);
  border: 1px solid var(--parchment-deep);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}
:lang(ar) .hero-badge, [dir="rtl"] .hero-badge {
  font-family: var(--font-arabic-body);
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-damascus);
}

.hero h1 {
  white-space: pre-line;
  font-weight: 500;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-60);
  margin-top: 28px;
  max-width: 38ch;
  font-style: italic;
}
:lang(ar) .hero-sub, [dir="rtl"] .hero-sub {
  font-family: var(--font-arabic-body);
  font-style: normal;
}

.hero-ctas {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* Hero collage */
.hero-collage {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 620px;
}
.hero-collage .img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(27,27,27,0.35), 0 8px 20px -8px rgba(27,27,27,0.2);
}
.hero-collage .img-main {
  inset: 0 0 0 18%;
  background-image: url("media/mixed-grill-2.webp");
}
.hero-collage .img-secondary {
  width: 42%;
  bottom: -6%;
  left: -2%;
  aspect-ratio: 3/4;
  background-image: url("media/interior-deira-1.webp");
  background-image: url("media/exterior-deira-1.webp");
  border: 6px solid var(--ivory);
}
.hero-collage .img-stamp {
  position: absolute;
  top: -4%;
  right: -8%;
  width: 130px; height: 130px;
  background: var(--red-damascus);
  color: var(--gold-antique);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-family: var(--font-serif);
  transform: rotate(-8deg);
  box-shadow: 0 12px 30px -10px rgba(124,31,31,0.5);
}
.hero-collage .img-stamp .big {
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
}
.hero-collage .img-stamp small {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--gold-soft);
}

/* Eight-pointed-star background motif in hero */
.hero-bg-motif {
  position: absolute;
  top: 0; right: -10%;
  width: 720px;
  height: 720px;
  pointer-events: none;
  color: var(--gold-antique);
  opacity: 0.07;
  z-index: 0;
}
[dir="rtl"] .hero-bg-motif { right: auto; left: -10%; }

/* ============================================================
   Signature row
   ============================================================ */
.sig-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sig-card {
  background: var(--ivory);
  border: 1px solid var(--ink-08);
  padding: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.sig-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(27,27,27,0.2);
}
.sig-card .photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.sig-card .body {
  padding: 24px 22px 28px;
}
.sig-card .price {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--gold-antique);
  white-space: nowrap;
}
[dir="rtl"] .sig-card .price { right: auto; left: 16px; }
.sig-card h3 {
  font-size: 26px;
}
.sig-card .ar-name {
  font-family: var(--font-arabic-display);
  font-size: 22px;
  color: var(--red-damascus);
  margin-top: 4px;
  display: block;
}
.sig-card p { color: var(--ink-60); margin: 10px 0 0; font-size: 14px; }

/* ============================================================
   Story strip
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.story-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: 0 24px 48px -24px rgba(27,27,27,0.3);
}
.timeline {
  margin-top: 40px;
  display: grid;
  gap: 22px;
}
.timeline-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: baseline;
  padding-block: 16px;
  border-top: 1px solid var(--ink-08);
}
.timeline-row:first-child { border-top: none; padding-top: 0; }
.timeline-year {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold-antique);
  font-weight: 500;
}
.timeline-text strong { font-weight: 600; }
.timeline-text p { margin: 4px 0 0; color: var(--ink-60); font-size: 14px; }

/* ============================================================
   Late night
   ============================================================ */
.late-night {
  background: var(--charcoal);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.late-night::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("media/charcoal-station-1.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(0.2) contrast(1.05);
}
.late-night::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,27,27,0.4), rgba(27,27,27,0.85));
}
.late-night > .container { position: relative; z-index: 1; }
.late-night h2 { color: var(--ivory); }
.late-night .eyebrow { color: var(--gold-antique); }
.late-night .lede { color: rgba(245,239,226,0.7); }

.late-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(169,47,47,0.18);
  border: 1px solid rgba(201,162,75,0.3);
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ivory);
  white-space: nowrap;
}
.late-badge .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pomegranate);
  box-shadow: 0 0 0 0 rgba(169,47,47,0.6);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(169,47,47,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(169,47,47,0); }
  100% { box-shadow: 0 0 0 0 rgba(169,47,47,0); }
}
.late-badge .countdown {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gold-soft);
}

/* Late-night band layout */
.late-band-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.late-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
}
.late-stat {
  border-inline-start: 2px solid var(--gold-antique);
  padding-inline-start: 18px;
}
.late-stat .lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-antique);
  font-weight: 600;
}
:lang(ar) .late-stat .lbl, [dir="rtl"] .late-stat .lbl {
  font-family: var(--font-arabic-body);
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 13px;
}
.late-stat .val {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--ivory);
  margin-top: 8px;
  line-height: 1.15;
}
:lang(ar) .late-stat .val, [dir="rtl"] .late-stat .val {
  font-family: var(--font-arabic-body);
  font-size: 22px;
}
@media (max-width: 1080px) {
  .late-band-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Menu page
   ============================================================ */
.menu-hero {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 60px;
}
.menu-toc {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}
.menu-toc button {
  background: transparent;
  border: 1px solid var(--ink-15);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--charcoal);
  white-space: nowrap;
  transition: background 150ms, color 150ms, border-color 150ms;
}
:lang(ar) .menu-toc button, [dir="rtl"] .menu-toc button { font-family: var(--font-arabic-body); font-size: 14px; }
.menu-toc button:hover { background: var(--ink-08); }
.menu-toc button.on { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.menu-category {
  padding-block: 64px;
  border-top: 1px solid var(--ink-08);
}
.menu-category-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 40px;
}
.menu-category-head .tray {
  width: 56px; height: 56px;
  color: var(--gold-antique);
}
.menu-category-head h2 { font-size: clamp(36px, 4vw, 52px); }
.menu-category-head .ar { font-family: var(--font-arabic-display); display: block; color: var(--red-damascus); margin-top: 6px; font-size: 0.55em; }
.menu-category-head .blurb { color: var(--ink-60); margin-top: 8px; max-width: 60ch; font-style: italic; font-family: var(--font-serif); font-size: 18px; }
:lang(ar) .menu-category-head .blurb, [dir="rtl"] .menu-category-head .blurb { font-family: var(--font-arabic-body); font-style: normal; }

.dish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 56px;
}
.dish-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding-block: 18px;
  border-bottom: 1px dashed var(--ink-15);
  align-items: baseline;
}
.dish-name { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.dish-name .en {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}
.dish-name .ar {
  font-family: var(--font-arabic-display);
  font-size: 20px;
  color: var(--red-damascus);
}
.dish-name .star { color: var(--gold-antique); font-size: 14px; }
.dish-name .family-tag {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid currentColor;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
}
.dish-desc {
  grid-column: 1 / -1;
  color: var(--ink-60);
  font-size: 13.5px;
  margin-top: 4px;
  line-height: 1.5;
  max-width: 50ch;
}
.dish-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
}
.dish-price .aed {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-40);
  letter-spacing: 0.1em;
  margin-inline-end: 4px;
}

.menu-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--ink-40);
  margin-top: 48px;
  font-style: italic;
}

/* ============================================================
   Branches
   ============================================================ */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.branch-card {
  background: var(--ivory);
  border: 1px solid var(--ink-08);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.branch-card .photo {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  position: relative;
}
.branch-card .open-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(27,27,27,0.85);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
[dir="rtl"] .branch-card .open-pill { left: auto; right: 14px; }
.branch-card .open-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5cd07f;
  box-shadow: 0 0 0 0 rgba(92,208,127,0.6);
  animation: livePulse 2.2s ease-out infinite;
}
.branch-card .open-pill.closed .dot { background: #c2604a; animation: none; }
.branch-card .body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.branch-card h3 {
  font-size: 26px;
  font-weight: 500;
}
.branch-card .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-60);
  font-size: 15px;
}
:lang(ar) .branch-card .tagline, [dir="rtl"] .branch-card .tagline { font-family: var(--font-arabic-body); font-style: normal; }

.branch-meta {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  font-size: 13.5px;
}
.branch-meta .row { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: flex-start; }
.branch-meta .row svg { width: 16px; height: 16px; color: var(--gold-antique); margin-top: 3px; }
.branch-meta a { color: var(--charcoal); text-decoration: none; border-bottom: 1px solid var(--ink-15); }
.branch-meta a:hover { border-color: var(--charcoal); }

.branch-card .actions {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
}

/* ============================================================
   Reserve
   ============================================================ */
.reserve-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.reserve-aside {
  position: sticky; top: 100px;
}
.reserve-aside .aside-img {
  aspect-ratio: 3/4;
  background-size: cover; background-position: center;
}
.reserve-form {
  display: grid;
  gap: 22px;
}
.field {
  display: flex; flex-direction: column; gap: 8px;
}
.field label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-60);
}
:lang(ar) .field label, [dir="rtl"] .field label { font-family: var(--font-arabic-body); letter-spacing: 0; text-transform: none; font-size: 13px; }
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-15);
  padding: 10px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--charcoal);
  border-radius: 0;
  width: 100%;
  outline: none;
  transition: border-color 150ms;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--red-damascus); }
:lang(ar) .field input, :lang(ar) .field select, :lang(ar) .field textarea,
[dir="rtl"] .field input, [dir="rtl"] .field select, [dir="rtl"] .field textarea {
  font-family: var(--font-arabic-body); font-size: 18px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.stepper { display: flex; align-items: center; gap: 14px; padding: 6px 0; }
.stepper button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink-15);
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--charcoal);
  transition: background 150ms, border-color 150ms;
}
.stepper button:hover { background: var(--ink-08); }
.stepper .val { font-family: var(--font-serif); font-size: 24px; min-width: 32px; text-align: center; }

.branch-radio { display: grid; gap: 10px; }
.branch-radio label {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--ink-15);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--charcoal);
  transition: border-color 150ms, background 150ms;
}
.branch-radio label.on { border-color: var(--red-damascus); background: rgba(124,31,31,0.04); }
.branch-radio label input { accent-color: var(--red-damascus); }
.branch-radio .ar-name { font-family: var(--font-arabic-body); font-size: 13px; color: var(--ink-60); margin-inline-start: auto; }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.slot-grid button {
  border: 1px solid var(--ink-15);
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  color: var(--charcoal);
  transition: all 120ms;
}
.slot-grid button:hover { border-color: var(--charcoal); }
.slot-grid button.on { background: var(--red-damascus); color: var(--ivory); border-color: var(--red-damascus); }

.success-card {
  background: var(--parchment);
  border: 1px solid var(--gold-antique);
  padding: 36px 40px;
  text-align: start;
  border-radius: 4px;
}
.success-card .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red-damascus);
  color: var(--gold-antique);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

/* ============================================================
   Sticky CTA bar (mobile-style on all sizes for prototype)
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  gap: 4px;
  padding: 6px;
  background: var(--charcoal);
  border-radius: 999px;
  box-shadow: 0 20px 50px -10px rgba(27,27,27,0.45);
}
.sticky-cta button, .sticky-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: none;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms;
}
.sticky-cta button:hover, .sticky-cta a:hover { background: rgba(245,239,226,0.1); }
.sticky-cta .cta-divider { width: 1px; background: rgba(245,239,226,0.15); margin-block: 8px; }
.sticky-cta .reserve { background: var(--red-damascus); color: #fffaee; }
.sticky-cta .reserve:hover { background: #911f1f; }
:lang(ar) .sticky-cta, [dir="rtl"] .sticky-cta button, [dir="rtl"] .sticky-cta a { font-family: var(--font-arabic-body); font-size: 14px; }

/* ============================================================
   WhatsApp FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 50;
  background: #25D366;
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.5);
  cursor: pointer;
  border: none;
  transition: transform 150ms;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 28px; height: 28px; }
[dir="rtl"] .wa-fab { right: auto; left: 24px; }

/* ============================================================
   Footer
   ============================================================ */
footer.foot {
  background: var(--charcoal);
  color: var(--ivory);
  padding-block: 80px 36px;
  margin-top: 80px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.foot h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-antique);
  margin: 0 0 18px;
  font-weight: 600;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; }
.foot li, .foot a { color: rgba(245,239,226,0.75); text-decoration: none; }
.foot a:hover { color: var(--ivory); }
.foot-brand {
  font-family: var(--font-serif);
  font-size: 36px;
}
.foot-brand-ar { font-family: var(--font-arabic-display); color: var(--gold-antique); font-size: 28px; margin-top: 4px; display: block; }
.foot-tag { color: rgba(245,239,226,0.6); font-style: italic; margin-top: 12px; max-width: 36ch; font-size: 14px; }
.foot-base {
  border-top: 1px solid rgba(245,239,226,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: rgba(245,239,226,0.45);
}
:lang(ar) .foot, [dir="rtl"] .foot { font-family: var(--font-arabic-body); }

/* ============================================================
   Press strip
   ============================================================ */
.press {
  background: var(--parchment);
  padding-block: 60px;
  border-block: 1px solid var(--parchment-deep);
}
.press-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.press-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--charcoal-soft);
}
:lang(ar) .press-quote, [dir="rtl"] .press-quote { font-family: var(--font-arabic-body); font-style: normal; }
.press-source {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-40);
  font-style: normal;
  font-weight: 600;
}

/* ============================================================
   Story page
   ============================================================ */
.story-hero {
  padding-top: 140px;
  padding-bottom: 24px;
  text-align: center;
}
.story-hero h1 { max-width: 18ch; margin: 0 auto; }
.story-narrative {
  max-width: 70ch;
  margin: 56px auto 0;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.55;
  color: var(--charcoal-soft);
}
.story-narrative p { margin: 0 0 22px; }
:lang(ar) .story-narrative, [dir="rtl"] .story-narrative {
  font-family: var(--font-arabic-body);
  font-size: 19px;
  line-height: 1.85;
}
.story-narrative p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 4.5em;
  line-height: 0.8;
  float: left;
  margin: 6px 12px -4px 0;
  color: var(--red-damascus);
  font-weight: 500;
}
:lang(ar) .story-narrative p:first-of-type::first-letter,
[dir="rtl"] .story-narrative p:first-of-type::first-letter { all: revert; }

.story-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 64px;
}
.story-gallery .img {
  background-size: cover; background-position: center;
  border-radius: 2px;
  min-height: 240px;
}
.story-gallery .img.lg { grid-row: span 2; aspect-ratio: 3/4; min-height: 0; }

/* ============================================================
   Late-night page extras
   ============================================================ */
.late-page {
  background: var(--charcoal);
  color: var(--ivory);
  min-height: 100vh;
  position: relative;
}
.late-page::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("media/charcoal-station-1.webp");
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.late-page::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,27,27,0.5), rgba(27,27,27,0.9));
}
.late-page .container { position: relative; z-index: 1; }
.late-page h1, .late-page h2 { color: var(--ivory); }
.late-page .lede { color: rgba(245,239,226,0.7); }
.late-page .late-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.late-page .late-meta h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-antique);
  margin: 0 0 12px;
}
.late-page .late-meta p { color: var(--ivory); font-family: var(--font-serif); font-size: 20px; margin: 0; }
:lang(ar) .late-page .late-meta p, [dir="rtl"] .late-page .late-meta p { font-family: var(--font-arabic-body); font-size: 18px; }

/* ============================================================
   Tweak panel position adjust (don't collide with sticky CTA)
   ============================================================ */
.tweaks-panel { bottom: 100px !important; }

/* Above hero late-badge uses dark-on-dark; on the ivory hero we need an inverted variant */
.hero-eyebrow-row .late-badge {
  background: rgba(124,31,31,0.06);
  border-color: rgba(124,31,31,0.18);
  color: var(--charcoal);
}
.hero-eyebrow-row .late-badge .countdown { color: var(--red-damascus); }

/* ============================================================
   Extras: Mezze basket, Charcoal process, Family feast, Gallery,
           Neighbourhood, FAQ, Build-a-feast, Branches map
   ============================================================ */

/* Mezze basket */
.mezze-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.mezze-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 24px 48px -24px rgba(27,27,27,0.3);
  border-radius: 2px;
}
.mezze-stamp {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 180px; height: 180px;
  background: var(--red-damascus);
  color: var(--gold-antique);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  font-family: var(--font-serif);
  transform: rotate(-6deg);
  box-shadow: 0 16px 32px -10px rgba(124,31,31,0.45);
}
.mezze-stamp span { font-size: 26px; line-height: 1.1; }
.mezze-stamp small {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--gold-soft);
  font-weight: 600;
}
:lang(ar) .mezze-stamp small, [dir="rtl"] .mezze-stamp small {
  font-family: var(--font-arabic-body);
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 11px;
}
[dir="rtl"] .mezze-stamp { left: -28px; right: auto; }

.basket-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.basket-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-block: 12px;
  border-top: 1px solid var(--ink-08);
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--charcoal-soft);
}
:lang(ar) .basket-list li, [dir="rtl"] .basket-list li {
  font-family: var(--font-arabic-body);
  font-size: 19px;
}
.basket-list .num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold-antique);
  font-weight: 600;
}

/* Charcoal process */
.charcoal-section { background: var(--parchment); position: relative; }
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-card {
  background: var(--ivory);
  border: 1px solid var(--parchment-deep);
  padding: 32px 28px;
  border-radius: 2px;
}
.process-card .num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--red-damascus);
  line-height: 1;
  margin-bottom: 18px;
}
.process-card h3 { font-size: 28px; margin-bottom: 12px; }
.process-card p { color: var(--ink-60); font-size: 15px; line-height: 1.6; margin: 0; }

.charcoal-photo {
  margin-top: 48px;
  aspect-ratio: 21/9;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  position: relative;
  filter: brightness(0.85) contrast(1.05);
}
.charcoal-photo-caption {
  position: absolute;
  inset: auto 0 24px 24px;
  background: rgba(27,27,27,0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  padding: 16px 22px;
  border-radius: 2px;
  max-width: 360px;
}
.charcoal-photo-caption span {
  font-family: var(--font-serif);
  font-size: 22px;
  display: block;
}
:lang(ar) .charcoal-photo-caption span, [dir="rtl"] .charcoal-photo-caption span {
  font-family: var(--font-arabic-body);
}
.charcoal-photo-caption small {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-antique);
  margin-top: 6px;
  display: block;
}
[dir="rtl"] .charcoal-photo-caption { inset: auto 24px 24px auto; }

/* Family feast */
.feast-section { background: var(--ivory); }
.feast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feast-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--ink-08);
  overflow: hidden;
}
.feast-photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.feast-serves {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(27,27,27,0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}
[dir="rtl"] .feast-serves { left: auto; right: 14px; }
.feast-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.feast-body h3 { font-size: 26px; }
.feast-body p { color: var(--ink-60); margin: 0; font-size: 14px; line-height: 1.55; }
.feast-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--ink-08);
}
.feast-price {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--charcoal);
}
.feast-price .aed {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-40);
  letter-spacing: 0.1em;
  margin-inline-end: 4px;
}

.catering-strip {
  margin-top: 56px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 36px 40px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.catering-strip h3 { color: var(--ivory); }
.catering-strip .eyebrow { color: var(--gold-antique); }
.catering-strip p { color: rgba(245,239,226,0.7); }
.catering-actions {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end;
}
.catering-actions .btn.ghost { color: var(--ivory); border-color: rgba(245,239,226,0.3); }
.catering-actions .btn.ghost:hover { border-color: var(--ivory); }
[dir="rtl"] .catering-actions { justify-content: flex-start; }

/* Gallery */
.gallery-section { background: var(--parchment); }
.masonry {
  columns: 4;
  column-gap: 12px;
}
.masonry-item {
  position: relative;
  background-size: cover;
  background-position: center;
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 2px;
  overflow: hidden;
}
.masonry-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(27,27,27,0.85), transparent);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transition: opacity 200ms;
}
:lang(ar) .masonry-item figcaption, [dir="rtl"] .masonry-item figcaption {
  font-family: var(--font-arabic-body);
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
}
.masonry-item:hover figcaption { opacity: 1; }

/* Neighbourhood */
.neighbourhood-section { background: var(--ivory); }
.neighbour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.neighbour-card {
  background: var(--parchment);
  border: 1px solid var(--parchment-deep);
  padding: 28px 24px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.neighbour-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--gold-antique);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-damascus);
  margin-bottom: 8px;
}
.neighbour-icon svg { width: 18px; height: 18px; }
.neighbour-meta {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
}
:lang(ar) .neighbour-meta, [dir="rtl"] .neighbour-meta {
  font-family: var(--font-arabic-body);
  letter-spacing: 0;
  text-transform: none;
  font-size: 12.5px;
}
.neighbour-card h4 { font-family: var(--font-serif); font-size: 22px; margin: 0; font-weight: 500; }
:lang(ar) .neighbour-card h4, [dir="rtl"] .neighbour-card h4 { font-family: var(--font-arabic-body); }
.neighbour-card p { color: var(--ink-60); font-size: 14px; margin: 0; line-height: 1.55; }

/* FAQ */
.faq-section { background: var(--parchment); }
.faq-list {
  max-width: 720px;
  margin-inline: auto;
}
.faq-row {
  border-bottom: 1px solid var(--ink-08);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 22px;
  text-align: start;
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 500;
}
.faq-q > span:first-child { flex: 1; }
:lang(ar) .faq-q, [dir="rtl"] .faq-q { font-family: var(--font-arabic-body); font-size: 19px; }
.faq-plus {
  font-family: var(--font-sans);
  font-size: 24px;
  color: var(--red-damascus);
  width: 28px;
  text-align: center;
}
.faq-a-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease;
}
.faq-row.open .faq-a-wrap { max-height: 220px; }
.faq-a {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink-60);
  line-height: 1.6;
  max-width: 60ch;
  font-style: italic;
}
:lang(ar) .faq-a, [dir="rtl"] .faq-a {
  font-family: var(--font-arabic-body);
  font-style: normal;
  font-size: 15.5px;
}

/* Build-a-feast */
.feast-suggest-card {
  background: var(--parchment);
  border: 1px solid var(--parchment-deep);
  padding: 28px 26px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feast-suggest-card ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
}
.feast-suggest-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-block: 8px;
  border-bottom: 1px dashed var(--ink-15);
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--charcoal-soft);
}
:lang(ar) .feast-suggest-card li, [dir="rtl"] .feast-suggest-card li {
  font-family: var(--font-arabic-body);
  font-size: 15.5px;
}
.feast-suggest-card li .p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-40);
  font-weight: 500;
}
.feast-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 8px;
}
.feast-total span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.feast-total strong {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--red-damascus);
  font-weight: 600;
}

/* Branches map band */
.branches-map-band { background: var(--ivory); padding-top: 80px; padding-bottom: 80px; }
.map-canvas {
  background: var(--parchment);
  border: 1px solid var(--parchment-deep);
  border-radius: 2px;
  padding: 24px;
  aspect-ratio: 6/4;
  position: relative;
  overflow: hidden;
}
.map-canvas svg { width: 100%; height: 100%; display: block; }
.map-legend {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.map-legend li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 12px;
  border-top: 1px solid var(--ink-08);
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--charcoal);
}
:lang(ar) .map-legend li, [dir="rtl"] .map-legend li { font-family: var(--font-arabic-body); font-size: 19px; }
.map-legend .pin {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red-damascus);
  flex-shrink: 0;
}
.map-legend .km {
  margin-inline-start: auto;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-40);
  font-weight: 600;
}
:lang(ar) .map-legend .km, [dir="rtl"] .map-legend .km {
  font-family: var(--font-arabic-body); letter-spacing: 0; text-transform: none; font-size: 13.5px;
}

@media (max-width: 1080px) {
  .feast-grid, .neighbour-grid, .process-row { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 3; }
}
@media (max-width: 880px) {
  .mezze-grid, .map-band-grid { grid-template-columns: 1fr; }
  .feast-grid, .neighbour-grid, .process-row, .feast-suggest { grid-template-columns: 1fr !important; }
  .catering-strip { grid-template-columns: 1fr; }
  .catering-actions { justify-content: flex-start; }
  .masonry { columns: 2; }
  .mezze-stamp { width: 130px; height: 130px; right: -10px; bottom: -10px; }
  .charcoal-photo-caption { inset: auto 12px 12px 12px; max-width: none; }
}
@media (max-width: 1080px) {
  .nav-links { display: none; }
}

@media (max-width: 880px) {
  .hero-grid, .story-grid, .reserve-wrap { grid-template-columns: 1fr; }
  .sig-row, .branch-grid, .press-row, .late-page .late-meta { grid-template-columns: 1fr; }
  .dish-grid { grid-template-columns: 1fr; gap: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(4, 1fr); }
  .reserve-aside { position: static; }
  .hero { padding-top: 110px; }
}

/* tighter base reserved-content paddings on small */
@media (max-width: 640px) {
  .sticky-cta { bottom: 12px; }
  .sticky-cta button, .sticky-cta a { padding: 8px 12px; font-size: 11.5px; }
  .wa-fab { bottom: 76px; right: 16px; }
}

/* ============================================================
   Palette themes (via Tweaks)
   ============================================================ */
body[data-palette="warm-clay"] {
  --red-damascus: #8a3320;
  --gold-antique: #d4a45c;
  --pomegranate: #b13e2a;
  --ivory: #f5ecda;
  --parchment: #ead8b3;
  --parchment-deep: #d9c08c;
  --charcoal: #2a1d14;
  --olive: #6b5832;
}
body[data-palette="midnight"] {
  --red-damascus: #b04a48;
  --gold-antique: #d2a956;
  --pomegranate: #c95757;
  --ivory: #1c1a17;
  --parchment: #2a2622;
  --parchment-deep: #3a342d;
  --charcoal: #f0e8d6;
  --ink-60: rgba(240,232,214,0.6);
  --ink-40: rgba(240,232,214,0.4);
  --ink-15: rgba(240,232,214,0.18);
  --ink-08: rgba(240,232,214,0.1);
  --olive: #b9b07f;
}
body[data-palette="midnight"] .sig-card,
body[data-palette="midnight"] .branch-card { background: var(--parchment); }
body[data-palette="midnight"] .nav.solid { background: rgba(28,26,23,0.88); }
