:root {
  --font-body: Montserrat, Tajawal, sans-serif;
  --font-head: Lustria, Amiri, serif;
  --burgundy: #802a19;
  --burgundy-deep: #3a120a;
  --espresso: #2b1d16;
  --espresso-deep: #1e0a04;
  --cream: #f4efe8;
  --cream-deep: #ebe3d8;
  --gold: #b89a5b;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.no-scroll { overflow: hidden; }

a { color: var(--burgundy); text-decoration: none; }
a:hover { color: var(--gold); }
input, select, button { font-family: inherit; }
img { max-width: 100%; }
picture { display: contents; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100px;
  inset-inline-start: 16px;
  z-index: 200;
  background: var(--espresso);
  color: var(--cream);
  padding: 12px 18px;
  border: 1px solid var(--gold);
  font-size: 13px;
  letter-spacing: .06em;
}
.skip-link:focus { top: 12px; color: var(--cream); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-title, .hero-sub, .hero-actions { animation: none; }
  .hero-slide { transition: opacity .3s ease; }
  .hero-slide.is-active { transform: none; }
  .dish-photo img, .gallery-figure img, .why-card, .menu-list-wrap { transition: none; animation: none; }
}

.serif { font-family: var(--font-head); font-weight: 400; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal="in"] { opacity: 1; transform: none; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-sm { padding: 12px 20px; font-size: 12px; }
.btn-cream { background: var(--cream); color: var(--burgundy); }
.btn-cream:hover { background: var(--gold); color: var(--espresso); }
.btn-outline-cream { border-color: var(--cream); color: var(--cream); }
.btn-outline-cream:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold { border-color: var(--gold); color: var(--burgundy); }
.btn-outline-gold:hover { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.btn-burgundy { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); }
.btn-burgundy:hover { background: var(--gold); border-color: var(--gold); color: var(--espresso); }
.btn-outline-burgundy { border-color: var(--burgundy); color: var(--burgundy); }
.btn-outline-burgundy:hover { background: var(--burgundy); color: var(--cream); }
.btn-outline-burgundy-on-gold { border-color: var(--gold); color: var(--burgundy); }
.btn-outline-burgundy-on-gold:hover { background: var(--gold); color: var(--espresso); }
.btn-outline-cream-on-burgundy { border: 1px solid var(--gold); color: var(--cream); background: none; }
.btn-outline-cream-on-burgundy:hover { background: var(--cream); color: var(--burgundy); border-color: var(--cream); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 232, .96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 154, 91, .35);
}
.header-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}
.header-icons { display: flex; gap: 16px; align-items: center; justify-self: start; }
.icon-btn {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 154, 91, .5);
  border-radius: 50%;
}
.icon-btn:hover { border-color: var(--gold); }
.header-logo { justify-self: center; display: block; }
.header-logo img { height: 72px; width: auto; display: block; }
.header-right { display: flex; gap: 12px; align-items: center; justify-self: end; }
.lang-btn {
  color: var(--espresso);
  padding: 8px 6px;
  font-weight: 500;
  font-family: Tajawal, var(--font-body);
  font-size: 15px;
  white-space: nowrap;
}
.lang-btn:hover { color: var(--gold); }
.reserve-btn {
  border: 1px solid var(--gold);
  color: var(--burgundy);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.reserve-btn:hover { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.reserve-short { display: none; }
.site-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4px 20px 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 34px;
}
.site-nav a {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--espresso);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--burgundy); border-bottom-color: var(--gold); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--gold); }

