:root {
  --ink: #11100d;
  --ink-soft: #191713;
  --ink-warm: #211c15;
  --cream: #f5f0e5;
  --paper: #fbf8f1;
  --white: #fffdf8;
  --gold: #be8a1f;
  --gold-light: #e0b85e;
  --olive: #657158;
  --muted: #756f65;
  --line: rgba(17, 16, 13, 0.14);
  --line-light: rgba(255, 253, 248, 0.15);
  --shadow: 0 28px 80px rgba(30, 22, 11, 0.14);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --arabic: Tahoma, Arial, sans-serif;
  --header-height: 84px;
  --radius: 2px;
}

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

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  overflow-x: clip;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.cart-open,
body.menu-open { overflow: hidden; }

html[dir="rtl"] body { font-family: var(--arabic); }

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

a { color: inherit; }

button, input, select { font: inherit; }

button { color: inherit; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.sr-only {
  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: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--gold-light);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus { transform: translateY(0); }

.shell { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }

.section { padding: 128px 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  display: block;
  flex: 0 0 30px;
  height: 1px;
  background: currentColor;
}

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

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 { font-family: var(--arabic); letter-spacing: 0; }

h2 { font-size: clamp(3rem, 5.7vw, 5.25rem); }

h2 em { color: var(--gold); font-weight: 400; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  padding: 13px 23px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

.button svg { width: 19px; height: 19px; }
.button:hover { transform: translateY(-2px); }

.button-primary { background: var(--gold-light); color: var(--ink); }
.button-primary:hover { background: var(--white); }
.button-ghost { border-color: rgba(255, 253, 248, 0.43); color: var(--white); }
.button-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.button-dark { border: 0; background: var(--ink); color: var(--white); }
.button-dark:hover { background: #29251f; }
.button-full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link svg { width: 18px; height: 18px; transition: transform 180ms ease; }
.text-link:hover svg { transform: translate(3px, -3px); }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.site-header.scrolled,
.site-header.mobile-expanded {
  background: rgba(17, 16, 13, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid rgba(224, 184, 94, 0.55);
  border-radius: 50%;
}

.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-family: var(--serif); font-size: 1.17rem; font-weight: 400; letter-spacing: 0.01em; }
.brand-copy small { color: var(--gold-light); font-family: var(--arabic); font-size: 0.67rem; line-height: 1.15; }

.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.2vw, 38px); }
.desktop-nav a {
  position: relative;
  color: rgba(255, 253, 248, 0.76);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--gold-light);
  transition: right 180ms ease;
}

