/* ============================================================
   ELVIN'S STREET FOOD — Monochrome / Lebanese heritage
   Black & white redesign · 8 July 2026
   Flag colour appears ONLY in the opening intro.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #101010;          /* near-black — text + solid buttons */
  --ink-soft: #333130;
  --muted: #6b6864;        /* >=4.5:1 on white + soft */
  --base: #ffffff;         /* page background */
  --soft: #f4f2ef;         /* tinted sections / hero panel */
  --blush: #ece9e4;        /* footer */
  --line: #e2ded8;         /* hairlines */
  --paper: #f7f5f2;        /* washi-style hero panel */
  --accent: #a34d29;       /* warm spice terracotta */
  --accent-strong: #863d20;
  --accent-soft: #efe0d5;

  /* Lebanese flag — intro only */
  --flag-red: #E70013;
  --flag-green: #007A3D;
  --error: #9a2a22;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Karla', system-ui, sans-serif;
  --font-ar-display: 'Aref Ruqaa', 'Amiri', serif;
  --font-ar-body: 'Amiri', 'Aref Ruqaa', serif;

  --fs--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
  --fs-0: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --fs-1: clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
  --fs-2: clamp(1.45rem, 1.3rem + 0.75vw, 1.9rem);
  --fs-3: clamp(1.9rem, 1.6rem + 1.5vw, 2.7rem);
  --fs-4: clamp(2.3rem, 1.9rem + 2.2vw, 3.6rem);

  --s-1: 0.5rem; --s0: 0.75rem; --s1: 1rem; --s2: 1.5rem;
  --s3: 2.25rem; --s4: 3.5rem; --s5: 6rem;

  --radius: 2px;
  --shadow: 0 6px 30px rgb(16 16 16 / 0.10);
  --maxw: 72rem;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
/* Photography shown in full natural colour */
main img, .site-footer img { filter: none; }
a { color: var(--ink); text-underline-offset: 3px; }
a:hover { color: var(--muted); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; text-wrap: balance; }
h1 { font-size: var(--fs-3); }
h2 { font-size: var(--fs-2); }
h3 { font-size: var(--fs-1); }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(3rem, 8vw, 6rem); }
.section.tint { background-color: var(--soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='p2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p2)' opacity='0.35'/%3E%3C/svg%3E"); background-size: 260px 260px; background-blend-mode: multiply; }
.eyebrow {
  font-size: var(--fs--1); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.28em; color: var(--accent); margin-bottom: var(--s1);
}
.lede { font-size: var(--fs-1); color: var(--ink-soft); max-width: 46ch; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--ink); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 var(--radius) var(--radius);
}
.skip-link:focus { left: 1rem; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 0.8rem 1.6rem; border-radius: var(--radius);
  font-weight: 700; font-size: var(--fs-0); text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  min-height: 44px; letter-spacing: 0.02em;
}
.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: #000; color: #fff; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgb(255 255 255 / 0.92); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s1) var(--s2); flex-wrap: wrap; padding-block: 0.85rem;
}
.wordmark {
  font-family: var(--font-body); font-weight: 400; font-size: 1.15rem;
  letter-spacing: 0.34em; text-decoration: none; color: var(--ink); white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: 0.5rem;
}
.wordmark small { display: block; font-size: 0.52rem; letter-spacing: 0.42em; color: var(--muted); margin-top: 1px; }
.wordmark .ar { font-family: var(--font-ar-display); font-size: 1.15rem; letter-spacing: 0; color: var(--ink); }
.site-nav { display: flex; align-items: center; gap: clamp(0.75rem, 2.5vw, 1.75rem); flex-wrap: wrap; }
.site-nav a { text-decoration: none; color: var(--ink-soft); font-weight: 700; font-size: var(--fs--1); letter-spacing: 0.06em; text-transform: uppercase; padding: 0.5rem 0; }
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--ink); box-shadow: inset 0 -2px 0 var(--accent); }
.site-nav .btn { padding: 0.55rem 1.1rem; }
.site-nav .btn.btn-solid, .site-nav .btn.btn-solid:hover { color: #fff; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: var(--fs--1); color: var(--muted); padding-top: var(--s2); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.crumbs li + li::before { content: "\203A"; margin-right: 0.4rem; color: var(--line); }
.crumbs a { color: var(--muted); }

/* ============================================================
   HOME HERO — reference-style split, colour dishes + Arabic
   ============================================================ */
.hero-home {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  height: 100vh; height: 100svh;
  background: #000;
  overflow: hidden;
}
@media (min-width: 62rem) {
  .hero-home { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
}

/* Left — the floating colour dishes on black */
.hero-visual {
  position: relative;
  background: #000;
  min-height: 40svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: clamp(1.5rem, 4vh, 3rem) clamp(1rem, 3vw, 2.5rem) clamp(4.5rem, 10vh, 6.5rem);
}
.hero-visual .hero-dishes {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; object-position: center;
  filter: none;             /* colour dishes — the one spot of colour on the B&W site */
  animation: dishFloat 7s ease-in-out infinite;
}
.hero-visual .steam {
  position: absolute; bottom: 14%; width: clamp(90px, 10vw, 160px); height: clamp(200px, 34vh, 400px);
  background: radial-gradient(closest-side, rgba(255,255,255,0.11), rgba(255,255,255,0) 72%);
  filter: blur(15px); opacity: 0; pointer-events: none; z-index: 1; mix-blend-mode: screen;
}
.hero-visual .steam.s1 { left: 24%; animation: steam 9s ease-in-out 0s infinite; }
.hero-visual .steam.s2 { left: 45%; animation: steam 11s ease-in-out 2.4s infinite; }
.hero-visual .steam.s3 { left: 63%; animation: steam 10s ease-in-out 4.8s infinite; }
@keyframes dishFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes steam { 0% { transform: translateY(24px) scale(0.9); opacity: 0; } 30% { opacity: 0.55; } 65% { opacity: 0.32; } 100% { transform: translateY(-96px) scale(1.28); opacity: 0; } }

/* Right — washi-style light panel with Arabic heritage */
.hero-panel {
  position: relative;
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 260px 260px; background-blend-mode: multiply;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4.5rem);
  padding-inline-end: clamp(3rem, 7vw, 6rem);   /* room for vertical column */
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; text-align: left; gap: var(--s0);
  min-height: 0;
}
.hero-panel .eyebrow { margin-bottom: 0; }
.hero-ar {
  font-family: var(--font-ar-display); font-weight: 700;
  font-size: clamp(3rem, 3.5vw + 2rem, 5.4rem);
  line-height: 1; color: var(--ink); direction: rtl; text-align: left;
  margin: 0.1em 0 0.3em;
}
.hero-word {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.3rem);
  letter-spacing: 0.02em; color: var(--ink); line-height: 1; margin: 0;
}
/* Hero wordmark is the page H1: keep it near-black even under theme-dark */
body.theme-dark .hero-word { color: var(--ink); }
.hero-desc { color: var(--ink-soft); max-width: 42ch; font-size: var(--fs-0); }

/* Vertical Arabic column down the panel's right edge (like the reference) */
.hero-vcol {
  position: absolute; top: clamp(1.5rem, 5vw, 3rem); right: clamp(0.6rem, 2vw, 1.4rem);
  writing-mode: vertical-rl; text-orientation: mixed; direction: rtl;
  font-family: var(--font-ar-body); font-size: clamp(1rem, 0.9rem + 0.5vw, 1.35rem);
  letter-spacing: 0.04em; color: var(--muted); line-height: 1.9;
  max-height: 74%; overflow: hidden;
}