/* Compact header on phones: one icon, smaller logo, short CTA label. */
@media (max-width: 760px) {
  html { scroll-padding-top: 112px; }
  .header-top { padding: 8px 12px 0; gap: 8px; }
  .header-icons { gap: 10px; }
  .icon-btn { width: 40px; height: 40px; }
  .icon-btn--secondary { display: none; }
  .header-logo img { height: 54px; }
  .header-right { gap: 4px; }
  .reserve-btn { padding: 10px 14px; font-size: 11px; }
  .reserve-long { display: none; }
  .reserve-short { display: inline; }
  .site-nav { padding: 2px 8px 8px; gap: 0 14px; }
  .site-nav a { font-size: 12.5px; padding: 10px 2px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: min(88vh, 860px);
  height: min(88svh, 860px);
  min-height: 520px;
  background: var(--burgundy-deep);
  overflow: hidden;
  touch-action: pan-y;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 7s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1.06); }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 14, 8, .28) 0%, rgba(43, 14, 8, 0) 30%, rgba(43, 14, 8, 0) 55%, rgba(43, 14, 8, .72) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 24px 60px;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .55), 0 1px 3px rgba(0, 0, 0, .6);
}
.hero-vignette {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  width: min(1100px, 110%);
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(30, 10, 4, .5) 0%, rgba(30, 10, 4, .25) 45%, rgba(30, 10, 4, 0) 75%);
  pointer-events: none;
}
.hero-title {
  position: relative;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -.01em;
  animation: heroIn 1.2s ease both;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .6), 0 1px 4px rgba(0, 0, 0, .6);
}
.hero-sub {
  position: relative;
  margin: 22px 0 0;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  letter-spacing: .02em;
  max-width: 640px;
  animation: heroIn 1.2s .2s ease both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .7), 0 1px 3px rgba(0, 0, 0, .7);
}
.hero-actions {
  position: relative;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
  animation: heroIn 1.2s .35s ease both;
  text-shadow: none;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 232, .6);
  background: rgba(43, 29, 22, .35);
  color: var(--cream);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
html:not(.js) .hero-arrow, html:not(.js) .hero-dots, html:not(.js) .gallery-toggle { display: none; }
.hero-arrow:hover { background: var(--burgundy); border-color: var(--burgundy); }
.hero-arrow.prev { inset-inline-start: 24px; }
.hero-arrow.next { inset-inline-end: 24px; }
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0;
}
/* 8px visual dot inside a 32px tap target */
.hero-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  padding: 12px;
  cursor: pointer;
  background: rgba(244, 239, 232, .5);
  background-clip: content-box;
  transition: background-color .3s;
}
.hero-dot.is-active { background-color: var(--gold); }
@media (max-width: 720px) {
  .hero-arrow { display: none; }
  .hero-content { padding: 32px 20px 64px; }
}

.trust-strip {
  background: var(--espresso);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
}

/* ---------- section basics ---------- */
.section { position: relative; overflow: hidden; }
.section-kicker {
  margin-top: 22px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.section-divider .line { flex: 1; max-width: 120px; height: 1px; background: var(--gold); display: block; }
.section-divider img { width: 56px; height: 40px; object-fit: cover; object-position: top; }
.watermark {
  position: absolute;
  width: 520px;
  height: 380px;
  opacity: .06;
  pointer-events: none;
  object-fit: cover;
  object-position: top;
}
.watermark.top-left { top: -30px; inset-inline-start: -80px; }
.watermark.bottom-right { bottom: -60px; inset-inline-end: -80px; transform: rotate(180deg); }

/* ---------- signature dishes ---------- */
.signature {
  background: var(--cream);
  padding: clamp(72px, 9vw, 128px) 0 clamp(72px, 9vw, 120px);
}
.signature-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 154, 91, .14), rgba(184, 154, 91, 0) 60%);
  pointer-events: none;
}
.signature-header { text-align: center; }
.signature-title { font-size: clamp(36px, 5vw, 64px); margin: 12px 0 0; line-height: 1.05; }
.signature-intro { margin: 16px auto 0; font-size: clamp(15px, 1.3vw, 17px); max-width: 560px; line-height: 1.7; text-wrap: pretty; }
.signature-grid {
  position: relative;
  margin: clamp(44px, 5vw, 64px) auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px 24px;
}
@media (min-width: 860px) {
  .signature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dish-card.featured { grid-column: span 2; grid-row: span 2; }
  .dish-card.featured .dish-frame { flex: 1 1 0%; }
  .dish-card.featured .dish-photo { aspect-ratio: auto; }
  .dish-card.featured .dish-photo img { position: absolute; inset: 0; }
  .dish-card.featured .dish-name { font-size: 28px; }
}
.dish-card { display: flex; flex-direction: column; min-width: 0; }
.dish-frame {
  position: relative;
  padding: 8px;
  border: 1px solid rgba(184, 154, 91, .6);
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 0 0 auto;
}
.dish-photo {
  position: relative;
  flex: 1;
  min-height: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  outline: 1px solid rgba(184, 154, 91, .35);
  outline-offset: -1px;
}
.dish-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}
.dish-photo:hover img { transform: scale(1.05); }
.dish-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 14, 8, 0) 55%, rgba(43, 14, 8, .55) 100%);
  pointer-events: none;
}
.dish-num {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 14, 8, .55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 14px;
}
.dish-body { padding: 20px 6px 0; display: flex; flex-direction: column; gap: 8px; }
.dish-title-row { display: flex; align-items: baseline; gap: 12px; }
.dish-name { font-size: 22px; margin: 0; line-height: 1.2; }
.dish-leader { flex: 1; border-bottom: 1px dotted rgba(184, 154, 91, .7); transform: translateY(-5px); min-width: 20px; }
.dish-price { font-family: var(--font-head); font-size: 20px; color: var(--burgundy); white-space: nowrap; }
.dish-desc { margin: 0; font-size: 14px; font-weight: 400; line-height: 1.65; text-wrap: pretty; }
.signature-cta { position: relative; text-align: center; margin-top: clamp(44px, 5vw, 64px); }

