*, *::before, *::after {
  box-sizing: border-box;
}

/* Warm neutrals: charcoal leans espresso and the creams lean golden, so the
   page reads appetizing with any restaurant accent, including none. */
:root {
  --text: #211c17;
  --muted: #6b5f53;
  --bg: #ffffff;
  --bg-muted: #f7f2ea;
  --panel: #ffffff;
  --dark: #191410;
  --darker: #120e0a;
  --on-dark: #f6f1ea;
  --on-dark-muted: #bfb3a6;
  --border: #e9e2d8;
  --max-width: 1160px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(41, 32, 23, 0.06), 0 4px 12px rgba(41, 32, 23, 0.06);
  --shadow-md: 0 2px 4px rgba(41, 32, 23, 0.05), 0 12px 32px rgba(41, 32, 23, 0.1);
  --font-display: Merriweather, Georgia, "Times New Roman", serif;
  --font-body: Inter, "Helvetica Neue", Arial, sans-serif;
  --section-pad: clamp(56px, 9vw, 104px);
}

html {
  scroll-behavior: smooth;
}

html[lang="ar"] {
  --font-display: Cairo, "Segoe UI", Tahoma, sans-serif;
  --font-body: Cairo, "Segoe UI", Tahoma, sans-serif;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: color-mix(in srgb, var(--accent) 30%, transparent);
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 65%, var(--text));
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
  scroll-margin-top: 24px;
}

/* ---------------------------------------------------------------- type --- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-subline {
  margin: 14px auto 0;
  max-width: 52ch;
  color: var(--muted);
}

h1, h2, h3, p {
  overflow-wrap: anywhere;
}

h1, h2 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  line-height: 1.04;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

/* ------------------------------------------------------------- buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 35%, transparent);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px color-mix(in srgb, var(--accent) 45%, transparent);
}

.btn-secondary {
  border-color: var(--border);
  background: #ffffff;
  color: var(--text);
}

.btn-secondary:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

/* ---------------------------------------------------- announcement bar --- */

.announcement-bar {
  padding: 12px max(20px, env(safe-area-inset-left));
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 20%, var(--border));
  background: #f2efe7;
  background: color-mix(in srgb, var(--accent) 12%, #f7f2ea);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
  white-space: pre-line;
}

.announcement-bar[hidden] {
  display: none;
}

/* ---------------------------------------------------------------- hero --- */

.hero {
  position: relative;
  display: flex;
  min-height: min(94vh, 920px);
  color: var(--on-dark);
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The scrim leans warm brown rather than neutral gray, so food photography
   underneath keeps its reds and golds instead of going cold. */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(75deg, rgba(32, 23, 15, 0.72) 0%, rgba(32, 23, 15, 0.42) 46%, rgba(32, 23, 15, 0.1) 100%),
    linear-gradient(0deg, rgba(27, 19, 12, 0.38) 0%, transparent 34%);
}

[dir="rtl"] .hero-bg::after {
  background:
    linear-gradient(-75deg, rgba(32, 23, 15, 0.72) 0%, rgba(32, 23, 15, 0.42) 46%, rgba(32, 23, 15, 0.1) 100%),
    linear-gradient(0deg, rgba(27, 19, 12, 0.38) 0%, transparent 34%);
}

