/*
 * Lyallpur — demo build.
 *
 * The palette is taken off the restaurant's own printed card rather than the
 * usual "warm cream cafe" default: charcoal and ember, with the green from the
 * clock-tower logo kept for accents. A grill house should look like the grill,
 * not like a patisserie.
 */

:root {
  --ink: #0E0B09;
  --ink-2: #171210;
  --card: #1E1815;
  --card-2: #262019;
  --line: #342B24;
  --line-2: #47392F;

  --cream: #F7EFE4;
  --mute: #B9A997;
  --faint: #8A7B6C;

  --ember: #FF6A1A;
  --ember-2: #FF8C42;
  --gold: #F3B73D;
  --leaf: #2FA35B;

  --r: 14px;
  --r-lg: 22px;
  --shadow: 0 18px 44px rgba(0, 0, 0, .45);

  --wrap: 1180px;
  --gut: clamp(16px, 4vw, 40px);

  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font: 400 16px/1.65 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 { margin: 0; text-wrap: balance; }

.wrap { width: min(100% - var(--gut) * 2, var(--wrap)); margin-inline: auto; }

.skip {
  position: absolute; inset-inline-start: -999px; top: 0; z-index: 99;
  background: var(--gold); color: #1A120A; padding: 12px 18px; border-radius: 0 0 10px 0;
  font-weight: 700; text-decoration: none;
}
.skip:focus { inset-inline-start: 0; }

:where(a, button, input, [tabindex]):focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px; border: 0; cursor: pointer;
  font: 700 14px/1 'Plus Jakarta Sans', sans-serif; text-decoration: none;
  white-space: nowrap; transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; fill: currentColor; flex: none; }
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn-sm { padding: 9px 15px; font-size: 13px; }