/* ---------- about ---------- */
.about { padding: clamp(64px, 8vw, 120px) 0 0; background: var(--cream-deep); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 48px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; display: block; border: 1px solid rgba(184, 154, 91, .5); }
.about-photo .watermark { bottom: -30px; inset-inline-end: -30px; width: 180px; height: 130px; opacity: .35; position: absolute; top: auto; inset-inline-start: auto; }
.about-copy { padding: 16px 0; }
.about-kicker { display: flex; align-items: center; gap: 12px; color: var(--burgundy); font-weight: 600; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.about-kicker .line { width: 36px; height: 1px; background: var(--gold); display: block; }
.about-title { font-size: clamp(32px, 4vw, 52px); line-height: 1.1; margin: 18px 0 0; }
.about-cta { margin-top: 28px; }
.about-text { margin: 22px 0 0; font-size: 16px; line-height: 1.8; font-weight: 400; text-wrap: pretty; }
.stats-grid {
  margin: clamp(48px, 6vw, 80px) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 20px;
}
.stat-card { background: #fff; border: 1px solid rgba(184, 154, 91, .35); padding: 32px 28px; text-align: center; }
.stat-big { font-family: var(--font-head); font-size: clamp(28px, 3vw, 40px); color: var(--burgundy); line-height: 1.1; white-space: nowrap; }
.stat-label { margin-top: 10px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }

/* ---------- why ---------- */
.why-section { padding: clamp(64px, 8vw, 120px) 0; background: var(--cream-deep); }
.why-title { font-size: clamp(32px, 4vw, 52px); text-align: center; margin: 20px 0 0; }
.why-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 196px), 1fr));
  gap: 20px;
}
.why-card {
  border: 1px solid rgba(184, 154, 91, .4);
  padding: 36px 22px;
  text-align: center;
  background: rgba(255, 255, 255, .4);
  transition: transform .4s ease, border-color .4s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.why-num {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-family: var(--font-head);
  font-size: 18px;
}
.why-card h3 { font-size: 21px; margin: 20px 0 0; }
.why-card p { margin: 10px 0 0; font-size: 13.5px; font-weight: 400; line-height: 1.6; }

/* ---------- gallery ---------- */
.gallery-section { padding: clamp(64px, 8vw, 120px) 0; background: var(--burgundy); color: var(--cream); }
.gallery-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 154, 91, .18), rgba(184, 154, 91, 0) 60%), radial-gradient(ellipse at 50% 100%, rgba(43, 14, 8, .55), rgba(43, 14, 8, 0) 60%);
  pointer-events: none;
}
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.gallery-title { font-size: clamp(32px, 4vw, 52px); margin: 0; }
.gallery-intro { margin: 10px 0 0; font-weight: 400; font-size: 15px; }
.gallery-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 22vw, 250px);
  grid-auto-flow: dense;
  gap: 16px;
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.gallery-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 154, 91, .6);
  padding: 6px;
  background: rgba(43, 14, 8, .25);
  cursor: zoom-in;
  min-height: 0;
}
.gallery-figure[hidden] { display: none; }
.gallery-figure img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .8s ease; }
.gallery-figure:hover img { transform: scale(1.04); }
.gallery-figure figcaption {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  padding: 28px 12px 10px;
  background: linear-gradient(180deg, rgba(43, 29, 22, 0), rgba(43, 29, 22, .85));
  color: var(--cream);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  pointer-events: none;
}
.gallery-figure:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 720px) {
  .gallery-figure figcaption { font-size: 11px; letter-spacing: .06em; padding: 22px 8px 8px; }
}