/* Centre emblem straddling the seam */
.hero-emblem {
  position: absolute; z-index: 3; bottom: clamp(3.2rem, 8vh, 5rem);
  left: 50%; transform: translateX(-50%);
  width: clamp(96px, 12vw, 138px); height: clamp(96px, 12vw, 138px);
  border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1.5px solid var(--ink);
  box-shadow: 0 8px 26px rgb(0 0 0 / 0.35);
}
.hero-emblem svg { width: 74%; height: 74%; }

/* Bottom nav bar spanning the hero */
.hero-foot {
  position: absolute; z-index: 4; left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.hero-foot .side { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 1.75rem); padding: clamp(1.1rem, 3vh, 1.7rem) clamp(1.25rem, 4vw, 2.5rem); }
.hero-foot .side.l { justify-content: flex-end; padding-right: clamp(3.5rem, 7vw, 5.5rem); }
.hero-foot .side.r { justify-content: flex-start; padding-left: clamp(3.5rem, 7vw, 5.5rem); }
.hero-foot a { text-decoration: none; }
.hero-foot .side.l a { color: #fff; }
.hero-foot .side.l a:hover { color: var(--line); }
.hero-foot .side.r a { color: var(--ink); }
.hero-foot .side.r a:hover { color: var(--muted); }
@media (max-width: 61.99rem) {
  /* On mobile the fixed bottom action bar handles nav, so hide the hero foot */
  .hero-foot { display: none; }
  .hero-panel { padding-bottom: 4.5rem; }
  .hero-emblem { display: none; }
}

/* ============================================================
   OPENING INTRO — instant Lebanese flag then scroll reveal
   (critical paint styles are inlined in <head>; these enhance)
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 1000;
  overflow: hidden; background: transparent;
  touch-action: none; display: none;
}
html.intro-on .intro { display: block; }
.intro-curtain {
  position: absolute; top: 0; height: 100%; width: 50.5%;
  will-change: transform; transform: translate3d(0,0,0); backface-visibility: hidden;
  background-repeat: no-repeat;
  /* Lebanese flag bands: red / white / red (1 : 2 : 1) */
  background-image: linear-gradient(
    to bottom,
    var(--flag-red) 0, var(--flag-red) 25%,
    #fff 25%, #fff 75%,
    var(--flag-red) 75%, var(--flag-red) 100%);
}
.intro-curtain.left  { left: 0; }
.intro-curtain.right { right: 0; }
.intro-center {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center; pointer-events: none;
}
.intro-cedar {
  width: min(24vw, 132px); height: auto;
  will-change: opacity, transform; transform: translateZ(0);
}
.intro-sig {
  position: absolute; width: min(72vw, 42rem); opacity: 0;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path, opacity;
}
.intro-sig .sig-text { font-family: 'Sacramento', cursive; font-size: 150px; fill: var(--ink); }
.intro-hint {
  position: absolute; z-index: 3; bottom: clamp(1.5rem, 5vh, 3rem);
  left: 50%; transform: translateX(-50%);
  font-size: var(--fs--1); font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink); opacity: 0.7; animation: hintPulse 1.8s ease-in-out infinite; cursor: pointer;
}
.intro-skip {
  position: absolute; z-index: 4; top: clamp(1rem, 3vh, 1.5rem); right: clamp(1rem, 4vw, 2rem);
  background: none; border: 0; font: inherit; font-size: var(--fs--1); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); opacity: 0.6; cursor: pointer;
}
.intro-skip:hover { opacity: 1; }
@keyframes hintPulse { 0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.5; } 50% { transform: translateX(-50%) translateY(4px); opacity: 0.85; } }
html.intro-on, html.intro-on body { overflow: hidden; height: 100%; }
.intro.done { display: none; }

/* Signature as static sign-off */
.signoff { text-align: center; padding-block: var(--s3); }
.signoff .sig-static { width: 9.5rem; margin: 0 auto var(--s0); opacity: 0.9; }
.signoff .sig-static path { stroke: var(--ink) !important; }
.signoff .sig-static circle { fill: var(--ink) !important; }
.signoff p { font-size: var(--fs--1); color: var(--muted); }
.signoff .ar { font-family: var(--font-ar-body); font-size: var(--fs-0); color: var(--ink-soft); display: block; margin-top: 0.35rem; direction: rtl; }

/* ---------- Page hero (inner pages) ---------- */
.hero-page { background: var(--soft); padding-block: clamp(2.5rem, 6vw, 4.5rem); position: relative; }
.hero-page .lede { margin-top: var(--s1); }
.hero-page .ar-mark {
  font-family: var(--font-ar-display); color: var(--line);
  font-size: clamp(2.5rem, 6vw, 4.5rem); position: absolute; top: 1rem; right: clamp(1rem,4vw,2rem);
  direction: rtl; pointer-events: none; user-select: none;
}

/* ---------- Cards & grids ---------- */
.grid-3 { display: grid; gap: var(--s2); grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid-2 { display: grid; gap: var(--s2); grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s2); transition: box-shadow 200ms ease, transform 200ms ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--accent); }
.card h3 a { color: var(--ink); text-decoration: none; }
.card h3 a:hover { color: var(--muted); }
.card .meta { color: var(--muted); font-size: var(--fs--1); margin-top: var(--s0); }
.card img { border-radius: var(--radius); margin-bottom: var(--s1); aspect-ratio: 3/2; object-fit: cover; }

.badge-ta {
  display: inline-block; border: 1px solid var(--ink); border-radius: 999px;
  padding: 0.25rem 0.8rem; font-size: var(--fs--1); font-weight: 700; color: var(--ink);
  background: #fff; letter-spacing: 0.02em;
}
.proof-strip { display: flex; flex-wrap: wrap; gap: var(--s1) var(--s3); align-items: center; padding-block: var(--s2); border-block: 1px solid var(--line); }
.proof-strip .item { font-size: var(--fs--1); color: var(--ink-soft); }
.proof-strip .item b { color: var(--ink); font-size: var(--fs-0); display: block; }

/* ---------- Menu ---------- */
.menu-nav { display: flex; flex-wrap: wrap; gap: var(--s0); margin-block: var(--s2); }
.menu-nav a { font-size: var(--fs--1); font-weight: 700; text-decoration: none; padding: 0.45rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: #fff; }
.menu-nav a:hover { border-color: var(--accent); color: var(--accent); }

.chips { display: flex; flex-wrap: wrap; gap: var(--s0); align-items: center; }
.chips .chip {
  font: inherit; font-size: var(--fs--1); font-weight: 700; cursor: pointer;
  padding: 0.45rem 1rem; border-radius: 999px; border: 1.5px solid var(--ink-soft);
  background: #fff; color: var(--ink-soft); min-height: 34px;
}
.chips .chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip-note { font-size: var(--fs--1); color: var(--muted); }

.menu-section { padding-block: var(--s3); border-bottom: 1px solid var(--line); }
.menu-section:last-of-type { border-bottom: 0; }
.menu-section h2 { display: flex; align-items: baseline; gap: var(--s1); }
.menu-section .sec-note { font-size: var(--fs--1); color: var(--muted); font-family: var(--font-body); font-weight: 400; }
.dishes { display: grid; gap: var(--s1) var(--s3); grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr)); margin-top: var(--s2); }
.dish { display: grid; grid-template-columns: 1fr auto; gap: 0.15rem var(--s1); padding-block: var(--s0); border-bottom: 1px dashed var(--line); }
.dish .nm { font-weight: 700; }
.dish .price { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--ink); }
.dish .desc { grid-column: 1 / -1; color: var(--muted); font-size: var(--fs--1); max-width: 52ch; }
.dish[hidden] { display: none; }
.tags { display: inline-flex; gap: 0.3rem; margin-left: 0.4rem; vertical-align: 2px; }
.tag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.1rem 0.42rem;
  border: 1px solid var(--ink-soft); border-radius: 3px; color: var(--ink-soft); background: var(--soft);
}
.legend { font-size: var(--fs--1); color: var(--muted); margin-top: var(--s1); }