.btn-amber { background: linear-gradient(180deg, var(--ember-2), var(--ember)); color: #2A1104; box-shadow: 0 8px 24px rgba(255, 106, 26, .28); }
.btn-amber:hover { background: linear-gradient(180deg, #FFA05F, #FF7A2E); }

.btn-wa { background: #25D366; color: #06331A; }
.btn-wa:hover { background: #3BDD78; }

.btn-ghost { background: var(--card-2); color: var(--cream); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--line-2); }

.btn-line { background: transparent; color: var(--cream); border: 1.5px solid var(--line-2); }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- header ---------- */
.bar {
  position: sticky; top: 0; z-index: 40;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(14, 11, 9, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.bar.stuck { border-bottom-color: var(--line); background: rgba(14, 11, 9, .95); }

.bar-in { display: flex; align-items: center; gap: 18px; min-height: 68px; }

/* The restaurant's own logo. The artwork is a deep brown that disappears on a
 * charcoal bar, so the file shipped here is the same mark recoloured along the
 * site's ember-to-cream ramp — same shapes, same wordmark, readable on dark. */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-inline-end: auto; min-width: 0; }
.brand-logo { height: 42px; width: auto; flex: none; }
@media (max-width: 900px) { .brand-logo { height: 36px; } }

.bar-nav { display: flex; gap: 22px; }
.bar-nav a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--mute); }
.bar-nav a:hover { color: var(--gold); }

.bar-act { display: flex; align-items: center; gap: 8px; }

.lang {
  display: flex; align-items: center; gap: 6px; padding: 7px 10px;
  background: var(--card-2); border: 1px solid var(--line); border-radius: 999px;
  color: var(--faint); font: 700 12px/1 'Plus Jakarta Sans', sans-serif; cursor: pointer;
}
.lang span { padding: 3px 7px; border-radius: 999px; }
.lang .ar { font-family: 'Noto Kufi Arabic', sans-serif; font-size: 11px; }
.lang span:first-child { background: var(--gold); color: #1A120A; }
.lang[aria-pressed="true"] span:first-child { background: none; color: var(--faint); }
.lang[aria-pressed="true"] .ar { background: var(--gold); color: #1A120A; }

@media (max-width: 860px) { .bar-nav { display: none; } }
@media (max-width: 620px) {
  .btn .lbl { display: none; }
  .btn-ghost, .btn-wa { padding: 11px; }
  .brand-logo { height: 34px; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding-block: clamp(36px, 7vw, 76px) clamp(40px, 8vw, 92px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: -20% -10% auto -10%; height: 130%;
  background:
    radial-gradient(60% 55% at 78% 22%, rgba(255, 106, 26, .22), transparent 68%),
    radial-gradient(50% 50% at 8% 76%, rgba(47, 163, 91, .14), transparent 70%);
  pointer-events: none;
}
.hero-in {
  position: relative; display: grid; gap: clamp(28px, 5vw, 54px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center;
}
@media (max-width: 900px) { .hero-in { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 4px rgba(47, 163, 91, .18); }

.hero h1 {
  font: 400 clamp(44px, 8.4vw, 92px)/.94 'Anton', sans-serif;
  letter-spacing: -.005em; text-transform: uppercase;
}
.hero h1 span { display: block; }
.hero h1 .hl {
  background: linear-gradient(95deg, var(--gold), var(--ember));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lede { margin: 20px 0 0; max-width: 46ch; color: var(--mute); font-size: clamp(15px, 1.6vw, 17px); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 44px);
  list-style: none; margin: 36px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line);
}
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts b { font: 400 26px/1 'Anton', sans-serif; color: var(--gold); }
.hero-facts span { font-size: 12.5px; color: var(--faint); margin-top: 5px; }

.hero-shot { position: relative; margin: 0; }
.hero-shot img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-shot figcaption {
  position: absolute; inset-inline-start: 16px; bottom: 16px;
  background: rgba(14, 11, 9, .86); backdrop-filter: blur(8px);
  padding: 9px 15px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  border: 1px solid var(--line-2);
}

/* ---------- dum pukht ---------- */
.pukht {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 3vw, 36px); align-items: center; text-decoration: none;
  background: linear-gradient(120deg, var(--card), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .18s ease, transform .18s ease;
}
.pukht:hover { border-color: var(--gold); transform: translateY(-2px); }
.pukht img { width: 100%; height: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.pukht-t { padding: clamp(20px, 3vw, 34px) clamp(20px, 3vw, 40px) clamp(20px, 3vw, 34px) 0; }
.pukht-t .tag { margin: 0 0 10px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf); }
.pukht-t h2 { font: 400 clamp(26px, 3.6vw, 40px)/1.02 'Anton', sans-serif; text-transform: uppercase; }
.pukht-t p { margin: 12px 0 0; color: var(--mute); font-size: 15px; }
.pukht-go { display: inline-block; margin-top: 18px; color: var(--gold); font-weight: 700; font-size: 14px; }
@media (max-width: 760px) {
  .pukht { grid-template-columns: 1fr; }
  .pukht-t { padding: 0 24px 26px; }
}

/* ---------- sections ---------- */
.sec { padding-block: clamp(48px, 8vw, 92px); }
.sec-h { margin-bottom: clamp(24px, 3.5vw, 40px); }
.sec-h h2 { font: 400 clamp(30px, 4.6vw, 52px)/1 'Anton', sans-serif; text-transform: uppercase; }
.sec-h p { margin: 12px 0 0; color: var(--faint); max-width: 54ch; font-size: 15px; }

/* ---------- deals ---------- */
.deals { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }

.deal {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .18s ease, transform .18s ease;
}
.deal:hover { border-color: var(--line-2); transform: translateY(-3px); }
.deal-pic { position: relative; }
.deal-pic img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.deal-price {
  position: absolute; top: 12px; inset-inline-end: 12px;
  background: var(--gold); color: #1A120A; padding: 7px 13px; border-radius: 999px;
  font: 400 17px/1 'Anton', sans-serif; letter-spacing: .02em;
}
.deal-in { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.deal-in h3 { font: 400 22px/1 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .03em; }
.deal-in ul { list-style: none; margin: 12px 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; flex: 1; align-content: flex-start; }
.deal-in li { font-size: 12px; color: var(--mute); background: var(--card-2); border: 1px solid var(--line); padding: 4px 9px; border-radius: 999px; }

/* ---------- menu tools ---------- */
.menu-sec { background: linear-gradient(180deg, var(--ink), var(--ink-2) 40%, var(--ink)); }

.tools { margin-bottom: 18px; }
.search { position: relative; display: flex; align-items: center; max-width: 440px; }
.search svg { position: absolute; inset-inline-start: 16px; width: 18px; height: 18px; fill: var(--faint); pointer-events: none; }
.search input {
  width: 100%; padding: 14px 44px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line); color: var(--cream);
  font: 500 15px 'Plus Jakarta Sans', sans-serif; outline: none;
}
.search input::placeholder { color: var(--faint); }
.search input:focus { border-color: var(--gold); }
#q-clear {
  position: absolute; inset-inline-end: 8px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--card-2); border: 1px solid var(--line); color: var(--mute);
  font-size: 19px; line-height: 1; cursor: pointer;
}

.chips {
  display: flex; gap: 9px; overflow-x: auto; padding-bottom: 6px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: 9px 16px; border-radius: 999px; cursor: pointer;
  background: var(--card); border: 1px solid var(--line); color: var(--mute);
  font: 600 13.5px/1 'Plus Jakarta Sans', sans-serif; white-space: nowrap;
}
.chip:hover { border-color: var(--line-2); color: var(--cream); }
.chip[aria-selected="true"] { background: var(--gold); border-color: var(--gold); color: #1A120A; }

/* ---------- menu list ---------- */
.cat { margin-top: clamp(34px, 5vw, 56px); scroll-margin-top: 150px; }
.cat-h { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.cat-h h3 { font: 400 clamp(22px, 3vw, 32px)/1 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .03em; }
.cat-h .cat-ar { font-family: 'Noto Kufi Arabic', sans-serif; font-size: 15px; color: var(--gold); }
.cat-h .cat-n { margin-inline-start: auto; font-size: 12.5px; color: var(--faint); }

.grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.dish {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 12px;
  transition: border-color .16s ease;
}
.dish:hover { border-color: var(--line-2); }

.dish-top { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 13px; align-items: center; }
.dish-pic { width: 76px; height: 76px; border-radius: 10px; object-fit: cover; background: var(--card-2); }

.dish-name { font-size: 15px; font-weight: 700; line-height: 1.25; min-width: 0; }
.dish-name .ar { display: block; font-family: 'Noto Kufi Arabic', sans-serif; font-size: 12.5px; font-weight: 400; color: var(--faint); margin-top: 3px; }
body.ar-on .dish-name { display: flex; flex-direction: column; }
body.ar-on .dish-name .en { color: var(--faint); font-weight: 500; font-size: 13px; order: 2; display: block; margin-top: 3px; }
body.ar-on .dish-name .ar { color: var(--cream); font-weight: 600; font-size: 15px; order: 1; margin-top: 0; }

/*
  One row per size. Half and Full each carry their own price and their own
  counter, so both prices stay on screen and neither has to be guessed at.
*/
.opts { display: flex; flex-direction: column; gap: 7px; }

.opt {
  display: grid; grid-template-columns: minmax(46px, auto) 1fr auto;
  align-items: center; gap: 10px;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 11px; padding: 7px 8px 7px 12px;
  transition: border-color .16s ease, background .16s ease;
}
.opt-solo { grid-template-columns: 1fr auto; }
.opt.on { border-color: var(--line-2); background: var(--card-2); }

.opt-l { font-size: 12.5px; font-weight: 700; color: var(--mute); letter-spacing: .02em; }
.opt.on .opt-l { color: var(--cream); }

.opt-p { display: flex; align-items: baseline; gap: 5px; }
.opt-p i { font-style: normal; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; color: var(--faint); }
.opt-p b { font: 400 19px/1 'Anton', sans-serif; color: var(--gold); letter-spacing: .02em; }

.opt-a { justify-self: end; }

.add {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 15px 8px 11px; border: 0; border-radius: 999px; cursor: pointer;
  background: linear-gradient(180deg, var(--ember-2), var(--ember)); color: #2A1104;
  font: 800 13px/1 'Plus Jakarta Sans', sans-serif;
  transition: filter .16s ease;
}
.add svg { width: 15px; height: 15px; fill: currentColor; }
.add:hover { filter: brightness(1.08); }
.add:active { transform: translateY(1px); }

.step {
  display: inline-flex; align-items: center; gap: 2px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 3px;
}
.step button {
  width: 30px; height: 30px; border-radius: 50%; border: 0; cursor: pointer;
  background: transparent; color: var(--mute);
  font-size: 17px; line-height: 1; display: grid; place-items: center;
  transition: background .14s ease, color .14s ease;
}
.step button:hover { background: var(--line); color: var(--cream); }
.step .step-n { min-width: 26px; text-align: center; font: 800 14px/1 'Plus Jakarta Sans', sans-serif; color: var(--cream); }
.step-sm { background: var(--ink-2); }
.step-sm button { width: 26px; height: 26px; font-size: 15px; }
.step-sm .step-n { min-width: 22px; font-size: 13px; }

.deal-act { margin-top: auto; }
.deal-act .add, .deal-act .step { width: 100%; justify-content: center; }
.deal-act .add { padding-block: 12px; font-size: 14px; }

/* ---------- empty ---------- */
.empty { margin: 60px 0; text-align: center; color: var(--faint); }
.empty b { color: var(--gold); }

/* ---------- visit ---------- */
/* ----------------------------------------------------------------- reviews
 * The score panel is pinned on the left and the quotes run as a scroll rail
 * beside it, so eight short reviews read as a queue of people rather than as
 * eight identical boxes stacked down the page.
 */
.revs { border-top: 1px solid var(--line); }
.revs-in { display: grid; gap: clamp(20px, 3vw, 34px); grid-template-columns: minmax(230px, 280px) minmax(0, 1fr); align-items: start; }

.score {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 22px; text-align: center;
}
.score-n { display: block; font: 400 clamp(46px, 6vw, 64px)/1 'Anton', sans-serif; color: var(--gold); }
.stars { display: flex; justify-content: center; gap: 3px; margin: 10px 0 8px; }
.stars svg { width: 18px; height: 18px; fill: var(--gold); }
.score-c { margin: 0 0 16px; color: var(--mute); font-size: 14px; }
.score .btn { width: 100%; justify-content: center; }
.score-note { margin: 14px 0 0; color: var(--faint); font-size: 11.5px; line-height: 1.5; }

.rev-rail {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
}
.rev {
  margin: 0; display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 18px 16px;
}
.rev blockquote { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--cream); }
.rev blockquote::before { content: '\201C'; color: var(--ember); font: 400 30px/0 'Anton', sans-serif; margin-inline-end: 4px; vertical-align: -6px; }
.rev figcaption { display: flex; align-items: center; gap: 10px; }
.rev-av {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  background: var(--line-2); color: var(--cream);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.rev-n { font-size: 13px; color: var(--mute); font-weight: 600; }

@media (max-width: 760px) {
  .revs-in { grid-template-columns: minmax(0, 1fr); }
  .score { display: grid; grid-template-columns: auto 1fr; gap: 2px 18px; text-align: start; align-items: center; }
  .score-n { grid-row: span 3; }
  .stars { justify-content: flex-start; margin: 0; }
  .score-c { margin: 0; }
  .score .btn { grid-column: 2; width: auto; justify-self: start; margin-top: 6px; }
  .score-note { grid-column: 1 / -1; }
}

.visit { background: var(--ink-2); border-top: 1px solid var(--line); }
.visit-in { display: grid; gap: clamp(28px, 5vw, 56px); grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); align-items: center; }
@media (max-width: 860px) { .visit-in { grid-template-columns: 1fr; } }
.visit h2 { font: 400 clamp(28px, 4.4vw, 48px)/1 'Anton', sans-serif; text-transform: uppercase; }

.facts { margin: 28px 0 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.facts > div { display: flex; flex-wrap: wrap; gap: 4px 16px; justify-content: space-between; background: var(--card); padding: 13px 17px; }
.facts dt { font-size: 13px; color: var(--faint); margin: 0; }
.facts dd { margin: 0; font-size: 14.5px; font-weight: 600; }
.facts a { text-decoration: none; }
.facts a:hover { color: var(--gold); }

.visit-shot img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding-block: 32px calc(32px + env(safe-area-inset-bottom, 0px)); }
.foot-in { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; color: var(--faint); font-size: 13px; }
.foot-id { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-logo { height: 84px; width: auto; flex: none; opacity: .95; }
@media (max-width: 620px) { .foot-logo { height: 66px; } }
.foot p { margin: 0; }
.foot-note { font-size: 12px; opacity: .8; }

/* ---------- order tray ---------- */
.tray {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 50;
  background: rgba(20, 16, 13, .97); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-2);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -16px 40px rgba(0, 0, 0, .5);
}
.tray-head {
  display: flex; align-items: center; gap: 12px; width: min(100% - 32px, var(--wrap));
  margin-inline: auto; padding: 14px 0; background: none; border: 0; cursor: pointer;
  color: var(--cream); font: 700 15px 'Plus Jakarta Sans', sans-serif;
}
.tray-n {
  min-width: 27px; height: 27px; padding-inline: 7px; border-radius: 999px;
  background: var(--ember); color: #2A1104; display: grid; place-items: center;
  font: 400 14px/1 'Anton', sans-serif;
}
.tray-label { margin-inline-end: auto; }
.tray-total { font: 400 19px/1 'Anton', sans-serif; color: var(--gold); }
.tray-caret { width: 20px; height: 20px; fill: var(--faint); transition: transform .2s ease; }
.tray-head[aria-expanded="true"] .tray-caret { transform: rotate(180deg); }

.tray-body {
  width: min(100% - 32px, var(--wrap)); margin-inline: auto;
  max-height: min(42vh, 340px); overflow-y: auto;
  border-top: 1px solid var(--line); padding-block: 10px;
}
.row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.row:last-child { border-bottom: 0; }
.row-t { min-width: 0; flex: 1; }
.row-t b { display: block; font-size: 14px; font-weight: 700; }
.row-t span { font-size: 12px; color: var(--faint); }
.row-p { font: 400 15px/1 'Anton', sans-serif; color: var(--gold); }

.tray-foot {
  display: flex; gap: 10px; align-items: center;
  width: min(100% - 32px, var(--wrap)); margin-inline: auto; padding-bottom: 14px;
}
.tray-send { flex: 1; }
@media (max-width: 460px) { .tray-send { font-size: 14px; padding-inline: 14px; } }


/* ------------------------------------------------------------------ arabic
 * The header toggle is a real language switch, not a decoration: it sets
 * dir="rtl" on the document and swaps every string on the page. Anton, the
 * display face, has no Arabic glyphs, so the display roles fall back to Noto
 * Kufi Arabic — and Kufi needs its own line-height and no letter-spacing or
 * uppercasing, which are Latin habits that make Arabic unreadable.
 */
body.ar-on {
  font-family: 'Noto Kufi Arabic', 'Plus Jakarta Sans', system-ui, sans-serif;
}
body.ar-on :is(h1, h2, h3, .hero-facts b, .score-n, .eyebrow, .chip, .cat-n, .deal-price, .tray-total) {
  font-family: 'Noto Kufi Arabic', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}
body.ar-on .hero h1 { font-size: clamp(34px, 6.4vw, 68px); line-height: 1.24; }
body.ar-on .sec-h h2,
body.ar-on .visit h2,
body.ar-on .pukht h2 { font-size: clamp(26px, 3.8vw, 42px); line-height: 1.3; }
body.ar-on .hero-facts b { font-size: 22px; line-height: 1.4; }
body.ar-on .score-n { font-size: clamp(38px, 5vw, 54px); line-height: 1.2; }

/* Latin names keep the Latin face even in Arabic mode. */
body.ar-on :is(.dish-name .en, .rev-n, .foot-note, .opt-p b, .row-p, .tray-n, .lang) {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* The one row that is laid out with a physical direction. */
body.ar-on .rev blockquote::before { content: '\201D'; }

/* The score panel's mobile grid puts the big number first; in RTL that is the
 * right-hand column, which the logical grid already handles. */