/* ---------- contact ---------- */
.contact-section { background: var(--cream); padding: clamp(64px, 8vw, 120px) 0; }
.contact-title { font-size: clamp(32px, 4vw, 52px); margin: 0 0 36px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 24px;
  align-items: stretch;
}
.find-us {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 420px;
  padding: 40px 28px;
  text-align: center;
  color: var(--cream);
  background: var(--espresso);
  border: 1px solid rgba(184, 154, 91, .5);
}
.find-us-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.find-us::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(30, 10, 4, .55), rgba(30, 10, 4, .82)); }
.find-us-mark { width: 56px; height: 40px; object-fit: cover; object-position: top; }
.find-us-kicker { color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.find-us-title { font-size: clamp(26px, 3vw, 36px); line-height: 1.15; margin: 0; }
.find-us-sub { margin: 0 0 10px; font-size: 15px; }
.contact-card { background: #fff; border: 1px solid rgba(184, 154, 91, .5); padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 22px; }
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--burgundy); }
.contact-value { margin-top: 6px; font-size: 15px; line-height: 1.6; font-style: normal; }
.contact-phone { display: inline-block; margin-top: 6px; font-size: 20px; font-family: var(--font-head); color: var(--burgundy); }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.reservation-form { border-top: 1px solid rgba(184, 154, 91, .4); padding-top: 22px; }
.reservation-form-title { font-family: var(--font-head); font-weight: 400; font-size: 20px; margin: 0; }
.reservation-intro { margin: 6px 0 0; font-size: 13.5px; line-height: 1.6; }
.reservation-sent { margin: 14px 0 0; padding: 12px 14px; border-inline-start: 2px solid var(--gold); background: var(--cream); color: var(--espresso); font-size: 14px; line-height: 1.6; }
.reservation-sent a { text-decoration: underline; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field.span-2 { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--burgundy); }
.field--submit { justify-content: flex-end; }
.reservation-fields {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
/* 16px keeps iOS Safari from zooming the page when a field is focused. */
.reservation-fields input {
  padding: 12px 14px;
  min-height: 46px;
  border: 1px solid rgba(184, 154, 91, .6);
  border-radius: 0;
  background: #fff;
  font-size: 16px;
  color: var(--espresso);
  outline: none;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
}
.reservation-fields input:focus { border-color: var(--burgundy); }
@media (max-width: 720px) {
  .find-us { min-height: 300px; }
}
.reservation-fields button { width: 100%; min-height: 46px; }
@media (max-width: 480px) { .field--submit { grid-column: 1 / -1; } .reservation-fields button { white-space: normal; } }

/* ---------- footer ---------- */
.site-footer { background: var(--burgundy); color: var(--cream); padding: clamp(56px, 7vw, 90px) 20px 32px; text-align: center; }
.footer-logo { height: 120px; width: auto; margin: 0 auto; display: block; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 30px; margin-top: 36px; }
.footer-nav a { color: var(--cream); font-size: 13px; letter-spacing: .06em; display: inline-block; padding: 8px 2px; }
.footer-nav a:hover { color: var(--gold); }
.footer-rule { margin: 20px auto 0; width: 60px; height: 1px; background: var(--gold); }
.footer-contact { margin-top: 24px; font-size: 14px; font-weight: 400; line-height: 1.8; color: var(--cream); }
.footer-contact a { color: var(--cream); direction: ltr; unicode-bidi: isolate; display: inline-block; padding: 6px 4px; }
.contact-phone { padding: 6px 0; }
.footer-social { display: flex; justify-content: center; gap: 14px; margin-top: 22px; }
.social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 18px;
}
.social-btn:hover { background: var(--gold); color: var(--espresso); }
.footer-copy { margin-top: 36px; font-size: 12px; letter-spacing: .06em; color: var(--cream); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(30, 10, 5, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox-figure { margin: 0; max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.lightbox-figure img { max-width: 100%; max-height: 82vh; object-fit: contain; border: 1px solid rgba(184, 154, 91, .6); }
.lightbox-figure figcaption { color: var(--gold); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.lightbox-arrow, .lightbox-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(30, 10, 5, .55);
  color: var(--cream);
  cursor: pointer;
  font-size: 20px;
}
.lightbox-arrow.prev { inset-inline-start: 20px; }
.lightbox-arrow.next { inset-inline-end: 20px; }
.lightbox-close { top: 20px; inset-inline-end: 20px; inset-inline-start: auto; transform: none; width: 44px; height: 44px; }
.lightbox-arrow:focus-visible, .lightbox-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 720px) {
  .lightbox { padding: 16px; }
  .lightbox-arrow.prev { inset-inline-start: 8px; }
  .lightbox-arrow.next { inset-inline-end: 8px; }
  .lightbox-close { top: 12px; inset-inline-end: 12px; }
}

/* ---------- menu page ---------- */
.menu-hero { max-width: 1280px; margin: 0 auto; padding: clamp(48px, 6vw, 88px) 20px clamp(64px, 8vw, 120px); }
.menu-intro { text-align: center; max-width: 720px; margin: 0 auto; }
.menu-title { font-size: clamp(40px, 6vw, 72px); margin: 20px 0 0; line-height: 1.05; }
.menu-subtitle { margin: 14px 0 0; font-weight: 400; font-size: clamp(15px, 1.5vw, 18px); }
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 44px; }
.menu-tab {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .25s;
  border: 1px solid rgba(128, 42, 25, .45);
  background: transparent;
  color: var(--burgundy);
  font-weight: 500;
}
.menu-tab:hover { border-color: var(--burgundy); }
.menu-tab:hover { color: var(--burgundy); }
.menu-tab.is-active, .menu-tab.is-active:hover { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.menu-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.menu-pdf { margin-top: 24px; }
.menu-panel {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  scroll-margin-top: 150px;
}
.js .menu-panel:not(.is-active) { display: none; }
@media (max-width: 760px) {
  .menu-panel { grid-template-columns: minmax(0, 1fr); margin-top: 36px; }
  .menu-tabs { gap: 6px; margin-top: 32px; }
  .menu-tab { padding: 9px 14px; }
}
.menu-panel.is-active .menu-list-wrap { animation: fadeUp .5s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.menu-cat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--gold); padding-bottom: 12px; }
.menu-cat-title { font-size: clamp(26px, 3vw, 36px); margin: 0; }
.menu-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 22px 40px; margin-top: 22px; }
.menu-item { display: flex; flex-direction: column; gap: 4px; padding-bottom: 14px; border-bottom: 1px dotted rgba(184, 154, 91, .45); }
.menu-item-row { display: flex; align-items: baseline; gap: 10px; }
.menu-item-name { font-size: 18px; margin: 0; line-height: 1.25; }
.menu-item-leader { flex: 1; border-bottom: 1px dotted var(--gold); min-width: 16px; transform: translateY(-4px); }
.menu-item-price { color: var(--burgundy); font-size: 14px; font-weight: 600; white-space: nowrap; }
.menu-cat-alt { font-family: Tajawal, var(--font-body); font-size: 15px; color: var(--burgundy); }
.menu-item-alt { font-family: Tajawal, var(--font-body); font-size: 14px; color: var(--burgundy); }
.menu-group { font-family: var(--font-head); font-weight: 400; font-size: 22px; margin: 34px 0 0; padding-bottom: 8px; border-bottom: 1px dotted var(--gold); }
.menu-group:first-of-type { margin-top: 22px; }
.menu-group span { font-family: Tajawal, var(--font-body); font-size: 15px; color: var(--burgundy); margin-inline-start: 8px; }
.menu-item-desc { margin: 0; font-size: 13px; font-weight: 400; line-height: 1.55; text-wrap: pretty; }
.menu-figure { margin: 0; position: sticky; top: 150px; border: 1px solid rgba(184, 154, 91, .55); padding: 8px; background: #fff; }
.menu-figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.menu-figure figcaption { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 12px 6px 4px; color: var(--burgundy); font-weight: 600; text-align: center; }
.menu-figure--brand { background: var(--burgundy); border-color: var(--burgundy); }
.menu-brand { aspect-ratio: 4/5; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; color: var(--cream); background: radial-gradient(ellipse at 50% 30%, rgba(184, 154, 91, .2), rgba(184, 154, 91, 0) 65%); }
.menu-figure .menu-brand img { width: 58%; height: auto; aspect-ratio: auto; object-fit: contain; }
.menu-brand span { font-size: clamp(22px, 2.4vw, 30px); text-align: center; padding: 0 16px; }
@media (max-width: 760px) { .menu-brand { aspect-ratio: 16/9; gap: 10px; } .menu-figure .menu-brand img { width: 26%; } .menu-brand span { font-size: 20px; } }
.menu-note { margin: 40px 0 0; text-align: center; font-size: 12px; }

/* ---------- Arabic (RTL) ---------- */
html[lang="ar"] { --font-body: Tajawal, Montserrat, sans-serif; --font-head: Amiri, Lustria, serif; }
/* Letter-spacing breaks the joins between Arabic letters. */
html[lang="ar"] body * { letter-spacing: 0 !important; }
html[lang="ar"] .hero-title { line-height: 1.25; }
html[lang="ar"] .btn, html[lang="ar"] .reserve-btn, html[lang="ar"] .menu-tab { font-size: 14px; font-weight: 500; }
html[lang="ar"] .section-kicker, html[lang="ar"] .about-kicker, html[lang="ar"] .contact-label, html[lang="ar"] .field label,
html[lang="ar"] .stat-label, html[lang="ar"] .trust-strip, html[lang="ar"] .find-us-kicker, html[lang="ar"] .gallery-figure figcaption { font-size: 14px; }
html[lang="ar"] .site-nav a, html[lang="ar"] .footer-nav a { font-size: 15px; }
html[lang="ar"] .dish-desc, html[lang="ar"] .menu-item-desc, html[lang="ar"] .why-card p { font-size: 15px; line-height: 1.8; }
html[lang="ar"] .menu-item-name { font-size: 20px; }
html[lang="ar"] .menu-item-alt, html[lang="ar"] .menu-cat-alt, html[lang="ar"] .menu-group span { font-family: Montserrat, Tajawal, sans-serif; font-size: 13px; }
html[lang="ar"] .lang-btn { font-family: Montserrat, Tajawal, sans-serif; font-size: 13px; }
html[lang="ar"] .about-text, html[lang="ar"] .signature-intro { line-height: 1.95; }

/* ---------- mobile refinements: lighter frames, compact header, photo sizing ---------- */
@media (max-width: 760px) {
  .about-photo img { aspect-ratio: 4/3; object-position: 50% 68%; }
  .about-photo .watermark { width: 120px; height: 86px; bottom: -18px; inset-inline-end: -12px; }
  .dish-frame { padding: 4px; }
  .dish-photo { outline: none; }
  .dish-num { top: 10px; inset-inline-start: 10px; width: 32px; height: 32px; font-size: 12px; }
  .gallery-figure { padding: 3px; border-color: rgba(184, 154, 91, .45); }
  .gallery-figure figcaption { left: 3px; right: 3px; bottom: 3px; }
  .menu-figure { position: static; order: -1; padding: 4px; }
  .menu-figure img { aspect-ratio: 16/9; }
  .menu-figure figcaption { padding: 8px 6px 2px; font-size: 10.5px; }
}
@media (min-width: 761px) {
  .about-photo { max-width: 520px; margin-inline: auto; }
}
@media (max-width: 380px) {
  .header-logo img { height: 46px; }
  .header-right { gap: 2px; }
  .lang-btn { font-size: 14px; padding-inline: 4px; }
  .reserve-btn { padding: 9px 10px; font-size: 10.5px; letter-spacing: .08em; }
  .site-nav { gap: 0 9px; padding: 0 6px 6px; }
  .site-nav a { font-size: 11.5px; letter-spacing: .02em; padding: 8px 1px; }
}