/* ---------- Location pages ---------- */
.loc-grid { display: grid; gap: var(--s3); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 62rem) { .loc-grid { grid-template-columns: 1.2fr 0.8fr; } }
.info-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s2); }
.info-panel h3 { margin-bottom: var(--s1); }
.info-panel address { font-style: normal; line-height: 1.7; }
.hours { width: 100%; border-collapse: collapse; margin-top: var(--s1); }
.hours caption { text-align: left; font-weight: 700; padding-bottom: var(--s0); }
.hours th, .hours td { text-align: left; padding: 0.35rem 0; font-size: var(--fs--1); border-bottom: 1px solid var(--soft); }
.hours th { font-weight: 700; color: var(--ink-soft); padding-right: var(--s2); }
.map-embed { width: 100%; aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: var(--radius); }
.note { font-size: var(--fs--1); color: var(--muted); }

/* ---------- Booking ---------- */
.book-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2.25rem); }
.demo-note {
  background: var(--soft); border: 1px solid var(--ink); border-radius: var(--radius);
  padding: var(--s1) var(--s2); font-size: var(--fs--1); color: var(--ink); margin-bottom: var(--s2);
}
.demo-note b { color: var(--ink); }
.form-grid { display: grid; gap: var(--s2); grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.form-field { display: grid; gap: 0.35rem; }
.form-field label { font-weight: 700; font-size: var(--fs--1); }
.form-field input, .form-field select {
  font: inherit; padding: 0.7rem 0.85rem; border: 1.5px solid var(--ink-soft);
  border-radius: var(--radius); background: #fff; color: var(--ink); min-height: 44px; width: 100%;
}
.form-field input:focus, .form-field select:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
.form-field .hint { font-size: var(--fs--1); color: var(--muted); }
.field-error { color: var(--error); font-size: var(--fs--1); font-weight: 700; }
.form-actions { margin-top: var(--s2); display: flex; gap: var(--s1); flex-wrap: wrap; align-items: center; }
.confirm-panel { text-align: center; padding: var(--s3) var(--s2); }
.confirm-panel .sig-static { width: 11rem; margin: 0 auto var(--s2); }
.confirm-panel .sig-static path { stroke: var(--ink) !important; }
.confirm-panel dl { display: grid; grid-template-columns: auto auto; gap: 0.4rem 1.2rem; justify-content: center; margin-block: var(--s2); text-align: left; }
.confirm-panel dt { font-weight: 700; }
[hidden] { display: none !important; }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); padding-block: var(--s1); }
.faq summary { font-weight: 700; cursor: pointer; padding-block: 0.35rem; }
.faq summary:hover { color: var(--muted); }
.faq p { padding-block: var(--s0); color: var(--ink-soft); max-width: 65ch; }

/* ---------- Reviews ---------- */
.reviews blockquote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s2); font-size: var(--fs-0); }
.reviews blockquote p { font-family: var(--font-display); font-size: var(--fs-1); line-height: 1.35; }
.reviews cite { display: block; font-style: normal; color: var(--muted); font-size: var(--fs--1); margin-top: var(--s1); }

/* ---------- Sticky mobile action bar ---------- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--ink); padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid #2a2a2a;
}
.sticky-bar a {
  display: grid; place-items: center; gap: 0.1rem; padding: 0.55rem 0.25rem 0.6rem;
  color: #fff; text-decoration: none; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  min-height: 52px;
}
.sticky-bar a:hover, .sticky-bar a:focus-visible { background: #2a2a2a; color: #fff; }
.sticky-bar svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.8; }
@media (min-width: 48rem) { .sticky-bar { display: none; } }
@media (max-width: 47.99rem) { body { padding-bottom: 72px; } }

/* ---------- Footer ---------- */
.flag-keyline { display: grid; grid-template-columns: 1fr 2fr 1fr; height: 3px; }
.flag-keyline span:nth-child(1), .flag-keyline span:nth-child(3) { background: var(--ink); }
.flag-keyline span:nth-child(2) { background: var(--accent); }
.site-footer { background: var(--blush); border-top: 1px solid var(--line); }
.site-footer .cols { display: grid; gap: var(--s3); grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); padding-block: var(--s4) var(--s3); }
.site-footer h3 { font-size: var(--fs-0); font-family: var(--font-body); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--s1); }
.site-footer h3 .ar { font-family: var(--font-ar-body); font-weight: 400; letter-spacing: 0; color: var(--muted); font-size: 0.85rem; margin-left: 0.4rem; }
.site-footer address { font-style: normal; font-size: var(--fs--1); color: var(--ink-soft); line-height: 1.7; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--ink); }
.site-footer .legal { padding-block: var(--s2); border-top: 1px solid var(--line); font-size: var(--fs--1); color: var(--muted); display: flex; flex-wrap: wrap; gap: var(--s1) var(--s3); justify-content: space-between; }