.hero-plain {
  background:
    radial-gradient(80% 100% at 84% 16%, rgba(255, 235, 205, 0.22) 0%, transparent 58%),
    linear-gradient(135deg, #5c4a3a 0%, #6f5a46 56%, #83705a 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-top: 22px;
  padding-bottom: clamp(48px, 8vw, 96px);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.hero-top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-top-cta {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.9rem;
}

/* ------------------------------------------------------ language switch --- */

.lang-switcher {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.lang-switcher a {
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 160ms ease;
}

.lang-switcher a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lang-switcher [aria-current="page"] {
  opacity: 1;
  color: var(--accent);
}

.hero .lang-switcher {
  color: #ffffff;
}

.hero .lang-switcher [aria-current="page"] {
  color: color-mix(in srgb, var(--accent) 60%, #ffffff);
}

.footer-meta .lang-switcher {
  color: #e7e0d5;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.lang-suggestion {
  position: fixed;
  bottom: 16px;
  inset-inline-end: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 8px 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
}

.lang-suggestion a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.lang-suggestion a:hover {
  color: var(--accent);
}

.lang-suggestion button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.lang-suggestion button:hover {
  background: var(--bg-muted);
  color: var(--text);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
}

.brand img {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  max-width: 640px;
  padding-top: clamp(40px, 7vw, 88px);
}

.hero .eyebrow {
  color: color-mix(in srgb, var(--accent) 20%, #ffffff);
}

.hero .eyebrow::before {
  background: color-mix(in srgb, var(--accent) 20%, #ffffff);
}

.hero-subline {
  max-width: 46ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions, .center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.center-action {
  justify-content: center;
  margin-top: 40px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(46, 35, 26, 0.46);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.meta-chip strong {
  color: #ffffff;
  font-weight: 600;
}

.meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #58c473;
  box-shadow: 0 0 0 3px rgba(88, 196, 115, 0.3);
}

.meta-chip.is-closed .meta-dot {
  background: #a59b8e;
  box-shadow: 0 0 0 3px rgba(165, 155, 142, 0.25);
}

/* ------------------------------------------------------------ sections --- */

.section-heading {
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 52px);
  text-align: center;
}

/* -------------------------------------------------------------- offers --- */

.offers {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 5%, #ffffff) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.offers[hidden] {
  display: none;
}

.offers .section-heading {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.offer-grid {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  max-width: 920px;
  margin-inline: auto;
}

.offer-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border));
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 48px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--accent-text);
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
}

.offer-body h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
}

.offer-conditions {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}

/* ------------------------------------------------------------- delivery --- */

.delivery-info {
  background: #ffffff;
}

.delivery-info[hidden] {
  display: none;
}

.delivery-content {
  display: grid;
  gap: clamp(24px, 3.4vw, 44px);
  min-width: 0;
}

.delivery-map-shell {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-muted);
  box-shadow: var(--shadow-md);
  /* Leaflet's internal panes use z-indexes in the hundreds; contain them so
     they never paint over fixed page chrome like the mobile CTA bar. */
  isolation: isolate;
}

.delivery-map-shell[hidden] {
  display: none;
}

.delivery-map {
  width: 100%;
  height: clamp(300px, 56vw, 420px);
  min-height: 300px;
}

.delivery-map.leaflet-container,
.delivery-map .leaflet-container {
  font-family: var(--font-body);
}

.delivery-map .leaflet-control-zoom {
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.delivery-map .leaflet-control-zoom a {
  color: var(--text);
}

.delivery-map .leaflet-control-attribution {
  color: var(--muted);
  font-size: 0.68rem;
}

.delivery-map .delivery-map-popup {
  display: grid;
  gap: 8px;
  min-width: 168px;
  font-family: var(--font-body);
  color: var(--text);
}

.delivery-map .delivery-map-popup h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
}

.delivery-map .delivery-map-popup-details {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.delivery-map .delivery-map-tooltip {
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

/* The area list is set like a menu price table: hairline rules, small-caps
   column headings and right-aligned tabular amounts. When the list itself is
   narrow, the columns stack and per-cell captions replace the heading row.
   City groups follow the same editorial register — a hairline-ruled index of
   serif city names rather than boxed accordion widgets. */

.delivery-list {
  --delivery-columns: minmax(0, 1fr) minmax(5.5rem, max-content) minmax(9.5rem, max-content);
  container: delivery-list / inline-size;
  display: grid;
  align-content: start;
  min-width: 0;
}

.delivery-list.is-grouped {
  border-top: 1px solid color-mix(in srgb, var(--text) 22%, transparent);
}

.delivery-group {
  min-width: 0;
  border-bottom: 1px solid var(--border);
}

.delivery-group[hidden] {
  display: none;
}

.delivery-group-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 17px 2px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 140ms ease;
}

.delivery-group-summary:hover {
  color: color-mix(in srgb, var(--accent) 70%, var(--text));
}

.delivery-group-summary::-webkit-details-marker {
  display: none;
}

.delivery-group-summary::after {
  width: 7px;
  height: 7px;
  border-inline-end: 1.5px solid color-mix(in srgb, var(--muted) 70%, currentColor);
  border-bottom: 1.5px solid color-mix(in srgb, var(--muted) 70%, currentColor);
  content: '';
  margin-inline-end: 4px;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.delivery-group[open] .delivery-group-summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.delivery-group-name {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

.delivery-group-body {
  padding: 2px 2px 20px;
}

.delivery-group-body .delivery-table-head {
  border-bottom-color: var(--border);
}

/* Rules nested inside a city keep a fainter hairline than the city index
   itself, so the two levels of the hierarchy stay readable. */
.delivery-group-body .delivery-row {
  border-bottom: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
}

.delivery-group-body .delivery-row:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

.delivery-groups-toggle {
  justify-self: center;
  min-height: 44px;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent);
  text-underline-offset: 4px;
  transition: text-decoration-color 140ms ease;
}

.delivery-groups-toggle:hover {
  text-decoration-color: var(--accent);
}

.delivery-table-head {
  display: none;
}

.delivery-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px 20px;
  align-items: start;
  min-width: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  animation: delivery-row-in 380ms ease backwards;
}

.delivery-row:last-child {
  border-bottom: 0;
}

@keyframes delivery-row-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

.delivery-row-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  margin-bottom: 3px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

/* Stacked layout: each fact is one line with the caption on the left and the
   amount pushed to the end, like a receipt. */
.delivery-amount {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 0;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
  color: var(--text);
  white-space: nowrap;
}

.delivery-cell-caption {
  overflow-wrap: normal;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-amount:last-child .delivery-amount-value {
  color: var(--muted);
  font-weight: 500;
}

.delivery-amount-free .delivery-amount-value {
  color: color-mix(in srgb, var(--accent) 75%, var(--text));
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* The list can occupy only half the page beside a map, so its table layout
   must respond to its own available width rather than the viewport width.
   At the widest page measure that half is ~545px, so the threshold sits just
   below it: desktop readers get the columned table, phones the receipt. */
@container delivery-list (min-width: 500px) {
  .delivery-table-head {
    display: grid;
    grid-template-columns: var(--delivery-columns);
    gap: 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--text) 22%, transparent);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .delivery-table-head span {
    text-align: end;
  }

  .delivery-table-head span:first-child {
    text-align: start;
  }

  .delivery-row {
    grid-template-columns: var(--delivery-columns);
    gap: 0 20px;
  }

  .delivery-row-label {
    margin-bottom: 0;
  }

  .delivery-amount {
    display: block;
    text-align: end;
    font-size: 0.98rem;
  }

  .delivery-cell-caption {
    display: none;
  }
}

/* Legend dot tying a list row to its ring color on the map. */
.delivery-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 0.35em;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

/* Padding and negative margin cancel out, so the hover surface bleeds past
   the text while the columns stay aligned with the heading row. */
.delivery-row.is-linked {
  padding-inline: 8px;
  margin-inline: -8px;
  border-radius: 10px;
  cursor: default;
  transition: background-color 120ms ease;
}

.delivery-row.is-linked:hover {
  background: color-mix(in srgb, var(--accent) 6%, transparent);
}

/* -------------------------------------------------------------- dishes --- */

.dish-grid {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
}

/* Dish cards let the photography carry the section: no boxed white frame,
   just the image as a rounded plate with the name set like a menu line. */
.dish-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
}

.dish-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.dish-card:hover .dish-media {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 400ms ease;
}

.dish-card:hover img {
  transform: scale(1.05);
}

.dish-card h3 {
  padding: 16px 4px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.14rem;
}

.dish-cta {
  margin: 5px 0 0;
  padding-inline: 4px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.dish-card:hover .dish-cta,
.dish-card:focus-visible .dish-cta {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------- about --- */

.about {
  background: var(--bg-muted);
}

.about-grid {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.rich-text {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 58ch;
}

.rich-text p {
  margin: 0 0 1em;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.rich-text strong {
  color: var(--text);
}

.rich-text a {
  color: var(--accent);
  font-weight: 600;
}

.about-expanded {
  margin-top: 0;
}

.text-button {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent);
  text-underline-offset: 4px;
}

.text-button:hover {
  text-decoration-color: var(--accent);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* -------------------------------------------------------- testimonials --- */

.testimonial-region {
  position: relative;
}

.testimonials-mask {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 36%);
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonials-mask::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 30px 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: center;
}

.testimonial-slide::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  inset-inline-end: 22px;
  color: color-mix(in srgb, var(--accent) 22%, transparent);
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-slide .text-button {
  align-self: flex-start;
}

/* Rating stars stay amber regardless of the restaurant accent — a rating in
   brand black or blue reads wrong. */
.stars {
  display: flex;
  gap: 2px;
  color: #e2a33b;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.stars .star-empty {
  color: var(--border);
}

.written-testimonial-text {
  flex: 1;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.written-testimonial-text.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 16%, #ffffff);
  color: var(--accent);
  font-weight: 700;
}

.testimonial-author {
  margin: 0;
  font-weight: 600;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonial-dots button {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.testimonial-dots button::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--border);
  transition: background 160ms ease, transform 160ms ease;
}

.testimonial-dots button:hover::after {
  background: color-mix(in srgb, var(--accent) 55%, var(--border));
}

.testimonial-dots button[aria-current="true"]::after {
  background: var(--accent);
  transform: scale(1.25);
}

/* ---------------------------------------------------------- CTA banner --- */

.cta-banner {
  padding: var(--section-pad) 0;
  background: var(--dark);
  color: var(--on-dark);
}

.cta-banner .eyebrow {
  color: color-mix(in srgb, var(--accent) 60%, #ffffff);
}

.cta-banner .eyebrow::before {
  background: color-mix(in srgb, var(--accent) 60%, #ffffff);
}

.banner-grid {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.banner-copy h2 {
  max-width: 22ch;
}

.banner-subline {
  max-width: 50ch;
  margin: 16px 0 0;
  color: var(--on-dark-muted);
  line-height: 1.7;
}

.banner-copy .btn {
  margin-top: 28px;
}

.banner-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

/* ----------------------------------------------------------- app block --- */

.app-section {
  background: var(--bg-muted);
  color: var(--text);
  border-top: 1px solid var(--border);
}

.app-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.app-section p:not(.eyebrow) {
  max-width: 58ch;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* -------------------------------------------------------------- footer --- */

.footer {
  padding: clamp(40px, 6vw, 64px) 0 0;
  color: #e7e0d5;
  background: var(--darker);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  gap: 28px;
  align-items: start;
  padding-bottom: clamp(28px, 4vw, 44px);
}

.footer-col p {
  margin: 10px 0 0;
  color: #b1a698;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffffff;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.footer-phone {
  color: #e7e0d5;
  text-decoration: none;
  font-weight: 600;
}

.footer-phone:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #e7e0d5;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.social-links a:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: #ffffff;
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-heading {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-hours {
  margin: 0;
  font-size: 0.9rem;
}

.footer-hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 280px;
  padding: 3px 0;
}

.footer-hours dt {
  color: #b1a698;
}

.footer-hours dd {
  margin: 0;
  color: #e7e0d5;
  font-variant-numeric: tabular-nums;
  /* One time range per line (ranges are joined with \n). */
  white-space: pre-line;
  text-align: end;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #e7e0d5;
  text-decoration: none;
  font-size: 0.92rem;
  width: fit-content;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-meta p {
  margin: 0;
  color: #978c7e;
  font-size: 0.85rem;
}

/* ------------------------------------------------------ mobile CTA bar --- */

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}

.mobile-cta .btn {
  width: 100%;
}

/* ---------------------------------------------------------- responsive --- */

@media (min-width: 768px) {
  /* The map remains useful with long rule lists instead of stretching to the
     height of every delivery rule. */
  .delivery-content:has(.delivery-map-shell:not([hidden])) {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: start;
  }

  .delivery-content:has(.delivery-map-shell:not([hidden])) .delivery-map-shell {
    position: sticky;
    top: 24px;
  }

  .delivery-content:has(.delivery-map-shell:not([hidden])) .delivery-map {
    height: clamp(380px, 42vw, 520px);
    max-height: calc(100vh - 48px);
  }

  /* No map (location-based areas): the list sits centered under the heading
     in a comfortable measure instead of spanning the whole section. */
  .delivery-content:has(.delivery-map-shell[hidden]) .delivery-list {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }

  .dish-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

  .banner-grid.has-media {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

  .app-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: min(86vh, 720px);
  }

  .hero-top-cta {
    display: none;
  }

  .testimonials-mask {
    grid-auto-columns: 86%;
  }

  .delivery-map {
    height: min(74vw, 340px);
    min-height: 240px;
  }

  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 78px;
  }

  .lang-suggestion {
    bottom: 94px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