.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.language-toggle,
.cart-button,
.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.language-toggle {
  min-width: 62px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-current { color: var(--gold-light); }

.cart-button {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-button svg { width: 17px; height: 17px; }
.cart-count {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 0.65rem;
}

.menu-toggle {
  width: 44px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.menu-toggle span { display: block; width: 20px; height: 1px; background: currentColor; transition: transform 180ms ease; }
.menu-toggle span + span { margin-top: 6px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  width: 100%;
  height: calc(100svh - var(--header-height));
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px max(32px, calc((100vw - 1240px) / 2));
  background: var(--ink);
}

.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 13px 0;
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 8vw, 3.2rem);
  line-height: 1.15;
  text-decoration: none;
}

.mobile-nav a:last-child { color: var(--gold-light); }

/* Hero */
.hero {
  position: relative;
  min-height: min(920px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-background,
.quote-background {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(10, 9, 7, 0.97) 0%, rgba(10, 9, 7, 0.86) 31%, rgba(10, 9, 7, 0.34) 66%, rgba(10, 9, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 9, 7, 0.5), transparent 45%),
    url("assets/hero-nia-walkaram.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 76px;
}

.hero-eyebrow { color: var(--gold-light); }

.hero h1 {
  max-width: 830px;
  font-size: clamp(4.2rem, 8.7vw, 8.5rem);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 em { display: block; }
.hero h1 em { color: var(--gold-light); font-size: 0.58em; font-weight: 400; letter-spacing: -0.03em; }

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.hero-proof {
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
}

.hero-proof div { display: grid; gap: 3px; padding-right: 24px; }
.hero-proof div + div { padding-left: 24px; border-left: 1px solid var(--line-light); }
.hero-proof strong { color: var(--white); font-family: var(--serif); font-size: 1.45rem; font-weight: 400; line-height: 1.1; }
.hero-proof span { color: rgba(255, 253, 248, 0.51); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 42px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 253, 248, 0.67);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: bottom right;
}

.hero-scroll svg { width: 17px; height: 17px; }

.service-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: var(--gold-light);
  color: var(--ink);
}

.service-strip-track {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 13px 0;
  animation: ticker 28s linear infinite;
}

.service-strip span { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; white-space: nowrap; }
.service-strip i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.55; }

@keyframes ticker { to { transform: translateX(-45%); } }

/* Story */
.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr); align-items: center; gap: clamp(70px, 9vw, 138px); }
.story-images { position: relative; min-height: 650px; }
.story-image { position: absolute; margin: 0; overflow: hidden; background: #d8d0c2; box-shadow: var(--shadow); }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(.2,.7,.2,1); }
.story-image:hover img { transform: scale(1.035); }
.story-image-main { top: 0; left: 0; width: 78%; height: 75%; }
.story-image-main img { object-position: center; }
.story-image-small { right: 0; bottom: 0; width: 55%; height: 42%; border: 12px solid var(--paper); }
.story-seal {
  position: absolute;
  left: -27px;
  bottom: 56px;
  width: 118px;
  height: 118px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
}
.story-seal::before { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(224,184,94,.35); border-radius: inherit; }
.story-seal span { font-family: var(--serif); font-size: 1.8rem; line-height: 1; }
.story-seal small { margin-top: 3px; font-family: var(--arabic); font-size: .72rem; }
.story-copy h2 { max-width: 630px; }
.story-copy > p { color: var(--muted); }
.story-copy .large-copy { margin: 32px 0 16px; color: var(--ink); font-family: var(--serif); font-size: 1.3rem; line-height: 1.6; }
.story-copy > p:not(.eyebrow):not(.large-copy) { margin: 0; }
.story-points { display: grid; gap: 17px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.story-points > div { display: grid; grid-template-columns: 46px 1fr; gap: 18px; }
.story-points > div > span { color: var(--gold); font-family: var(--serif); font-size: 1rem; }
.story-points p { display: grid; gap: 4px; margin: 0; }
.story-points strong { font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.story-points small { max-width: 390px; color: var(--muted); font-size: .84rem; line-height: 1.55; }

/* Signatures */
.signatures { background: var(--ink); color: var(--white); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 58px; }
.section-heading h2 { max-width: 760px; }
.section-heading > p { max-width: 400px; margin: 0 0 8px; color: rgba(255,253,248,.56); }
.gallery .section-heading > p { color: var(--muted); }

.signature-grid {
  display: grid;
  grid-template-columns: 1.14fr .86fr .86fr;
  grid-template-rows: 345px 345px;
  gap: 18px;
}

.signature-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #28241e;
}
.signature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,7,6,.86), transparent 62%); }
.signature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.signature-card:hover img { transform: scale(1.045); }
.signature-card-tall { grid-row: 1 / span 2; }
.signature-card-tall img { object-position: center; }
.signature-card-wide { grid-column: 2 / span 2; }
.signature-overlay { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; display: grid; grid-template-columns: 1fr auto; align-items: end; column-gap: 20px; }
.signature-overlay p { grid-column: 1; margin: 0 0 7px; color: var(--gold-light); font-size: .61rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.signature-overlay h3 { grid-column: 1; color: var(--white); font-size: clamp(1.7rem, 2.6vw, 2.7rem); }
.signature-overlay > span { grid-column: 1; margin-top: 9px; color: rgba(255,253,248,.7); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.signature-overlay button { grid-column: 2; grid-row: 1 / span 3; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(17,16,13,.4); color: var(--white); font-size: 1.5rem; font-weight: 300; cursor: pointer; backdrop-filter: blur(8px); transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.signature-overlay button:hover { background: var(--gold-light); color: var(--ink); transform: rotate(90deg); }

/* Menu */
.menu-section { background: var(--cream); }
.menu-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.menu-heading h2 { max-width: 710px; }
.menu-heading-actions { display: flex; align-items: center; gap: 11px; padding-bottom: 7px; }
.menu-search { position: relative; width: min(290px, 30vw); }
.menu-search svg { position: absolute; left: 16px; top: 50%; width: 18px; height: 18px; transform: translateY(-50%); color: var(--muted); }
.menu-search input { width: 100%; height: 51px; padding: 0 17px 0 45px; border: 1px solid var(--line); border-radius: 0; background: rgba(255,255,255,.43); color: var(--ink); outline: 0; }
.menu-search input:focus { border-color: var(--gold); background: var(--white); }
.pdf-link { height: 51px; display: inline-flex; align-items: center; gap: 10px; padding: 0 17px; border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.pdf-link svg { width: 17px; height: 17px; }

.category-tabs {
  position: relative;
  display: flex;
  gap: 8px;
  margin-top: 54px;
  padding-bottom: 15px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.category-tabs button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 170ms ease, border-color 170ms ease, color 170ms ease;
}
.category-tabs button:hover { border-color: rgba(17,16,13,.4); color: var(--ink); }
.category-tabs button[aria-selected="true"] { border-color: var(--ink); background: var(--ink); color: var(--white); }

.menu-panel {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(270px, .67fr) minmax(0, 1.33fr);
  margin-top: 20px;
  background: var(--white);
  box-shadow: 0 16px 60px rgba(40,31,18,.08);
}

.menu-panel-visual { position: relative; min-height: 600px; overflow: hidden; background: var(--ink-warm); }
.menu-panel-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,9,7,.88), transparent 68%); }
.menu-panel-visual img { width: 100%; height: 100%; object-fit: cover; transition: opacity 180ms ease, transform 500ms ease; }
.menu-panel-visual:hover img { transform: scale(1.025); }
.menu-panel-visual > div { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 34px; color: var(--white); }
.menu-panel-visual small { color: var(--gold-light); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.menu-panel-visual h3 { margin-top: 7px; font-size: clamp(2.25rem, 4vw, 4rem); }
.menu-panel-visual p { margin: 10px 0 0; color: rgba(255,255,255,.65); font-size: .84rem; }
.menu-items { align-content: start; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); padding: 18px 34px 30px; }

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 5px 18px;
  min-height: 109px;
  padding: 19px 8px;
  border-bottom: 1px solid var(--line);
}
.menu-item:nth-child(odd) { padding-right: 29px; border-right: 1px solid var(--line); }
.menu-item:nth-child(even) { padding-left: 29px; }
.menu-item-name { font-family: var(--serif); font-size: 1.23rem; font-weight: 600; line-height: 1.25; }
.menu-item-featured { display: inline-block; margin-left: 7px; color: var(--gold); font-family: var(--sans); font-size: .48rem; font-weight: 800; letter-spacing: .1em; vertical-align: middle; text-transform: uppercase; }
.menu-item-price { color: var(--gold); font-family: var(--serif); font-size: 1.07rem; font-weight: 600; white-space: nowrap; }
.menu-item-desc { grid-column: 1; margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.menu-item-add { grid-column: 2; grid-row: 1 / span 2; align-self: end; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; transition: background 160ms ease, color 160ms ease; }
.menu-item-add:hover { background: var(--ink); color: var(--white); }

.search-results-title { grid-column: 1 / -1; margin: 14px 8px 0; padding: 0 0 16px; border-bottom: 1px solid var(--line); font-size: 1.6rem; }
.search-category { color: var(--gold); font-size: .58rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.menu-empty { margin-top: 24px; padding: 38px; border: 1px solid var(--line); text-align: center; }
.menu-empty p { margin: 0 0 14px; }
.menu-empty button { border: 0; border-bottom: 1px solid currentColor; background: transparent; font-weight: 700; cursor: pointer; }

.menu-order-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid var(--line);
}
.menu-order-note > div { display: flex; align-items: center; gap: 15px; }
.status-dot { position: relative; width: 9px; height: 9px; flex: 0 0 9px; border-radius: 50%; background: #5b8a46; box-shadow: 0 0 0 6px rgba(91,138,70,.13); }
.menu-order-note p { display: grid; gap: 1px; margin: 0; }
.menu-order-note strong { font-size: .79rem; letter-spacing: .06em; text-transform: uppercase; }
.menu-order-note small { color: var(--muted); }
.menu-order-note .button { min-width: 240px; justify-content: space-between; }

/* Quote and gallery */
.quote-section { position: relative; min-height: 570px; display: grid; place-items: center; overflow: hidden; background: var(--ink); color: var(--white); }
.quote-background { background-image: linear-gradient(rgba(10,9,7,.82),rgba(10,9,7,.88)), url("assets/dishes/harira.webp"); background-position: center; filter: saturate(.7); }
.quote-content { position: relative; z-index: 2; display: grid; justify-items: center; padding: 100px 0; text-align: center; }
.quote-content img { width: 92px; height: 92px; object-fit: cover; margin-bottom: 30px; border: 1px solid rgba(224,184,94,.55); border-radius: 50%; }
.quote-content blockquote { max-width: 980px; margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 5.3vw, 5.6rem); line-height: 1.1; letter-spacing: -.045em; }
.quote-content blockquote em { color: var(--gold-light); font-weight: 400; }
.quote-content > p { margin: 26px 0 0; color: rgba(255,253,248,.51); font-size: .63rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.gallery { background: var(--paper); }
.gallery .section-heading { align-items: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); grid-template-rows: 310px 310px; gap: 14px; }
.gallery-grid figure { margin: 0; overflow: hidden; background: #ddd5c7; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 300ms ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-large { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.gallery-wide { grid-column: 3 / span 2; }

/* Visit */
.visit { background: #eae2d3; }
.visit-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr); align-items: start; gap: clamp(64px, 9vw, 130px); }
.visit-copy h2 { max-width: 650px; }
.visit-copy > p:not(.eyebrow) { max-width: 610px; margin: 28px 0 0; color: var(--muted); font-family: var(--serif); font-size: 1.18rem; }
.contact-list { display: grid; margin-top: 42px; border-top: 1px solid var(--line); }
.contact-list > a { display: grid; grid-template-columns: 48px minmax(0,1fr) 24px; align-items: center; gap: 17px; padding: 22px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.contact-icon svg { width: 20px; height: 20px; }
.contact-list a > span:nth-child(2) { display: grid; gap: 3px; }
.contact-list small { color: var(--gold); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-list strong { font-size: .88rem; font-weight: 600; line-height: 1.45; }
.contact-arrow { width: 18px; height: 18px; transition: transform 180ms ease; }
.contact-list a:hover .contact-arrow { transform: translateX(4px); }
.delivery-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 25px; color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.delivery-row a { color: var(--ink); text-underline-offset: 5px; }

.reservation-card { padding: clamp(30px, 4vw, 54px); background: var(--ink); color: var(--white); box-shadow: 0 30px 80px rgba(41,31,17,.14); }
.reservation-header h3 { font-size: clamp(2.5rem, 4vw, 3.6rem); }
.reservation-header > p:last-child { margin: 15px 0 0; color: rgba(255,253,248,.58); }
.reservation-card form { display: grid; gap: 20px; margin-top: 34px; }
.reservation-card label { display: grid; gap: 7px; }
.reservation-card label > span { color: rgba(255,253,248,.58); font-size: .61rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.reservation-card input,
.reservation-card select {
  width: 100%;
  height: 51px;
  padding: 0 13px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  border-radius: 0;
  outline: 0;
  background: rgba(255,255,255,.04);
  color: var(--white);
  color-scheme: dark;
}
.reservation-card input:focus,
.reservation-card select:focus { border-color: var(--gold-light); background: rgba(255,255,255,.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.reservation-card .button { margin-top: 6px; }
.reservation-note { display: flex; align-items: center; gap: 10px; margin: 18px 0 0; color: rgba(255,253,248,.43); font-size: .68rem; }
.reservation-note svg { width: 17px; height: 17px; flex: 0 0 17px; }

/* Footer */
.site-footer { padding: 78px 0 24px; background: var(--ink); color: var(--white); }
.footer-main { display: grid; grid-template-columns: minmax(260px,.8fr) minmax(0,1.2fr); gap: 90px; padding-bottom: 67px; }
.footer-brand .brand img { width: 66px; height: 66px; }
.footer-brand .brand-copy strong { font-size: 1.4rem; }
.footer-brand > p { max-width: 330px; margin: 22px 0 0; color: rgba(255,253,248,.47); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 38px; }
.footer-links > div { display: grid; align-content: start; gap: 10px; }
.footer-links h3 { margin: 0 0 8px; color: var(--gold-light); font-family: var(--sans); font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: rgba(255,253,248,.62); text-decoration: none; font-size: .84rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 23px; border-top: 1px solid var(--line-light); }
.footer-bottom p { margin: 0; color: rgba(255,253,248,.35); font-size: .66rem; letter-spacing: .05em; }

/* Cart */
.cart-backdrop { position: fixed; z-index: 1990; inset: 0; background: rgba(5,4,3,.6); opacity: 0; transition: opacity 220ms ease; backdrop-filter: blur(4px); }
.cart-backdrop.visible { opacity: 1; }
.cart-drawer {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100%);
  display: grid;
  grid-template-rows: auto minmax(0,1fr) auto;
  padding: 30px;
  background: var(--paper);
  box-shadow: -20px 0 70px rgba(0,0,0,.23);
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(.2,.8,.2,1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.cart-header .eyebrow { margin-bottom: 7px; }
.cart-header h2 { font-size: 2.4rem; }
.cart-close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.5rem; cursor: pointer; }
.cart-body { min-height: 0; overflow-y: auto; }
.cart-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 9px 18px; padding: 19px 2px; border-bottom: 1px solid var(--line); }
.cart-row-name { font-family: var(--serif); font-size: 1.15rem; line-height: 1.3; }
.cart-row-category { color: var(--muted); font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; }
.cart-row-price { font-family: var(--serif); color: var(--gold); }
.quantity-control { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.quantity-buttons { display: flex; align-items: center; gap: 11px; }
.quantity-buttons button,
.remove-item { border: 0; background: transparent; cursor: pointer; }
.quantity-buttons button { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }
.quantity-buttons span { min-width: 16px; text-align: center; font-size: .8rem; }
.remove-item { color: var(--muted); font-size: .65rem; text-decoration: underline; text-underline-offset: 4px; }
.cart-empty-state { align-self: center; display: grid; justify-items: center; padding: 60px 30px; text-align: center; }
.cart-empty-state > span { width: 82px; height: 82px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 1.6rem; }
.cart-empty-state h3 { margin-top: 22px; font-size: 1.8rem; }
.cart-empty-state p { max-width: 290px; margin: 11px 0 21px; color: var(--muted); }
.cart-empty-state button { border: 0; border-bottom: 1px solid currentColor; background: transparent; font-weight: 700; cursor: pointer; }
.cart-footer { padding-top: 22px; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; align-items: center; justify-content: space-between; font-family: var(--serif); font-size: 1.2rem; }
.cart-total-row strong { color: var(--gold); font-size: 1.45rem; }
.cart-footer > p { margin: 5px 0 16px; color: var(--muted); font-size: .67rem; }
.whatsapp-order { width: 100%; min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 12px; border: 0; background: #255f43; color: white; font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; }
.whatsapp-order svg { width: 20px; height: 20px; }

.mobile-action-bar { display: none; }
.toast { position: fixed; z-index: 3000; left: 50%; bottom: 28px; max-width: calc(100% - 32px); padding: 12px 18px; background: var(--ink); color: var(--white); box-shadow: 0 12px 40px rgba(0,0,0,.2); font-size: .76rem; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; transition: opacity 180ms ease, transform 180ms ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Reveal motion */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RTL */
html[dir="rtl"] .eyebrow { letter-spacing: 0; }
html[dir="rtl"] .hero-background { transform: scaleX(-1.01); }
html[dir="rtl"] .hero h1 { letter-spacing: 0; }
html[dir="rtl"] .hero-proof div { padding-right: 0; padding-left: 24px; }
html[dir="rtl"] .hero-proof div + div { padding-left: 0; padding-right: 24px; border-left: 0; border-right: 1px solid var(--line-light); }
html[dir="rtl"] .menu-search svg { left: auto; right: 16px; }
html[dir="rtl"] .menu-search input { padding: 0 45px 0 17px; }
html[dir="rtl"] .menu-item:nth-child(odd) { padding-right: 8px; padding-left: 29px; border-right: 0; border-left: 1px solid var(--line); }
html[dir="rtl"] .menu-item:nth-child(even) { padding-left: 8px; padding-right: 29px; }
html[dir="rtl"] .menu-item-featured { margin-left: 0; margin-right: 7px; }
html[dir="rtl"] .cart-drawer { right: auto; left: 0; transform: translateX(-105%); }
html[dir="rtl"] .cart-drawer.open { transform: translateX(0); }

@media (max-width: 1120px) {
  :root { --header-height: 76px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .story-grid { grid-template-columns: 1fr 1fr; gap: 65px; }
  .story-images { min-height: 570px; }
  .signature-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 440px 330px 330px; }
  .signature-card-tall { grid-row: 1; grid-column: 1 / span 2; }
  .signature-card-wide { grid-column: 1 / span 2; }
  .signature-card-tall img { object-position: center; }
  .menu-panel { grid-template-columns: minmax(250px,.55fr) minmax(0,1.45fr); }
  .menu-items { padding-inline: 24px; }
  .menu-item:nth-child(odd) { padding-right: 20px; }
  .menu-item:nth-child(even) { padding-left: 20px; }
  .visit-grid { gap: 64px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 36px, 680px); }
  .section { padding: 90px 0; }
  .brand-copy strong { font-size: 1rem; }
  .header-actions { gap: 7px; }
  .cart-button > span:not(.cart-count) { display: none; }
  .cart-button { padding: 0 10px; }
  .hero { min-height: 860px; }
  .hero-background { background-image: linear-gradient(90deg, rgba(10,9,7,.94), rgba(10,9,7,.65) 65%, rgba(10,9,7,.44)), linear-gradient(0deg, rgba(10,9,7,.6), transparent 45%), url("assets/hero-nia-walkaram.webp"); background-position: 62% center; }
  .hero-content { padding-top: 128px; padding-bottom: 115px; }
  .hero h1 { max-width: 680px; font-size: clamp(4rem, 13vw, 6.8rem); }
  .hero-lead { max-width: 540px; }
  .hero-scroll { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-images { min-height: 600px; max-width: 580px; }
  .story-copy { max-width: 650px; }
  .section-heading, .menu-heading { align-items: flex-start; flex-direction: column; }
  .section-heading > p { max-width: 570px; }
  .menu-heading-actions { width: 100%; padding: 0; }
  .menu-search { flex: 1; width: auto; }
  .menu-panel { grid-template-columns: 1fr; }
  .menu-panel-visual { min-height: 370px; }
  .menu-panel-visual img { position: absolute; inset: 0; }
  .menu-items { padding: 16px 28px 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 240px 240px; }
  .gallery-large { grid-column: 1 / span 2; grid-row: 1; }
  .gallery-wide { grid-column: 1 / span 2; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-copy { max-width: 670px; }
  .reservation-card { max-width: 670px; }
  .footer-main { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 560px) {
  :root { --header-height: 70px; }
  .shell { width: calc(100% - 30px); }
  .section { padding: 74px 0; }
  h2 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .site-header .brand img { width: 45px; height: 45px; }
  .site-header .brand-copy { display: none; }
  .language-toggle { min-width: 54px; height: 40px; }
  .cart-button, .menu-toggle { height: 40px; }
  .mobile-nav { padding-inline: 24px; }
  .hero { min-height: max(760px, 100svh); }
  .hero-background { background-image: linear-gradient(180deg, rgba(10,9,7,.34), rgba(10,9,7,.68) 46%, rgba(10,9,7,.96) 83%), url("assets/hero-nia-walkaram.webp"); background-position: 70% center; }
  html[dir="rtl"] .hero-background { transform: scaleX(-1.01); background-position: 70% center; }
  .hero-content { align-self: end; padding-top: 110px; padding-bottom: 78px; }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero h1 { max-width: 100%; font-size: clamp(3.6rem, 16vw, 5.2rem); line-height: .94; }
  .hero h1 em { margin-top: 8px; font-size: .55em; line-height: 1.02; }
  .hero-lead { margin-top: 19px; font-size: 1rem; line-height: 1.5; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr 1fr; margin-top: 30px; padding-top: 19px; }
  .hero-proof div { padding-right: 14px; }
  .hero-proof div + div { padding-left: 14px; }
  .hero-proof div:last-child { display: none; }
  .hero-proof strong { font-size: 1.2rem; }
  .hero-proof span { font-size: .55rem; }
  .service-strip-track { padding: 11px 0; }
  .story-images { min-height: 460px; }
  .story-image-main { width: 88%; height: 76%; }
  .story-image-small { width: 57%; height: 39%; border-width: 7px; }
  .story-seal { left: -7px; bottom: 40px; width: 88px; height: 88px; }
  .story-seal span { font-size: 1.4rem; }
  .story-copy .large-copy { margin-top: 25px; font-size: 1.12rem; }
  .story-points > div { grid-template-columns: 38px 1fr; gap: 10px; }
  .section-heading { gap: 20px; margin-bottom: 38px; }
  .signature-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 390px); gap: 12px; }
  .signature-card-tall, .signature-card-wide { grid-column: 1; grid-row: auto; }
  .signature-overlay { left: 21px; right: 21px; bottom: 22px; }
  .signature-overlay h3 { font-size: 2rem; }
  .menu-heading-actions { display: grid; grid-template-columns: 1fr auto; }
  .menu-search { min-width: 0; }
  .pdf-link span { display: none; }
  .pdf-link { padding-inline: 16px; }
  .category-tabs { margin-top: 34px; margin-right: -15px; padding-right: 15px; }
  .menu-panel { margin-inline: -15px; box-shadow: none; }
  .menu-panel-visual { min-height: 290px; }
  .menu-panel-visual > div { left: 23px; right: 23px; bottom: 23px; }
  .menu-items { grid-template-columns: 1fr; padding: 9px 23px 25px; }
  .menu-item { min-height: 94px; padding: 17px 0 !important; border-right: 0 !important; border-left: 0 !important; }
  .menu-item-name { font-size: 1.13rem; }
  .menu-order-note { align-items: stretch; flex-direction: column; padding: 20px; }
  .menu-order-note .button { width: 100%; min-width: 0; }
  .quote-section { min-height: 520px; }
  .quote-content blockquote { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .quote-content img { width: 76px; height: 76px; }
  .gallery .section-heading { align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 210px 210px; gap: 8px; }
  .gallery-large { grid-column: 1 / span 2; }
  .visit-grid { gap: 48px; }
  .contact-list > a { grid-template-columns: 42px minmax(0,1fr) 18px; gap: 12px; }
  .contact-icon { width: 40px; height: 40px; }
  .contact-list strong { font-size: .78rem; }
  .delivery-row { align-items: flex-start; flex-direction: column; gap: 7px; }
  .reservation-card { margin-inline: -15px; padding: 30px 23px; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 6px; padding-bottom: 74px; }
  .cart-drawer { padding: 22px 20px calc(22px + env(safe-area-inset-bottom)); }
  .mobile-action-bar {
    position: fixed;
    z-index: 950;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(64px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(17,16,13,.98);
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 -10px 35px rgba(0,0,0,.18);
  }
  .mobile-action-bar a { display: grid; place-content: center; justify-items: center; gap: 2px; color: rgba(255,255,255,.75); text-decoration: none; font-size: .55rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .mobile-action-bar a + a { border-left: 1px solid rgba(255,255,255,.11); }
  .mobile-action-bar svg { width: 19px; height: 19px; color: var(--gold-light); }
  .toast { bottom: calc(78px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