/* ---------- Utility ---------- */
.ar { font-family: var(--font-ar-body); }
.site-footer .legal .ar { color: var(--muted); margin-left: 0.3rem; direction: rtl; }
.center { text-align: center; }
.mt-1 { margin-top: var(--s1); } .mt-2 { margin-top: var(--s2); } .mt-3 { margin-top: var(--s3); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Hero ambient: cedar & olive leaves drifting down (Lebanese heritage) */
.hero-leaves { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero-leaves .leaf { position: absolute; top: -10%; width: var(--s, 18px); height: var(--s, 18px);
  will-change: transform; animation: leafFall var(--fall, 16s) linear var(--d, 0s) infinite; }
.hero-leaves .leaf > i { display: block; width: 100%; height: 100%; opacity: var(--o, 0.16);
  background-position: center; background-repeat: no-repeat; background-size: contain;
  will-change: transform; animation: leafSway var(--sway, 5s) ease-in-out infinite alternate; }
.hero-leaves .leaf.a > i { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1C5 7 5 17 12 23C19 17 19 7 12 1Z' fill='%234a7a55'/%3E%3Cpath d='M12 3V21' stroke='%232c5238' stroke-width='0.9'/%3E%3C/svg%3E"); }
.hero-leaves .leaf.b > i { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg stroke='%234a7a55' stroke-width='1.1' stroke-linecap='round' fill='none'%3E%3Cline x1='12' y1='2' x2='12' y2='22'/%3E%3Cline x1='12' y1='6' x2='6' y2='9'/%3E%3Cline x1='12' y1='6' x2='18' y2='9'/%3E%3Cline x1='12' y1='11' x2='5' y2='14'/%3E%3Cline x1='12' y1='11' x2='19' y2='14'/%3E%3Cline x1='12' y1='16' x2='7' y2='19'/%3E%3Cline x1='12' y1='16' x2='17' y2='19'/%3E%3C/g%3E%3C/svg%3E"); }
@keyframes leafFall { 0% { transform: translate3d(0,-12vh,0); } 100% { transform: translate3d(0,114vh,0); } }
@keyframes leafSway { 0% { transform: translateX(-14px) rotate(-28deg); } 100% { transform: translateX(14px) rotate(34deg); } }

/* Homepage: top nav hidden until the visitor scrolls past the hero */
body.home-hero .site-header { position: fixed; top: 0; left: 0; right: 0; transform: translateY(-110%); transition: transform .35s ease; will-change: transform; }
body.home-hero.nav-shown .site-header { transform: translateY(0); }

/* Very faint sketched olive tree filling the hero centre */
.hero-olive { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; pointer-events: none; }
.hero-olive svg { width: min(84vw, 920px); height: auto; color: #8a7b62; opacity: 0.12; }

/* Warm accent on content links */
.hero-desc a, .section p a, .faq p a, .reviews cite a, .proof-strip a { color: var(--accent); }
.hero-desc a:hover, .section p a:hover, .faq p a:hover, .reviews cite a:hover { color: var(--accent-strong); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-delay: 0ms !important; transition-duration: 0.01ms !important; }
  .intro { display: none !important; }
  .hero-leaves { display: none !important; }
  html.intro-on, html.intro-on body { overflow: auto !important; height: auto !important; }
  .intro-sig path { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
}

/* ============================================================
   LATEST NEWS — full-bleed dark section, draggable carousel
   ============================================================ */
.news { background: #000; color: #f4f2ef; padding-block: clamp(3.5rem, 8vw, 6.5rem); overflow: hidden; }
.news-inner { width: 100%; max-width: 100rem; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 4.5rem); }
.news-head { margin-bottom: clamp(1.5rem, 4vw, 3rem); text-align: center; }
.news-head .eyebrow { color: var(--accent); }
.news-head h2 { color: #fff; font-size: clamp(2rem, 1.3rem + 2.6vw, 3.2rem); }
.news-grid { display: block; position: relative; }

/* Left — vertical headline rail */
.news-rail { position: relative; overflow: hidden; min-height: 22rem; }
.news-rail::before, .news-rail::after { content: ""; position: absolute; left: 0; right: 0; height: 5rem; z-index: 4; pointer-events: none; }
.news-rail::before { top: 0; background: linear-gradient(to bottom, #000, transparent); }
.news-rail::after { bottom: 0; background: linear-gradient(to top, #000, transparent); }
.news-rail-track { position: absolute; inset: 0; }
.news-chip {
  position: absolute; top: 50%; margin-top: -27px; left: 0;
  height: 54px; display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0 1.2rem; border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.16);
  background: transparent; color: rgba(244,242,239,0.62); cursor: pointer; font: inherit;
  font-weight: 700; font-size: var(--fs--1); letter-spacing: 0.03em; text-transform: uppercase;
  white-space: nowrap; max-width: 100%;
  transition: background .45s ease, color .45s ease, border-color .45s ease, box-shadow .45s ease;
  will-change: transform, opacity;
}
.news-chip .ico { display: grid; place-items: center; color: rgba(244,242,239,0.5); flex: none; transition: color .45s ease; }
.news-chip .ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.news-chip span { overflow: hidden; text-overflow: ellipsis; }
.news-chip:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.news-chip.is-active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 10px 26px rgb(163 77 41 / 0.4); }
.news-chip.is-active .ico { color: #fff; }

/* Right — draggable card carousel */
.news-stage { position: relative; display: grid; place-items: center; overflow: visible; min-height: 23rem; }
.news-stage.is-drag { cursor: grabbing; }
.news-stage-inner { position: relative; width: min(88%, 470px); aspect-ratio: 4 / 5; margin-inline: auto; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.news-card {
  position: absolute; inset: 0; border-radius: clamp(1rem, 2vw, 1.6rem); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1); background: #1c1a18; box-shadow: 0 28px 60px rgb(0 0 0 / 0.55);
  transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .6s ease, filter .6s ease;
  will-change: transform, opacity;
}
.news-card img { width: 100%; height: 100%; object-fit: cover; display: block; -webkit-user-drag: none; user-select: none; pointer-events: none; }
.news-card[data-status="active"] { transform: translateX(0) scale(1) rotate(0deg); opacity: 1; z-index: 3; }
.news-card[data-status="active"] img { filter: none; }
.news-card[data-status="prev"] { transform: translateX(-52%) scale(.84) rotate(-4deg); opacity: .5; z-index: 2; }
.news-card[data-status="next"] { transform: translateX(52%) scale(.84) rotate(4deg); opacity: .5; z-index: 2; }
.news-card[data-status="prev"] img, .news-card[data-status="next"] img { filter: grayscale(1) brightness(.7); }
.news-card[data-status="hidden"] { transform: scale(.7); opacity: 0; z-index: 1; pointer-events: none; }
.news-card[data-status="hidden"] img { filter: grayscale(1); }
.news-cap { position: absolute; inset-inline: 0; bottom: 0; padding: 1.4rem 1.35rem 1.45rem; background: #141210; color: #fff; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .5s ease .12s, transform .5s ease .12s; }
.news-card[data-status="active"] .news-cap { opacity: 1; transform: none; }
.news-tag {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); z-index: 6; margin: 0;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 0.72rem 1.7rem; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 10px 24px rgb(0 0 0 / 0.45);
}
.news-cap p { font-family: var(--font-display); font-size: var(--fs-1); line-height: 1.25; color: #fff; }
@media (max-width: 61.99rem) { .news-stage-inner { width: min(82%, 340px); } }

@media (prefers-reduced-motion: reduce) { .news-card, .news-chip, .news-stage-inner { transition: none !important; } }

/* ============================================================
   FAVOURITES — floating dishes, continues the dark news band
   ============================================================ */
.menu-fav { background: #000; color: #f4f2ef; padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(4rem, 9vw, 7rem); }
.menu-fav-inner { max-width: 80rem; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.mf-head { text-align: center; margin-bottom: clamp(2.25rem, 6vw, 4rem); }
.mf-head .eyebrow { color: var(--accent); }
.mf-head h2 { color: #fff; }
.mf-sub { color: rgba(244,242,239,0.6); max-width: 46ch; margin: 0.8rem auto 0; font-size: var(--fs-0); }
.mf-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem); align-items: start; }
.mf-item { text-align: center; }
.mf-item:nth-child(even) { margin-top: clamp(1.25rem, 4vw, 3.25rem); }
.mf-plate { position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; margin-bottom: 1.1rem; }
.mf-plate::after { content: ""; position: absolute; left: 50%; bottom: 6%; width: 62%; height: 12%; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.6), rgba(0,0,0,0) 70%); filter: blur(7px); z-index: 0; }
.mf-plate img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0,0,0,0.55)); animation: mfFloat 7s ease-in-out infinite; will-change: transform; }
.mf-item:nth-child(2) .mf-plate img { animation-delay: -1.6s; }
.mf-item:nth-child(3) .mf-plate img { animation-delay: -3.2s; }
.mf-item:nth-child(4) .mf-plate img { animation-delay: -4.8s; }
@keyframes mfFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.mf-item h3 { font-family: var(--font-display); color: #fff; font-size: var(--fs-1); margin-bottom: 0.4rem; }
.mf-item p { color: rgba(244,242,239,0.62); font-size: var(--fs--1); max-width: 28ch; margin-inline: auto; line-height: 1.5; }
.mf-cta { text-align: center; margin-top: clamp(2.5rem, 6vw, 4rem); }
.mf-btn { display: inline-block; background: var(--accent); color: #fff; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; font-size: var(--fs--1); padding: 0.95rem 1.9rem; border-radius: 999px; text-decoration: none;
  box-shadow: 0 14px 30px rgb(163 77 41 / 0.4); transition: background .2s ease, transform .2s ease; }
.mf-btn:hover { background: var(--accent-strong); color: #fff; transform: translateY(-2px); }
@media (max-width: 62rem) { .mf-grid { grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem,4vw,2.5rem) 1.5rem; }
  .mf-item:nth-child(even) { margin-top: 0; } .mf-item:nth-child(2), .mf-item:nth-child(4) { margin-top: clamp(1.5rem,6vw,3rem); } }
@media (max-width: 30rem) { .mf-grid { grid-template-columns: 1fr; max-width: 20rem; margin-inline: auto; }
  .mf-item:nth-child(n) { margin-top: 0; } }
@media (prefers-reduced-motion: reduce) { .mf-plate img { animation: none !important; } }

/* ============================================================
   REVIEWS — pinned dark panel, orange lamp + 3 review marquees
   ============================================================ */
.reviews-lamp { background: #000; }
.rl-pin { height: 320vh; }
.rl-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; background: #000; color: #f4f2ef;
  display: flex; flex-direction: column; --lp: 0; --sp: 0; }

/* the lamp: an orange light that widens + brightens as you scroll */
.lamp { position: absolute; inset: 0 0 auto 0; height: 60vh; display: block; pointer-events: none; z-index: 1; overflow: hidden; }
.lamp span { position: absolute; left: 50%; transform: translateX(-50%); }
.lamp-halo { top: 9vh; width: calc(20rem + var(--lp) * 30rem); height: 17rem;
  background: radial-gradient(ellipse at center, rgba(163,77,41, calc(0.12 + var(--lp) * 0.55)) 0%, rgba(163,77,41,0) 70%);
  filter: blur(28px); }
.lamp-beam { top: calc(9vh + 6.6rem); width: calc(13rem + var(--lp) * 34rem); height: 46vh;
  background: linear-gradient(to bottom, rgba(163,77,41, calc(0.05 + var(--lp) * 0.3)) 0%, rgba(163,77,41,0) 78%);
  clip-path: polygon(41% 0, 59% 0, 100% 100%, 0 100%); filter: blur(12px); }
.lamp-line { top: calc(9vh + 6.55rem); height: 3px; width: calc(11rem + var(--lp) * 30rem); border-radius: 3px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  box-shadow: 0 0 18px 2px rgba(163,77,41, calc(0.35 + var(--lp) * 0.65));
  opacity: calc(0.25 + var(--lp) * 0.75); }

/* heading sits under the light */
.rl-head { position: relative; z-index: 3; text-align: center; margin-top: calc(9vh + 9rem); padding-inline: 1.25rem; }
.rl-head .eyebrow { color: var(--accent); }
.rl-head h2 { color: #fff; font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3rem); }

/* three marquee rows */
.rl-rows { position: relative; z-index: 2; margin-top: auto; margin-bottom: clamp(2.5rem, 8vh, 5rem); display: flex; flex-direction: column; gap: clamp(0.7rem, 1.8vh, 1.15rem); }
.rl-row { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); }
.rl-shift { will-change: transform; }
.row-a .rl-shift { transform: translateX(calc(var(--sp) * 30vw)); }
.row-b .rl-shift { transform: translateX(calc(var(--sp) * -30vw)); }
.row-c .rl-shift { transform: translateX(calc(var(--sp) * 30vw)); }
.rl-track { display: flex; gap: 1rem; width: max-content; will-change: transform; }
.row-a .rl-track { animation: rlRight 44s linear infinite; }
.row-b .rl-track { animation: rlLeft 52s linear infinite; }
.row-c .rl-track { animation: rlRight 48s linear infinite; }
@keyframes rlRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes rlLeft  { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.rl-card { flex: 0 0 auto; width: clamp(15rem, 22vw, 19rem); background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; padding: 1.05rem 1.2rem; }
.rl-stars { color: var(--accent); letter-spacing: 2px; font-size: 0.78rem; margin-bottom: 0.5rem; }
.rl-card p { color: #f0eee9; font-size: var(--fs--1); line-height: 1.5; }
.rl-card cite { display: block; margin-top: 0.7rem; font-style: normal; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,242,239,0.5); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  .rl-stage { --lp: 1; }
  .rl-pin { height: auto; }
  .rl-stage { position: static; height: auto; padding-block: clamp(3rem,8vw,6rem); }
  .lamp { position: relative; height: 34vh; }
  .rl-track { animation: none !important; }
  .rl-shift { transform: none !important; }
  .rl-row { overflow-x: auto; }
}

/* News carousel arrows */
.news-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: clamp(42px, 4vw, 54px); height: clamp(42px, 4vw, 54px); border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); color: #fff;
  display: grid; place-items: center; cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.news-arrow svg { width: 46%; height: 46%; }
.news-arrow:hover { background: var(--accent); border-color: var(--accent); }
.news-arrow:active { transform: translateY(-50%) scale(0.94); }
.news-arrow.prev { left: max(0.75rem, calc(50% - 17.5rem)); }
.news-arrow.next { right: max(0.75rem, calc(50% - 17.5rem)); }
@media (max-width: 30rem) { .news-arrow { width: 40px; height: 40px; } }

/* ============================================================
   STORY + LOCATIONS — warm light sections, on brand
   ============================================================ */
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-strong); border-color: var(--accent-strong); color: #fff; }

/* scroll reveal (shared) */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--d, 0s); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* STORY */
.story { position: relative; overflow: hidden;
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='ps'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23ps)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 260px 260px; background-blend-mode: multiply;
  padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.story-inner { max-width: 78rem; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 60rem) { .story-inner { grid-template-columns: 1fr 1.05fr; } }
.story-media { position: relative; }
.story-media > img:first-child { width: 100%; border-radius: 16px; box-shadow: 0 26px 55px rgb(16 16 16 / 0.22); filter: none; }
.story-badge { position: absolute; top: 1rem; right: 1rem; background: var(--accent); color: #fff;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.7rem;
  padding: 0.5rem 0.95rem; border-radius: 999px; box-shadow: 0 10px 22px rgb(163 77 41 / 0.4); }
.story-dish { position: absolute; left: -7%; bottom: -9%; width: 46%; filter: drop-shadow(0 18px 28px rgba(0,0,0,0.4)); }
@media (max-width: 60rem) { .story-dish { display: none; } }
.story-copy .eyebrow { color: var(--accent); }
.story-copy h2 { font-size: clamp(1.95rem, 1.3rem + 2.5vw, 3.1rem); margin-bottom: var(--s2); }
.story-copy p { color: var(--ink-soft); margin-bottom: var(--s1); max-width: 54ch; }
.story-ar { font-family: var(--font-ar-body); color: var(--muted); direction: rtl; font-size: var(--fs-1); margin-block: var(--s2) var(--s1); }
.story-sign { display: flex; align-items: baseline; gap: 0.85rem; margin-block: var(--s1) var(--s2); }
.story-sign .sig { font-family: 'Sacramento', cursive; font-size: 2.7rem; line-height: 0.8; color: var(--ink); }
.story-sign .by { font-size: var(--fs--1); color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }

/* LOCATIONS */
.locs { background: var(--base); padding-block: clamp(3.5rem, 8vw, 6rem); }
.locs-inner { max-width: 78rem; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.locs-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.locs-head .eyebrow { color: var(--accent); }
.locs-head h2 { font-size: clamp(1.95rem, 1.3rem + 2.5vw, 3.1rem); }
.locs-sub { color: var(--muted); margin-top: 0.65rem; }
.locs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 1.75rem); }
@media (max-width: 56rem) { .locs-grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; } }
.loc-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(1.4rem, 2.5vw, 1.9rem); display: flex; flex-direction: column; gap: 0.55rem; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.loc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.loc-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgb(16 16 16 / 0.13); border-color: var(--accent); }
.loc-card:hover::before, .loc-card.featured::before { transform: scaleX(1); }
.loc-card.featured { border-color: var(--accent); }
.loc-top { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.15rem; }
.loc-pin { color: var(--accent); flex: none; margin-top: 2px; }
.loc-pin svg { width: 20px; height: 20px; }
.loc-name { font-family: var(--font-display); font-size: var(--fs-1); color: var(--ink); text-decoration: none; display: block; }
.loc-name:hover { color: var(--accent); }
.loc-role { display: block; font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-top: 2px; }
.loc-addr { font-style: normal; color: var(--ink-soft); font-size: var(--fs--1); line-height: 1.6; }
.loc-hours { color: var(--muted); font-size: var(--fs--1); }
.loc-actions { margin-top: auto; padding-top: 0.7rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.loc-actions .btn { padding: 0.58rem 1.05rem; font-size: var(--fs--1); min-height: 40px; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Subtle Arabic accent beside eyebrows / headings, site-wide */
.ar-touch { font-family: var(--font-ar-body); font-weight: 400; letter-spacing: 0; text-transform: none;
  color: var(--accent); opacity: 0.55; margin-inline-start: 0.55rem; font-size: 1.1em; vertical-align: baseline; }

/* Reviews: all-three-branches #1 rank line (orange, on black) */
.rl-rank { margin-top: 0.7rem; font-size: var(--fs--1); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #e8975a; }
.rl-rank b { color: #f4b271; font-weight: 800; }

/* ============================================================
   DARK THEME — opt-in via <body class="theme-dark">
   Warm orange on near-black. Used on menu / locations / story.
   ============================================================ */
body.theme-dark { background:#0d0d0d; color:#efece6; }
body.theme-dark a { color:#efece6; }
body.theme-dark a:hover { color:#f4b271; }
body.theme-dark h1, body.theme-dark h2, body.theme-dark h3 { color:#fff; }
body.theme-dark .eyebrow { color:#e8975a; }
body.theme-dark .lede { color:#cbc6be; }
body.theme-dark .crumbs, body.theme-dark .crumbs a { color:#a8a29f; }
body.theme-dark .crumbs li + li::before { color:#4a463f; }

body.theme-dark .site-header { background:rgba(10,10,10,.9); border-bottom:1px solid rgba(255,255,255,.08); }
body.theme-dark .wordmark, body.theme-dark .wordmark .ar { color:#fff; }
body.theme-dark .wordmark small { color:#c2bcb2; }
body.theme-dark .site-nav a { color:#cfcac2; }
body.theme-dark .site-nav a:hover { color:#fff; }
body.theme-dark .site-nav a[aria-current="page"] { color:#fff; box-shadow:inset 0 -2px 0 var(--accent); }
body.theme-dark .btn-solid { background:var(--accent); color:#fff; }
body.theme-dark .btn-solid:hover { background:var(--accent-strong); color:#fff; }
body.theme-dark .btn-ghost { color:#efece6; border-color:rgba(255,255,255,.4); }
body.theme-dark .btn-ghost:hover { background:var(--accent); border-color:var(--accent); color:#fff; }

body.theme-dark .section.tint { background:#111; background-image:none; }
body.theme-dark .info-panel { background:#151412; border:1px solid rgba(255,255,255,.08); }
body.theme-dark .card { background:#141311; border:1px solid rgba(255,255,255,.08); }
body.theme-dark .card h2, body.theme-dark .card h3 { color:#fff; }
body.theme-dark .meta, body.theme-dark .note { color:#c2bcb2; }
body.theme-dark .hours th { color:#e7e2da; }
body.theme-dark .hours td { color:#c2bcb2; }
body.theme-dark .hours caption { color:#a8a29f; }
body.theme-dark table.hours tr { border-bottom-color:rgba(255,255,255,.08); }
body.theme-dark .badge-ta { background:rgba(232,151,90,.14); color:#f4b271; border:1px solid rgba(232,151,90,.4); }
body.theme-dark details { border-bottom:1px solid rgba(255,255,255,.08); }
body.theme-dark summary { color:#fff; }
body.theme-dark details p { color:#c2bcb2; }

body.theme-dark .signoff { background:#0d0d0d; }
body.theme-dark .signoff p { color:#cbc6be; }
body.theme-dark .signoff .sig-static path { stroke:#e8975a; }
body.theme-dark .signoff .sig-static circle { fill:#e8975a; }

body.theme-dark .site-footer { background:#080808; color:#cbc6be; }
body.theme-dark .site-footer h3 { color:#fff; }
body.theme-dark .site-footer a { color:#cbc6be; }
body.theme-dark .site-footer a:hover { color:#f4b271; }
body.theme-dark .site-footer .ar { color:#a8a29f; }
body.theme-dark .site-footer .legal { border-top:1px solid rgba(255,255,255,.08); }
body.theme-dark .sticky-bar { background:rgba(12,12,12,.96); border-top:1px solid rgba(255,255,255,.08); }
body.theme-dark .sticky-bar a { color:#cfcac2; }
body.theme-dark .sticky-bar a[aria-current="page"] { color:#f4b271; }

/* ---- Menu page dark specifics ---- */
.menu-hero { position:relative; overflow:hidden;
  background:radial-gradient(125% 100% at 78% -10%, #211d18 0%, #14110e 42%, #0d0d0d 78%); }
.menu-hero .wrap { position:relative; z-index:3; }
.menu-dishes { display:flex; justify-content:center; align-items:flex-end;
  gap:clamp(.4rem,3vw,2.4rem); flex-wrap:wrap; margin-top:var(--s3); }
.menu-dishes img { width:clamp(112px,19vw,196px); height:auto;
  filter:drop-shadow(0 22px 34px rgba(0,0,0,.6)) drop-shadow(0 2px 12px rgba(244,178,113,.25)); animation:dishFloat 7s ease-in-out infinite; }
.menu-dishes img:nth-child(2){ animation-delay:.7s; }
.menu-dishes img:nth-child(3){ animation-delay:1.4s; }
.menu-dishes img:nth-child(4){ animation-delay:2.1s; }

/* olive branch motif + falling leaf */
.olive-motif { position:absolute; top:-2%; right:-4%; width:min(46vw,520px); z-index:1;
  opacity:.16; color:#e8975a; pointer-events:none; }
.olive-leaf { transform-origin:center; animation:oliveLeafDrop 9s ease-in-out infinite; }
@keyframes oliveLeafDrop {
  0% { transform:translate(0,-6px) rotate(0deg); opacity:0; }
  12% { opacity:.9; }
  100% { transform:translate(-40px,220px) rotate(150deg); opacity:0; }
}
@media (prefers-reduced-motion: reduce){ .menu-dishes img,.olive-leaf{ animation:none; } }

body.theme-dark .menu-nav a { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); color:#e7e2da; }
body.theme-dark .menu-nav a:hover { background:var(--accent); border-color:var(--accent); color:#fff; }
body.theme-dark .legend { color:#c2bcb2; border-top:1px solid rgba(255,255,255,.08); }
body.theme-dark .legend b { color:#e8975a; }
body.theme-dark .chip { background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.15); color:#e7e2da; }
body.theme-dark .chip[aria-pressed="true"] { background:var(--accent); border-color:var(--accent); color:#fff; }
body.theme-dark .chip-note { color:#c2bcb2; }

body.theme-dark .menu-section h2 { color:#fff; }
body.theme-dark .sec-note { color:#c2bcb2; font-weight:400; }
body.theme-dark .dishes { border-top:2px solid var(--accent); }
body.theme-dark .dish { border-bottom:1px solid rgba(255,255,255,.08); }
body.theme-dark .dish .nm { color:#fff; }
body.theme-dark .dish .price { color:#f4b271; }
body.theme-dark .dish .desc { color:#c2bcb2; }
body.theme-dark .tag { background:rgba(232,151,90,.15); color:#f4b271; border:1px solid rgba(232,151,90,.4); }

/* feathered food photos that melt into the dark page */
.sec-shot { margin:var(--s3) 0 var(--s2); }
.sec-shot img { width:100%; height:clamp(190px,26vw,330px); object-fit:cover; display:block;
  -webkit-mask-image:radial-gradient(135% 130% at 50% 42%, #000 52%, transparent 100%);
          mask-image:radial-gradient(135% 130% at 50% 42%, #000 52%, transparent 100%); }
.sec-shot figcaption { margin-top:.6rem; text-align:center; font-size:var(--fs--1);
  letter-spacing:.14em; text-transform:uppercase; color:#e8975a; }

/* Story photos feathered into the dark background */
.story-shot { border-radius:10px;
  -webkit-mask-image:radial-gradient(125% 120% at 50% 45%, #000 60%, transparent 100%);
          mask-image:radial-gradient(125% 120% at 50% 45%, #000 60%, transparent 100%); }

/* Dark theme: fix the light hero on inner pages (locations, our-story) */
body.theme-dark .hero-page {
  background:#0d0d0d;
  background-image:radial-gradient(125% 115% at 80% -20%, #221d17 0%, #15110e 46%, #0d0d0d 82%);
  color:#efece6;
}
body.theme-dark .hero-page .lede { color:#cbc6be; }

/* Ensure readable body text on dark theme (no dark-on-dark) */
body.theme-dark .note, body.theme-dark .legend, body.theme-dark .sec-note,
body.theme-dark .chip-note, body.theme-dark .meta, body.theme-dark .crumbs,
body.theme-dark .site-footer, body.theme-dark .site-footer address { color:#c2bcb2; }
body.theme-dark .legend b { color:#e8975a; }
body.theme-dark .dish .desc { color:#bdb7ad; }

/* ============================================================
   Floating food cutouts (menu bands + story) — dish on dark,
   olive-branch backdrop + gentle motion. Replaces .sec-shot.
   ============================================================ */
.food-float { position:relative; margin:clamp(2.2rem,6vw,4rem) auto; padding-block:clamp(.5rem,3vw,1.6rem); text-align:center; }
.food-float::before { content:""; position:absolute; top:-8%; left:50%; transform:translateX(-50%);
  width:min(56vw,420px); height:118%;
  background:url("assets/img/olive.svg") center/contain no-repeat; opacity:.10; z-index:0; pointer-events:none; }
.food-float .dish { position:relative; z-index:2; width:auto; max-width:min(88%,560px);
  max-height:clamp(230px,36vw,380px); object-fit:contain; margin-inline:auto;
  filter:drop-shadow(0 26px 40px rgba(0,0,0,.6)) drop-shadow(0 3px 14px rgba(244,178,113,.28)); animation:dishFloat 7.5s ease-in-out infinite; }
.food-float:nth-of-type(even) .dish { animation-delay:1.1s; }
.food-float figcaption { position:relative; z-index:2; margin-top:1rem; font-size:var(--fs--1);
  letter-spacing:.18em; text-transform:uppercase; color:#e8975a; }
@media (prefers-reduced-motion:reduce){ .food-float .dish{ animation:none; } }
/* story column: floats stack, slightly smaller */
.story-col .food-float { margin-block:clamp(1rem,4vw,2.2rem); }
.story-col .food-float .dish { max-height:clamp(200px,30vw,300px); }

/* ============================================================
   MOBILE NAV — hamburger + full-screen right-slide panel
   ============================================================ */
.nav-toggle { display:none; }
.nav-panel { display:none; }
@media (max-width:61.99rem){
  .site-nav { display:none; }
  .nav-toggle { display:inline-flex; flex-direction:column; justify-content:center; gap:6px;
    background:none; border:0; padding:8px 4px; cursor:pointer; margin-left:auto; }
  .nav-toggle span { display:block; width:28px; height:2.5px; background:var(--ink); border-radius:2px; transition:.3s; }
  body.theme-dark .nav-toggle span { background:#fff; }
  body.nav-open .nav-toggle span:nth-child(1){ transform:translateY(8.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
  body.nav-open .nav-toggle span:nth-child(3){ transform:translateY(-8.5px) rotate(-45deg); }

  .nav-panel { display:flex; position:fixed; inset:0; z-index:1500; background:#0d0d0d;
    flex-direction:column; transform:translateX(100%);
    transition:transform .4s cubic-bezier(.4,0,.2,1); }
  body.nav-open .nav-panel { transform:translateX(0); }
  .nav-panel::before { content:""; position:absolute; top:-6%; right:-8%; width:70%; height:70%;
    background:url("assets/img/olive.svg") center/contain no-repeat; opacity:.10; pointer-events:none; }
  .nav-panel nav { margin:auto; display:flex; flex-direction:column; align-items:center; gap:1.7rem; z-index:2; }
  .nav-panel a { font-family:var(--font-display); font-weight:600; font-size:2.15rem; color:#fff;
    text-decoration:none; letter-spacing:.005em; }
  .nav-panel a:hover, .nav-panel a:active { color:var(--accent); }
  .nav-panel a.btn { font-size:1.02rem; margin-top:.7rem; background:var(--accent); color:#fff;
    padding:.85rem 1.9rem; letter-spacing:.02em; }
  .nav-close { position:absolute; top:1rem; right:1.4rem; background:none; border:0; color:#fff;
    font-size:2.6rem; line-height:1; cursor:pointer; z-index:3; }

  /* bottom sticky bar fully removed on mobile */
  .sticky-bar { display:none !important; }
  body { padding-bottom:0 !important; }
}

/* ============================================================
   MOBILE HERO — white text panel on top, black dish panel
   below, two dishes side by side.
   ============================================================ */
.hero-duo { display:none; }
@media (max-width:61.99rem){
  .hero-home { display:flex; flex-direction:column; height:auto; min-height:100svh; }
  .hero-panel { order:1; }
  .hero-visual { order:2; min-height:auto; padding:1.8rem 1rem 2.6rem; }
  .hero-dishes { display:none !important; }
  .hero-olive, .hero-leaves { display:none !important; }
  .hero-duo { display:flex; gap:4%; align-items:center; justify-content:center; width:100%; }
  .hero-duo img { width:47%; max-width:220px; height:auto;
    filter:drop-shadow(0 16px 26px rgba(0,0,0,.55)); animation:dishFloat 7s ease-in-out infinite; }
  .hero-duo img:nth-child(2){ animation-delay:1s; }
}

/* ============================================================
   MOBILE MENU — single big dish auto-scrolling banner +
   neater filter chips.
   ============================================================ */
@media (max-width:61.99rem){
  .menu-hero .menu-dishes { flex-wrap:nowrap; width:max-content; justify-content:flex-start;
    gap:clamp(1.2rem,7vw,2.4rem); margin-inline:0; animation:menuMarquee 24s linear infinite; }
  .menu-hero .menu-dishes img { display:block !important; height:clamp(200px,56vw,300px); width:auto;
    animation:none; }
  @keyframes menuMarquee { from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

  .menu-nav { flex-wrap:nowrap; overflow-x:auto; gap:.55rem; padding:.25rem 0 .8rem;
    scrollbar-width:none; -webkit-overflow-scrolling:touch; }
  .menu-nav::-webkit-scrollbar { display:none; }
  .menu-nav a { flex:0 0 auto; padding:.62rem 1.05rem; }
  .chips { display:grid; grid-template-columns:repeat(2,1fr); gap:.6rem; }
  .chips .chip { width:100%; text-align:center; padding:.75rem; min-height:48px; }
  .chips .chip-note { grid-column:1 / -1; text-align:center; }
}
@media (max-width:61.99rem) and (prefers-reduced-motion:reduce){
  .menu-hero .menu-dishes { animation:none; flex-wrap:wrap; width:auto; justify-content:center; }
}

/* Desktop: only the first 4 menu dishes show; duplicates power the mobile marquee */
@media (min-width:62rem){ .menu-hero .menu-dishes img:nth-child(n+5){ display:none; } }

/* Story: real interior photo, feathered into the dark background */
.story-photo { margin:clamp(1rem,4vw,2.2rem) 0; text-align:center; }
.story-photo .story-shot { width:100%; border-radius:12px; }
.story-photo figcaption { margin-top:.7rem; font-size:var(--fs--1); letter-spacing:.16em;
  text-transform:uppercase; color:#e8975a; }

/* ============================================================
   HOMEPAGE: carry the dark theme through the lower sections
   (story → locations → FAQ → CTA → footer), matching the
   reviews band above. Hero panel keeps its cream card.
   ============================================================ */
body.home-hero { background:#0d0d0d; }
body.home-hero .hero-panel .eyebrow { color:var(--accent); }   /* keep readable on cream */

/* Story */
body.home-hero .story { background:#0d0d0d; }
body.home-hero .story-copy p { color:#c2bcb2; }
body.home-hero .story-ar { color:#a8a29f; }
body.home-hero .story-sign .sig { color:#fff; }
body.home-hero .story-sign .by { color:#c2bcb2; }
body.home-hero .story-media > img:first-child { box-shadow:0 26px 55px rgba(0,0,0,.55); }

/* Locations */
body.home-hero .locs { background:#100f0e; }
body.home-hero .locs-sub { color:#c2bcb2; }
body.home-hero .loc-card { background:#161513; border-color:rgba(255,255,255,.09); }
body.home-hero .loc-card:hover { box-shadow:0 20px 44px rgba(0,0,0,.5); border-color:var(--accent); }
body.home-hero .loc-name { color:#fff; }
body.home-hero .loc-addr { color:#c2bcb2; }
body.home-hero .loc-hours { color:#a8a29f; }

/* keyline visible on dark */
body.home-hero .flag-keyline span:nth-child(1),
body.home-hero .flag-keyline span:nth-child(3) { background:#2b2823; }

/* global dark-theme fixes (apply everywhere theme-dark is on) */
body.theme-dark .btn-ink { background:transparent; border-color:rgba(255,255,255,.4); color:#fff; }
body.theme-dark .btn-ink:hover { background:var(--accent); border-color:var(--accent); color:#fff; }
body.theme-dark .signoff .sig-static path { stroke:#e8975a !important; }
body.theme-dark .signoff .sig-static circle { fill:#e8975a !important; }

/* ============================================================
   MENU: full-bleed auto-scrolling dish marquee (desktop+mobile)
   Runs 100% across the viewport, edges faded.
   ============================================================ */
.menu-strip { position:relative; width:100vw; margin-left:calc(50% - 50vw); margin-top:clamp(1.6rem,4vw,2.6rem);
  overflow:hidden; padding-block:.6rem; }
.menu-strip::before, .menu-strip::after { content:""; position:absolute; top:0; bottom:0; width:11%; z-index:2; pointer-events:none; }
.menu-strip::before { left:0; background:linear-gradient(90deg,#0d0d0d,rgba(13,13,13,0)); }
.menu-strip::after { right:0; background:linear-gradient(-90deg,#0d0d0d,rgba(13,13,13,0)); }
.menu-hero .menu-strip .menu-dishes { display:flex !important; flex-wrap:nowrap !important;
  width:max-content !important; justify-content:flex-start !important; align-items:center !important;
  gap:clamp(1.8rem,4vw,3.4rem) !important; margin:0 !important;
  animation:menuMarquee 60s linear infinite !important; }
.menu-hero .menu-strip .menu-dishes img { display:block !important; width:auto !important;
  height:clamp(150px,17vw,230px) !important; animation:none !important;
  filter:drop-shadow(0 20px 30px rgba(0,0,0,.6)) drop-shadow(0 2px 12px rgba(244,178,113,.25)) !important; }
@keyframes menuMarquee { from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){ .menu-hero .menu-strip .menu-dishes{ animation:none !important; flex-wrap:wrap !important; width:auto !important; justify-content:center !important; } }

/* ============================================================
   MOBILE HERO v2 — dishes stacked & bigger, olive tree + leaves
   restored behind them (panel sits above so they only show in
   the black dish area).
   ============================================================ */
@media (max-width:61.99rem){
  .hero-visual { flex:1 1 auto; position:relative; padding-block:clamp(1.5rem,5vw,2.6rem) clamp(2rem,7vw,3.4rem); }
  .hero-panel { z-index:3; }                       /* opaque cream panel hides olive/leaves behind it */

  .hero-duo { flex-direction:column; gap:clamp(1rem,3.5vw,1.9rem); }
  .hero-duo img { width:min(72%,320px) !important; max-width:none !important; }

  /* olive tree + dropping leaves, anchored into the dish area */
  .hero-olive { display:grid !important; place-items:end center; padding-bottom:5vh; z-index:1; }
  .hero-olive svg { width:min(122vw,560px) !important; opacity:.22 !important; }
  .hero-leaves { display:block !important; z-index:2; }
}

/* ============================================================
   MOBILE HERO v3 — hero always = exactly 100% of the viewport
   (dishes scale to fit, never cut off); olive tree fills the
   WHOLE hero with leaves dropping across it.
   ============================================================ */
@media (max-width:61.99rem){
  .hero-home { height:100svh !important; min-height:100svh !important; }
  .hero-visual { flex:1 1 auto !important; min-height:0 !important; overflow:hidden !important;
    padding-block:1.6vh !important; }
  .hero-panel { z-index:3; }

  /* two dishes stacked, each scales to fit the available height */
  .hero-duo { flex-direction:column !important; height:100% !important; width:100% !important;
    justify-content:center !important; align-items:center !important; gap:1.8vh !important; }
  .hero-duo img { width:auto !important; height:auto !important; max-width:86% !important;
    max-height:46% !important; object-fit:contain !important; }

  /* olive tree fills the entire hero (over panel + dishes, faint) */
  .hero-olive { display:grid !important; place-items:center !important; inset:0 !important;
    z-index:4 !important; padding:0 !important; }
  .hero-olive svg { height:100% !important; width:auto !important; opacity:.13 !important; }
  /* leaves drop across the whole hero, from the canopy down */
  .hero-leaves { display:block !important; z-index:5 !important; }
}

/* Mobile: faster menu dish-marquee (desktop 60s -> mobile 15s) */
@media (max-width:61.99rem){
  .menu-hero .menu-strip .menu-dishes { animation-duration:15s !important; }
}

/* Mobile: keep the hero title clear of the browser URL bar / notch */
@media (max-width:61.99rem){
  .hero-panel { padding-top: calc(env(safe-area-inset-top, 0px) + clamp(3.25rem, 9vh, 4.75rem)) !important; }
}

/* Mobile reviews: tighten the pinned layout so all 3 rows fit on screen */
@media (max-width:61.99rem){
  .reviews-lamp .rl-head { margin-top: calc(env(safe-area-inset-top,0px) + 2.4rem); }
  .reviews-lamp .rl-head h2 { font-size: 1.7rem; }
  .reviews-lamp .rl-head .rl-rank { margin-top:.45rem; }
  .reviews-lamp .rl-rows { margin-top:1.4rem !important; margin-bottom:0 !important; gap:.5rem; }
  .reviews-lamp .rl-card { width: 15rem; padding: .7rem .9rem; border-radius: 12px; }
  .reviews-lamp .rl-stars { font-size: .72rem; margin-bottom: .35rem; }
  .reviews-lamp .rl-card p { font-size: .82rem; line-height: 1.4;
    display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .reviews-lamp .rl-card cite { margin-top: .45rem; font-size: .62rem; }
}

/* Mobile only: show the ELVIN'S badge in the hero panel's right-side dead space */
@media (max-width:61.99rem){
  .hero-emblem { display:grid !important; z-index:6;
    right: 1.6rem; left:auto; bottom:auto; transform:none;
    width: 5rem; height: 5rem; }  /* top set by js/home.js to straddle the panel/dish seam */
  .hero-emblem svg { width:76%; height:76%; }
}
