/* ──────────────────────────────────────────────────────────
   LEVANT ORIENTAL KITCHEN · HAMBURG
   Design tokens
   ────────────────────────────────────────────────────────── */
:root {
  --bg:         #0E0A05;
  --bg-2:       #14100A;
  --surface:    #1B1610;
  --surface-2:  #251D12;
  --line:       rgba(212,162,76,0.16);
  --line-strong:rgba(212,162,76,0.34);

  /* warm core */
  --gold:       #D4A24C;
  --gold-light: #E8C078;
  --gold-deep:  #A77A2C;
  --copper:     #B5654A;

  /* NEW vibrant accents */
  --teal:       #2E8C99;
  --teal-light: #4FB8C5;
  --teal-deep:  #1A5C66;
  --pomegranate:#C53A4A;
  --pomegranate-light:#E5586A;
  --pomegranate-deep:#8B2030;
  --saffron:    #E89B3E;
  --saffron-light:#F2B86A;
  --aubergine:  #6B3060;
  --aubergine-light:#9C5290;
  --pistachio:  #94B872;
  --pistachio-light:#B5D592;

  --cream:      #F4E8D0;
  --cream-soft: #E8D9B8;
  --mute:       #998566;
  --mute-2:     #6C5E47;

  --serif:         'Cormorant Garamond', 'Times New Roman', serif;
  --sans:          'Inter', system-ui, -apple-system, sans-serif;
  --arabic:        'Amiri', 'Cormorant Garamond', serif;
  --arabic-display:'Amiri', 'Cormorant Garamond', serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.6), 0 6px 20px -6px rgba(0,0,0,0.4);
  --shadow:    0 14px 30px -14px rgba(0,0,0,0.55);

  --ease:    cubic-bezier(.2,.7,.2,1);
  --section: clamp(80px, 10vw, 140px);
}

/* ──────────────────────────────────────────────────────────
   Reset & base
   ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--cream);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
[hidden] { display: none !important; }

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

/* ──────────────────────────────────────────────────────────
   Arabic / RTL specifics
   ────────────────────────────────────────────────────────── */
html[lang="ar"] body { font-family: var(--arabic); font-weight: 400; line-height: 1.7; }
html[lang="ar"] .h-display,
html[lang="ar"] .hero__title,
html[lang="ar"] .menu-col__title,
html[lang="ar"] .menu-list__head h4,
html[lang="ar"] .info-block__value,
html[lang="ar"] .spezial-card__body h3 { font-family: var(--arabic-display); }
html[lang="ar"] .hero__title { font-size: clamp(2.6rem, 8vw, 6rem); line-height: 1.25; }
html[lang="ar"] .h-display { line-height: 1.3; }
html[lang="ar"] .brand__name { font-family: var(--arabic-display); font-size: 1.55rem; letter-spacing: 0; }
html[lang="ar"] .brand__sub { font-family: var(--arabic); }
html[lang="ar"] .hero__ar { display: none; }
html[dir="rtl"] .hero__scroll,
html[dir="rtl"] .sticky-order__arrow { transform: scaleX(-1); }
html[dir="rtl"] .hero__scroll { left: auto; right: 50%; transform: translateX(50%) scaleX(-1); }
html[dir="rtl"] .menu-list .dots { /* dots flow same in rtl */ }

/* ──────────────────────────────────────────────────────────
   Layout helpers
   ────────────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-inline: auto;
}
.section { padding-block: var(--section); position: relative; }

/* ──────────────────────────────────────────────────────────
   Typography
   ────────────────────────────────────────────────────────── */
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--cream);
  margin: 0 0 .5em;
}
.h-display em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 70%, var(--pomegranate-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0 0 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pomegranate);
  box-shadow: 0 0 0 4px rgba(197,58,74,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(197,58,74,.18); }
  50%     { box-shadow: 0 0 0 7px rgba(197,58,74,.05); }
}
.ar { font-family: var(--arabic-display); font-weight: 400; letter-spacing: 0; }

p { margin: 0 0 1em; color: var(--cream-soft); }
.section-head { margin-bottom: clamp(40px, 5vw, 72px); max-width: 760px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__sub { color: var(--mute); font-size: 1.05rem; }

.link-arrow {
  color: var(--saffron);
  border-bottom: 1px solid rgba(232,155,62,.4);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.link-arrow:hover { color: var(--saffron-light); border-color: var(--saffron-light); }

/* ──────────────────────────────────────────────────────────
   Buttons
   ────────────────────────────────────────────────────────── */
.btn {
  --pad-y: 14px; --pad-x: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease),
              border-color .25s var(--ease), color .25s var(--ease),
              box-shadow .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron-light) 100%);
  color: var(--bg);
  box-shadow: 0 12px 30px -10px rgba(212,162,76,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--gold:hover {
  box-shadow: 0 18px 40px -10px rgba(212,162,76,0.75), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--red {
  background: linear-gradient(135deg, var(--pomegranate) 0%, var(--pomegranate-light) 100%);
  color: var(--cream);
  box-shadow: 0 12px 30px -10px rgba(197,58,74,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--red:hover {
  box-shadow: 0 18px 40px -10px rgba(197,58,74,0.75), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: var(--bg);
  box-shadow: 0 12px 30px -10px rgba(46,140,153,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--teal:hover {
  box-shadow: 0 18px 40px -10px rgba(46,140,153,0.75), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--ghost {
  color: var(--cream);
  border-color: var(--line-strong);
  background: rgba(212,162,76,0.04);
}
.btn--ghost:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(232,155,62,0.08);
}
.btn--sm { --pad-y: 10px; --pad-x: 20px; font-size: 0.85rem; }
.btn--lg { --pad-y: 18px; --pad-x: 36px; font-size: 1rem; }

/* ──────────────────────────────────────────────────────────
   Language switcher
   ────────────────────────────────────────────────────────── */
.lang-switch {
  display: inline-flex; align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(212,162,76,0.04);
}
.lang-switch button {
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mute);
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
  text-transform: uppercase;
}
.lang-switch button:hover { color: var(--cream); }
.lang-switch button.is-active {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--bg);
}
.lang-switch__ar { font-family: var(--arabic); text-transform: none; font-size: 0.9rem; }

/* ──────────────────────────────────────────────────────────
   Navigation
   ────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 16px;
  background: rgba(14,10,5,0.4);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
.nav--scrolled {
  background: rgba(14,10,5,0.85);
  border-bottom-color: var(--line);
  padding-block: 10px;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  flex-shrink: 0;
  line-height: 1;
}
.brand__mark {
  width: 42px; height: 42px;
  display: inline-block; flex-shrink: 0;
  transition: transform .6s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(212,162,76,0.25));
}
.brand:hover .brand__mark { transform: rotate(12deg); }
.brand__mark--lg { width: 64px; height: 64px; }
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__type {
  display: flex; flex-direction: column; gap: 3px;
}
.brand__name {
  font-family: var(--serif); font-size: 1.4rem;
  color: var(--cream); font-weight: 500;
  letter-spacing: 0.01em; line-height: 1;
}
.brand__sub {
  font-size: 0.62rem; color: var(--mute);
  letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
  line-height: 1;
}

.nav__links {
  display: flex; gap: 24px;
  font-size: 0.92rem;
  color: var(--cream-soft);
  font-weight: 400;
}
.nav__links a {
  position: relative;
  transition: color .2s var(--ease);
  white-space: nowrap;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: linear-gradient(90deg, var(--gold), var(--pomegranate));
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav__links a:hover { color: var(--saffron); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 14px; }

.nav__toggle { display: none; width: 36px; height: 36px; position: relative; }
.nav__toggle span {
  display: block; position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: var(--cream); transition: transform .25s var(--ease), opacity .2s var(--ease), top .25s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 12px; }
.nav__toggle span:nth-child(2) { top: 18px; }
.nav__toggle span:nth-child(3) { top: 24px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

/* ── Mobile menu: collapsed by default, only opens when toggled ── */
.nav__mobile {
  display: none;
  flex-direction: column; gap: 8px;
  padding: 24px clamp(20px, 4vw, 48px) 32px;
  background: rgba(14,10,5,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream-soft);
  font-size: 1.05rem;
}
.nav__mobile a.btn { border-bottom: 0; margin-top: 12px; align-self: flex-start; }
.nav__mobile .lang-switch { margin-top: 12px; align-self: flex-start; }

@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav .btn--header { display: none; }
}
@media (min-width: 1081px) {
  .nav__mobile { display: none !important; }
}

/* ──────────────────────────────────────────────────────────
   Hero
   ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 140px;
  padding-bottom: 120px;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(197,58,74,0.18), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(46,140,153,0.16), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(212,162,76,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero__pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23D4A24C' stroke-width='0.6' opacity='0.65'><circle cx='40' cy='40' r='22'/><circle cx='0' cy='40' r='22'/><circle cx='80' cy='40' r='22'/><circle cx='40' cy='0' r='22'/><circle cx='40' cy='80' r='22'/><circle cx='40' cy='40' r='4'/></g></svg>");
  opacity: 0.12;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 70vmax; height: 70vmax;
  top: -20vmax; right: -25vmax;
  background: radial-gradient(circle, rgba(232,155,62,0.20) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}
.hero__glow--teal {
  width: 60vmax; height: 60vmax;
  top: auto; bottom: -25vmax; right: auto; left: -25vmax;
  background: radial-gradient(circle, rgba(46,140,153,0.20) 0%, transparent 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  min-width: 0;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
  margin: 0 0 1.5rem;
  color: var(--cream);
}
.hero__ar {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--arabic-display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 50%, var(--pomegranate-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}
.hero__ar::before, .hero__ar::after {
  content: ''; display: inline-block;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  -webkit-text-fill-color: initial;
}
.hero__lead { display: block; opacity: 0.65; font-style: italic; font-weight: 400; color: var(--cream-soft); }
.hero__main { display: block; }
.hero__main em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 60%, var(--pomegranate-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 620px;
  color: var(--cream-soft);
  margin: 0 0 2.5rem;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 4rem; }

.hero__meta {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 720px;
}
.hero__meta li { display: flex; flex-direction: column; gap: 4px; }
.hero__meta strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
.hero__meta li:nth-child(1) strong { color: var(--gold); }
.hero__meta li:nth-child(2) strong { color: var(--saffron); }
.hero__meta li:nth-child(3) strong { color: var(--pistachio); }
.hero__meta li:nth-child(4) strong { color: var(--teal-light); }
.hero__meta span { font-size: 0.8rem; color: var(--mute); letter-spacing: 0.04em; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 36px;
  transform: translateX(-50%);
  width: 24px; height: 40px; border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: grid; place-items: center;
  z-index: 2;
}
.hero__scroll span {
  width: 2px; height: 8px; background: var(--saffron); border-radius: 2px;
  animation: scroll 1.6s ease-in-out infinite;
}
@keyframes scroll {
  0%   { transform: translateY(-6px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

@media (max-width: 720px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 18px 20px; }
}

/* ──────────────────────────────────────────────────────────
   Story
   ────────────────────────────────────────────────────────── */
.story__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.story__media { position: relative; aspect-ratio: 4/5; }
.card-art {
  position: relative; height: 100%; width: 100%;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 70% 30%, rgba(232,155,62,0.18), transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(46,140,153,0.14), transparent 60%),
    linear-gradient(160deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.card-art::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23D4A24C' stroke-width='0.6' opacity='0.7'><circle cx='40' cy='40' r='22'/><circle cx='0' cy='40' r='22'/><circle cx='80' cy='40' r='22'/><circle cx='40' cy='0' r='22'/><circle cx='40' cy='80' r='22'/></g></svg>");
  opacity: 0.16;
  mask-image: radial-gradient(ellipse at center, transparent 25%, black 65%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 25%, black 65%);
}
.card-art--lantern svg { width: 70%; height: 70%; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }

.value-list { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; gap: 22px; }
.value-list li { display: flex; gap: 18px; align-items: flex-start; }
.value-list__num {
  flex: 0 0 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--arabic); font-size: 1.4rem; font-weight: 700;
  background: rgba(212,162,76,0.06);
}
.value-list li:nth-child(1) .value-list__num { color: var(--saffron); border-color: rgba(232,155,62,0.4); background: rgba(232,155,62,0.08); }
.value-list li:nth-child(2) .value-list__num { color: var(--pomegranate-light); border-color: rgba(229,88,106,0.4); background: rgba(197,58,74,0.08); }
.value-list li:nth-child(3) .value-list__num { color: var(--teal-light); border-color: rgba(79,184,197,0.4); background: rgba(46,140,153,0.08); }
.value-list h3 { margin: 0 0 4px; font-family: var(--serif); font-weight: 500; font-size: 1.2rem; color: var(--cream); }
.value-list p { margin: 0; color: var(--mute); font-size: 0.95rem; }

@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__media { aspect-ratio: 4/3; max-width: 400px; }
}

/* ──────────────────────────────────────────────────────────
   Spezialitäten
   ────────────────────────────────────────────────────────── */
.spezial__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.spezial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.spezial-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px; pointer-events: none;
  background: linear-gradient(135deg, transparent 60%, var(--accent, var(--gold)) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0; transition: opacity .35s var(--ease);
}
.spezial-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.spezial-card:hover::after { opacity: 1; }
.spezial-card--hero { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; --accent: var(--gold); }
.spezial-card:nth-child(2) { --accent: var(--pomegranate); }
.spezial-card:nth-child(3) { --accent: var(--pistachio); }
.spezial-card:nth-child(4) { --accent: var(--teal); }

.spezial-card__art {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.spezial-card--hero .spezial-card__art { aspect-ratio: 16/9; flex: 1; }
.spezial-card__body { padding: clamp(22px, 2vw, 32px); }
.spezial-card__body h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  margin: 8px 0 12px; color: var(--cream);
}
.spezial-card--hero .spezial-card__body h3 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.spezial-card__body p { color: var(--cream-soft); font-size: 0.95rem; margin: 0 0 1rem; }
.spezial-card .price {
  font-family: var(--serif); font-size: 1.4rem;
  color: var(--accent, var(--gold));
  margin: 0; font-weight: 500;
}
.spezial-card .price s { color: var(--mute-2); font-size: 0.78em; margin-right: 8px; }

.tag {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--mute);
  font-weight: 500;
}
.tag--gold  { color: var(--gold);      border-color: rgba(212,162,76,0.4); background: rgba(212,162,76,0.10); }
.tag--red   { color: var(--pomegranate-light); border-color: rgba(229,88,106,0.45); background: rgba(197,58,74,0.10); }
.tag--green { color: var(--pistachio); border-color: rgba(148,184,114,0.42); background: rgba(148,184,114,0.10); }
.tag--teal  { color: var(--teal-light); border-color: rgba(79,184,197,0.42); background: rgba(46,140,153,0.10); }

@media (max-width: 1000px) {
  .spezial__grid { grid-template-columns: repeat(2, 1fr); }
  .spezial-card--hero { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 620px) {
  .spezial__grid { grid-template-columns: 1fr; }
  .spezial-card--hero { grid-column: auto; }
}

/* ──────────────────────────────────────────────────────────
   Menü
   ────────────────────────────────────────────────────────── */
.menu {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(46,140,153,0.10), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(197,58,74,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  position: relative;
}
.menu__pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%23D4A24C' stroke-width='0.6' opacity='0.55'><circle cx='60' cy='60' r='33'/><circle cx='0' cy='60' r='33'/><circle cx='120' cy='60' r='33'/><circle cx='60' cy='0' r='33'/><circle cx='60' cy='120' r='33'/><circle cx='60' cy='60' r='6'/></g></svg>");
  opacity: 0.06; pointer-events: none;
}
.menu .container { position: relative; }
.menu__columns {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.menu-col__title {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.6rem; color: var(--cream);
  margin: 0 0 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.menu-col__title--space { margin-top: 48px; }
.menu-col__title .ornament { font-size: 0.9em; }
.menu-col:nth-child(1) .menu-col__title .ornament { color: var(--gold); }
.menu-col:nth-child(2) .menu-col__title .ornament { color: var(--pomegranate-light); }
.menu-col:nth-child(3) .menu-col__title:nth-of-type(1) .ornament { color: var(--saffron); }
.menu-col:nth-child(3) .menu-col__title:nth-of-type(2) .ornament { color: var(--teal-light); }

.menu-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; }
.menu-list li { display: grid; gap: 4px; }
.menu-list__head { display: flex; align-items: baseline; gap: 8px; }
.menu-list__head h4 {
  margin: 0; font-family: var(--serif); font-weight: 500; font-size: 1.15rem;
  color: var(--cream); flex-shrink: 0;
}
.menu-list__head h4 .badge { font-family: var(--sans); }
.menu-list .dots {
  flex: 1; height: 1px; border-bottom: 1.5px dotted var(--mute-2);
  transform: translateY(-4px);
}
.menu-list__price {
  font-family: var(--serif); font-size: 1.15rem; color: var(--gold);
  font-weight: 500; flex-shrink: 0;
}
.menu-list p { margin: 0; font-size: 0.88rem; color: var(--mute); }

.badge {
  display: inline-block; vertical-align: middle;
  font-size: 0.65rem; padding: 2px 8px; border-radius: 999px;
  background: rgba(148,184,114,0.14); color: var(--pistachio);
  border: 1px solid rgba(148,184,114,0.4);
  margin-left: 8px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500;
}
.badge--gold {
  background: rgba(232,155,62,0.14); color: var(--saffron);
  border-color: rgba(232,155,62,0.4);
}

.menu__cta {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}

@media (max-width: 980px) {
  .menu__columns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .menu__columns { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────
   Galerie
   ────────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery-tile {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.gallery-tile:hover { transform: scale(1.02); border-color: var(--line-strong); }
.gallery-tile--lg { grid-row: span 2; grid-column: span 2; }
.gallery-tile--wide { grid-column: span 2; }
.gallery-tile__art { position: absolute; inset: 0; }
.gallery-tile figcaption {
  position: absolute; left: 16px; bottom: 16px;
  color: var(--cream); font-size: 0.85rem;
  background: rgba(14,10,5,0.6);
  backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line);
}
html[dir="rtl"] .gallery-tile figcaption { left: auto; right: 16px; }

@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-tile--lg, .gallery-tile--wide { grid-column: span 2; }
  .gallery-tile--lg { grid-row: auto; }
}

/* ──────────────────────────────────────────────────────────
   Dish placeholder art (replace with photos)
   Slightly more vibrant gradients
   ────────────────────────────────────────────────────────── */
.dish { width: 100%; height: 100%; position: relative; }
.dish::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23F4E8D0' stroke-width='0.5' opacity='0.22'><circle cx='40' cy='40' r='18'/><circle cx='40' cy='40' r='9'/></g></svg>");
  opacity: 0.5;
}
.dish::after {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,150,0.30), transparent 70%);
}
.dish--shawarma { background:
  radial-gradient(ellipse at 30% 30%, #E07A3A 0%, #A23A2A 45%, #3B1410 100%); }
.dish--mezza    { background:
  radial-gradient(ellipse at 70% 30%, #F2B86A 0%, #C53A4A 60%, #2A1A1A 100%); }
.dish--falafel  { background:
  radial-gradient(ellipse at 50% 40%, #B5D592 0%, #5C7A3A 55%, #1B2410 100%); }
.dish--chicken  { background:
  radial-gradient(ellipse at 40% 50%, #E89B3E 0%, #A23A2A 55%, #1F0E08 100%); }
.dish--bread    { background:
  radial-gradient(ellipse at 50% 60%, #F4D9A8 0%, #B5654A 60%, #1A140C 100%); }
.dish--tea      { background:
  radial-gradient(ellipse at 50% 40%, #4FB8C5 0%, #1A5C66 60%, #0E1A1F 100%); }

/* ──────────────────────────────────────────────────────────
   Catering
   ────────────────────────────────────────────────────────── */
.catering {
  position: relative;
  background:
    linear-gradient(180deg, var(--bg) 0%, #21120c 46%, var(--bg-2) 100%);
  overflow: hidden;
}

.catering::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(135deg, rgba(244,232,208,0.34) 0 1px, transparent 1px),
    linear-gradient(45deg, rgba(244,232,208,0.18) 0 1px, transparent 1px);
  background-size: 42px 42px;
}

.catering__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}

.catering__lead {
  max-width: 660px;
  color: var(--cream-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  margin: 0 0 28px;
}

.catering__panel {
  position: relative;
  min-height: 330px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 242, 214, 0.18);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.catering__panel img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transform: scale(1.02);
}

.catering__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 8, 6, 0.04), rgba(18, 8, 6, 0.76)),
    linear-gradient(90deg, rgba(18, 8, 6, 0.36), transparent 60%);
}

.catering__panelText {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.catering__panelText strong {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1;
  color: var(--cream);
}

.catering__panelText span {
  color: var(--gold-light);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catering__platter {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 242, 214, 0.14);
  border-radius: 8px;
  background: rgba(255, 242, 214, 0.055);
}

.catering__platter p {
  margin: 0 0 12px;
  color: var(--mute);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.catering__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catering__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(159, 178, 107, 0.12);
  border: 1px solid rgba(159, 178, 107, 0.36);
  color: var(--pistachio-light);
  font-size: 0.9rem;
}

.catering__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.catering__feature {
  padding: 16px;
  border-radius: 8px;
  background: rgba(18, 8, 6, 0.38);
  border: 1px solid rgba(255, 242, 214, 0.12);
}

.catering__feature span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.catering__feature p {
  margin: 0;
  color: var(--cream-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.catering__form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(26px, 3.5vw, 42px);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 242, 214, 0.085), rgba(255, 242, 214, 0.045)),
    var(--surface);
  border: 1px solid rgba(255, 242, 214, 0.17);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.catering__form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--pistachio), var(--gold), var(--teal-light));
}

.catering__inline {
  grid-template-columns: 1.15fr 0.8fr 1fr;
}

.catering__hint {
  margin: 2px 0 0;
  color: var(--mute);
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  .catering__grid {
    grid-template-columns: 1fr;
  }

  .catering__features {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .catering__features {
    grid-template-columns: 1fr;
  }

  .catering__panel,
  .catering__panel img {
    min-height: 260px;
  }

  .catering__inline {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────────────────
   Reservierung
   ────────────────────────────────────────────────────────── */
.rsv {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(197,58,74,0.18), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(107,48,96,0.16), transparent 55%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  position: relative;
}
.rsv::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><g fill='none' stroke='%23E5586A' stroke-width='0.6' opacity='0.55'><circle cx='50' cy='50' r='28'/><circle cx='0' cy='50' r='28'/><circle cx='100' cy='50' r='28'/><circle cx='50' cy='0' r='28'/><circle cx='50' cy='100' r='28'/><circle cx='50' cy='50' r='5'/></g></svg>");
  opacity: 0.05; pointer-events: none;
}
.rsv .container { position: relative; }

.rsv__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.rsv__form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px);
  display: grid; gap: 18px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.rsv__form::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--pomegranate), var(--teal));
}

.field { display: grid; gap: 8px; }
.field--row { grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute); font-weight: 500;
}
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem;
  color: var(--cream);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
  font-family: var(--sans);
}
html[lang="ar"] .field input,
html[lang="ar"] .field select,
html[lang="ar"] .field textarea { font-family: var(--arabic); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  background: var(--surface-2);
  box-shadow: 0 0 0 4px rgba(232,155,62,0.12);
}
.field input::placeholder, .field textarea::placeholder { color: var(--mute-2); }
.field textarea { resize: vertical; min-height: 100px; }
.field--inline { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23998566' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
html[dir="rtl"] .field select { background-position: left 16px center; padding-right: 14px; padding-left: 40px; }

.rsv__submit {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px;
}
.rsv__fallback {
  font-size: 0.85rem; color: var(--mute); margin: 4px 0 0;
}

.rsv__call {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(46,140,153,0.12), transparent 60%),
    var(--surface);
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.rsv__call__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: grid; place-items: center; color: var(--bg);
  font-size: 1.6rem; flex-shrink: 0;
}
.rsv__call__body { flex: 1; min-width: 200px; }
.rsv__call__body h3 { margin: 0 0 4px; font-family: var(--serif); font-weight: 500; font-size: 1.25rem; color: var(--cream); }
.rsv__call__body p { margin: 0; font-size: 0.92rem; color: var(--mute); }

.rsv__success {
  padding: 14px 18px; border-radius: var(--radius);
  background: rgba(148,184,114,0.12);
  border: 1px solid rgba(148,184,114,0.4);
  color: var(--pistachio-light);
  font-size: 0.92rem;
}

@media (max-width: 880px) {
  .rsv__grid { grid-template-columns: 1fr; }
  .field--inline { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────
   Besuch (Standort)
   ────────────────────────────────────────────────────────── */
.besuch__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 80px);
  align-items: stretch;
}
.besuch__info { display: flex; flex-direction: column; }
.info-block { margin-bottom: 36px; }
.info-block__label {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute); margin: 0 0 8px;
}
.info-block__value {
  font-family: var(--serif); font-size: 1.4rem; color: var(--cream);
  margin: 0 0 10px; line-height: 1.3;
}
.info-block__hint { font-size: 0.78rem; color: var(--mute-2); margin: 8px 0 0; font-style: italic; }
.info-block--row { display: flex; gap: 40px; flex-wrap: wrap; }

.hours { border-collapse: collapse; width: 100%; max-width: 360px; }
.hours th, .hours td {
  text-align: left; padding: 10px 0; font-weight: 400;
  border-bottom: 1px dashed var(--line);
}
html[dir="rtl"] .hours th { text-align: right; }
html[dir="rtl"] .hours td { text-align: left; }
.hours th { color: var(--cream-soft); font-family: var(--sans); font-size: 0.95rem; }
.hours td { color: var(--saffron); font-family: var(--serif); font-size: 1.05rem; text-align: right; }

.besuch__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: auto; padding-top: 16px; }

.besuch__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 480px;
  box-shadow: var(--shadow-lg);
}
.besuch__map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7) brightness(0.85);
}

@media (max-width: 980px) {
  .besuch__grid { grid-template-columns: 1fr; }
  .besuch__map { min-height: 360px; }
}

/* ──────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: 72px 24px;
  margin-top: 60px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p { color: var(--mute); font-size: 0.92rem; margin: 18px 0 0; }
.footer__brand .brand__mark { display: block; }
.footer__label {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--saffron); margin: 0 0 14px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.95rem; color: var(--cream-soft); transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--saffron); }
.footer__bottom { margin-top: 24px; }
.footer__bottom p { font-size: 0.82rem; color: var(--mute-2); margin: 0; text-align: center; }

@media (max-width: 780px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────
   Sticky mobile order
   ────────────────────────────────────────────────────────── */
.sticky-order {
  display: none;
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 50;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--gold), var(--saffron-light));
  color: var(--bg);
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  align-items: center; gap: 8px;
  box-shadow: 0 14px 40px -10px rgba(232,155,62,0.6);
}
.sticky-order__arrow { font-size: 1.1em; }

@media (max-width: 880px) {
  .sticky-order { display: inline-flex; }
}

/* ──────────────────────────────────────────────────────────
   Reveal animation
   ────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

/* Habibi redesign v3 */
:root {
  --bg: #120806;
  --bg-2: #1B0F0A;
  --surface: rgba(35, 21, 13, 0.86);
  --surface-2: rgba(48, 29, 18, 0.92);
  --line: rgba(230, 168, 77, 0.22);
  --line-strong: rgba(244, 205, 132, 0.48);
  --gold: #E1A33A;
  --gold-light: #F4C779;
  --gold-deep: #9B6421;
  --copper: #C8673D;
  --teal: #20827B;
  --teal-light: #58BDB2;
  --pomegranate: #B92D3D;
  --pomegranate-light: #F05E62;
  --saffron: #F29A2E;
  --saffron-light: #FFC66D;
  --pistachio: #A4C774;
  --cream: #FFF2D6;
  --cream-soft: #F3DDB7;
  --mute: #C0A57A;
  --mute-2: #806A4A;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 8px;
  --shadow-lg: 0 28px 80px -26px rgba(0, 0, 0, 0.78), 0 12px 32px -18px rgba(0, 0, 0, 0.58);
  --shadow: 0 18px 44px -24px rgba(0, 0, 0, 0.68);
}

body {
  background:
    linear-gradient(180deg, rgba(18, 8, 6, 0.92), rgba(27, 15, 10, 0.98)),
    var(--bg);
}

.h-display,
.hero__title {
  letter-spacing: 0;
}

.h-display {
  font-size: 4rem;
  line-height: 1;
}

.eyebrow {
  color: var(--gold-light);
  font-weight: 700;
}

.btn {
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0;
}

.btn--ghost {
  background: rgba(255, 242, 214, 0.08);
  border-color: rgba(255, 242, 214, 0.24);
}

.nav {
  background: rgba(18, 8, 6, 0.68);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.nav--scrolled {
  background: rgba(18, 8, 6, 0.92);
}

.brand {
  gap: 0;
}

.brand__mark {
  display: none !important;
}

.brand:hover .brand__mark {
  transform: none;
}

.brand__type {
  position: relative;
  gap: 2px;
  padding-block: 2px;
}

.brand__name {
  position: relative;
  font-family: var(--serif);
  font-size: 1.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--cream);
}

.brand__name::after {
  display: none;
}

.brand__sub {
  color: #a8ba73;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}

.footer__brand .brand__mark {
  display: none !important;
}

.footer__brand .brand__type--footer {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer__brand .brand__name {
  font-size: 2.05rem;
}

html[lang="ar"] .brand__name {
  font-family: var(--arabic-display);
  font-size: 1.55rem;
  letter-spacing: 0;
  text-transform: none;
}

html[lang="ar"] .brand__name::after {
  display: none;
}

.lang-switch,
.hero__meta li,
.menu-col,
.rsv__form,
.rsv__call,
.besuch__map,
.spezial-card,
.gallery-tile,
.card-art {
  border-radius: 8px;
}

.hero {
  min-height: 88svh;
  padding-top: 132px;
  padding-bottom: 76px;
  align-items: flex-start;
  background:
    linear-gradient(90deg, rgba(18, 8, 6, 0.94) 0%, rgba(18, 8, 6, 0.82) 45%, rgba(18, 8, 6, 0.42) 100%),
    linear-gradient(180deg, rgba(18, 8, 6, 0.08), rgba(18, 8, 6, 0.92)),
    url("assets/photo-interior.jpg");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(225, 163, 58, 0.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(185, 45, 61, 0.10) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(32, 130, 123, 0.12) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(244, 199, 121, 0.10) 75%);
  background-position: 0 0, 0 38px, 38px -38px, -38px 0;
  background-size: 76px 76px;
  opacity: 0.18;
  pointer-events: none;
}

.hero__pattern {
  opacity: 0.18;
  mix-blend-mode: screen;
}

.hero__glow {
  display: none;
}

.hero__inner {
  max-width: 680px;
  padding-top: 12px;
}

.hero__title {
  font-size: 5rem;
  line-height: 0.9;
  margin-bottom: 1.25rem;
  max-width: 660px;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
}

html[lang="ar"] .hero__title {
  font-size: 5rem;
  line-height: 1.08;
}

.hero__ar {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.hero__lead {
  color: var(--cream);
  opacity: 1;
}

.hero__main em,
.h-display em {
  background: linear-gradient(135deg, var(--gold-light), var(--saffron), var(--pomegranate-light));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__sub {
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.58;
  color: var(--cream-soft);
  margin-bottom: 1.25rem;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}

.hero__cta {
  margin-bottom: 2.2rem;
}

.hero__meta {
  border-top: 0;
  padding-top: 0;
  gap: 12px;
  max-width: 680px;
}

.hero__meta li {
  padding: 14px 16px;
  background: rgba(18, 8, 6, 0.62);
  border: 1px solid rgba(255, 242, 214, 0.18);
  backdrop-filter: blur(12px);
}

.hero__meta strong {
  font-size: 1.35rem;
}

.hero__stage {
  position: absolute;
  z-index: 1;
  top: 118px;
  right: -92px;
  width: 486px;
  height: 580px;
  pointer-events: none;
}

.hero__mosaic {
  position: absolute;
  border: 1px solid rgba(244, 199, 121, 0.28);
  background:
    linear-gradient(135deg, rgba(225, 163, 58, 0.24), rgba(185, 45, 61, 0.16)),
    linear-gradient(45deg, rgba(255, 242, 214, 0.10) 25%, transparent 25% 50%, rgba(255, 242, 214, 0.10) 50% 75%, transparent 75%);
  background-size: auto, 26px 26px;
  box-shadow: var(--shadow);
}

.hero__mosaic--one {
  width: 170px;
  height: 170px;
  right: 34px;
  top: 0;
  transform: rotate(8deg);
}

.hero__mosaic--two {
  width: 130px;
  height: 130px;
  left: 16px;
  bottom: 44px;
  transform: rotate(-12deg);
}

.hero__photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 242, 214, 0.28);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.hero__photo::after,
.spezial-card__art::after,
.gallery-tile::after,
.card-art--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(18, 8, 6, 0.34));
  pointer-events: none;
}

.hero__photo img,
.dish-photo,
.gallery-tile__art,
.card-art--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero__photo--main {
  width: 360px;
  height: 270px;
  right: 8px;
  top: 132px;
  transform: rotate(-3deg);
}

.hero__photo--mezze {
  width: 240px;
  height: 180px;
  left: 0;
  top: 70px;
  transform: rotate(5deg);
}

.hero__photo--interior {
  width: 220px;
  height: 244px;
  right: 92px;
  bottom: 12px;
  transform: rotate(4deg);
}

.hero__stamp {
  position: absolute;
  right: 132px;
  bottom: 168px;
  padding: 14px 22px 18px;
  background: var(--cream);
  color: var(--pomegranate);
  border: 1px solid rgba(185, 45, 61, 0.38);
  border-radius: 8px;
  font-family: var(--arabic-display);
  font-size: 3.3rem;
  line-height: 1;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-lg);
}

.hero__scroll {
  bottom: 22px;
}

.story {
  background:
    linear-gradient(180deg, rgba(18, 8, 6, 0), rgba(32, 130, 123, 0.10) 48%, rgba(18, 8, 6, 0));
}

.story__grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.story__copy .h-display {
  font-size: 3.35rem;
  line-height: 1.08;
}

.story__copy .h-display .ar {
  font-size: 0.9em;
}

.card-art--photo {
  background: var(--surface);
}

.card-art--photo::before {
  opacity: 0.10;
  z-index: 1;
}

.card-art--photo img {
  position: absolute;
  inset: 0;
}

.card-art__seal {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 10px 14px;
  background: rgba(18, 8, 6, 0.72);
  border: 1px solid rgba(244, 199, 121, 0.34);
  border-radius: 8px;
  color: var(--gold-light);
  font-family: var(--arabic-display);
  font-size: 1.35rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.value-list li {
  padding: 18px;
  border: 1px solid rgba(255, 242, 214, 0.12);
  border-radius: 8px;
  background: rgba(255, 242, 214, 0.04);
}

.spezial__grid {
  gap: 18px;
}

.spezial-card {
  background: linear-gradient(180deg, rgba(44, 25, 15, 0.96), rgba(25, 13, 8, 0.96));
}

.spezial-card__art {
  background: #25150E;
}

.dish-photo {
  display: block;
}

.spezial-card__body h3 {
  letter-spacing: 0;
}

.menu {
  background:
    linear-gradient(180deg, rgba(18, 8, 6, 0.94), rgba(35, 18, 10, 0.96)),
    linear-gradient(90deg, rgba(32, 130, 123, 0.12), rgba(185, 45, 61, 0.12));
}

.menu__columns {
  gap: 18px;
}

.menu-col {
  padding: 26px;
  background: rgba(255, 242, 214, 0.055);
  border: 1px solid rgba(255, 242, 214, 0.14);
  box-shadow: var(--shadow);
}

.menu-col__title {
  color: var(--gold-light);
  letter-spacing: 0;
}

.menu-list__head {
  align-items: flex-start;
}

.menu-list__head h4 {
  white-space: normal;
}

.menu-list .dots {
  min-width: 24px;
}

.gallery {
  grid-auto-rows: 220px;
}

.gallery-tile {
  box-shadow: var(--shadow);
}

.gallery-tile__art {
  position: absolute;
  inset: 0;
  display: block;
}

.gallery-tile figcaption {
  z-index: 2;
  border-radius: 8px;
  background: rgba(18, 8, 6, 0.72);
}

.rsv,
.footer {
  background:
    linear-gradient(180deg, rgba(27, 15, 10, 0.96), rgba(18, 8, 6, 1));
}

.field input,
.field select,
.field textarea {
  border-radius: 8px;
}

.sticky-order {
  border-radius: 8px;
}

@media (max-width: 1180px) {
  .hero__stage {
    right: -150px;
    opacity: 0.78;
  }
}

@media (max-width: 960px) {
  .h-display {
    font-size: 3.2rem;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 86px;
  }

  .hero__stage {
    opacity: 0.34;
    right: -190px;
    top: 140px;
    transform: scale(0.9);
  }

  .hero__title {
    font-size: 4.5rem;
  }

  html[lang="ar"] .hero__title {
    font-size: 3.7rem;
  }

  .story__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav__inner {
    gap: 12px;
  }

  .nav__right > .lang-switch {
    display: none;
  }

  .brand__name {
    font-size: 1.56rem;
  }

  .brand__sub {
    font-size: 0.54rem;
    letter-spacing: 0.18em;
  }

  .h-display {
    font-size: 2.65rem;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 72px;
    background:
      linear-gradient(180deg, rgba(18, 8, 6, 0.88), rgba(18, 8, 6, 0.96)),
      url("assets/photo-shawarma.jpg");
    background-size: cover;
    background-position: center;
  }

  .hero__stage {
    display: none;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(2.7rem, 11vw, 3.2rem);
    line-height: 1;
    overflow-wrap: normal;
  }

  html[lang="ar"] .hero__title {
    font-size: 3rem;
  }

  .hero__sub {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .hero__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .hero__meta li {
    min-width: 0;
    padding: 12px;
  }

  .menu-col {
    padding: 22px;
  }

  .gallery {
    grid-auto-rows: 170px;
  }
}

@media (max-width: 460px) {
  .hero__title {
    font-size: 2.55rem;
  }

  .hero__cta .btn,
  .menu__cta .btn,
  .besuch__cta .btn,
  .rsv__submit .btn {
    width: 100%;
  }

  .hero__meta {
    grid-template-columns: 1fr;
  }
}

/* Professional refinement v4: quieter, straighter, more grown-up */
:root {
  --bg: #0f1512;
  --bg-2: #121c18;
  --surface: rgba(18, 28, 24, 0.92);
  --surface-2: rgba(24, 36, 31, 0.96);
  --line: rgba(218, 201, 160, 0.16);
  --line-strong: rgba(218, 201, 160, 0.34);
  --gold: #b99a5f;
  --gold-light: #d8c28f;
  --gold-deep: #8b7043;
  --copper: #a46d55;
  --teal: #557c73;
  --teal-light: #82aaa0;
  --pomegranate: #8f4c45;
  --pomegranate-light: #b87066;
  --saffron: #bf9357;
  --saffron-light: #d8b676;
  --pistachio: #879a67;
  --pistachio-light: #b7c59a;
  --cream: #f4ecd9;
  --cream-soft: #ded0b5;
  --mute: #a6977b;
  --mute-2: #746853;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 8px;
  --shadow-lg: 0 26px 70px -34px rgba(0, 0, 0, 0.76);
  --shadow: 0 18px 44px -30px rgba(0, 0, 0, 0.66);
  --section: clamp(82px, 9vw, 124px);
}

body {
  background: var(--bg);
  color: var(--cream);
}

.h-display {
  font-size: clamp(2.2rem, 4.2vw, 3.55rem);
  line-height: 1.04;
}

.h-display em,
.hero__main em {
  color: var(--gold-light);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.eyebrow {
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.eyebrow .dot {
  background: var(--gold);
  box-shadow: none;
  animation: none;
}

.btn {
  border-radius: 6px;
  font-weight: 650;
  box-shadow: none;
  transform: none;
}

.btn:hover {
  transform: none;
}

.btn--gold,
.btn--red,
.btn--teal {
  background: var(--gold);
  color: #10130f;
  box-shadow: none;
}

.btn--gold:hover,
.btn--red:hover,
.btn--teal:hover {
  background: var(--gold-light);
  box-shadow: none;
}

.btn--ghost {
  background: rgba(244, 236, 217, 0.06);
  border-color: rgba(244, 236, 217, 0.22);
  color: var(--cream);
}

.btn--ghost:hover {
  color: var(--cream);
  background: rgba(244, 236, 217, 0.11);
  border-color: rgba(244, 236, 217, 0.34);
}

.nav,
.nav--scrolled {
  background: rgba(15, 21, 18, 0.94);
  border-bottom: 1px solid rgba(218, 201, 160, 0.13);
  box-shadow: none;
}

.nav__links {
  color: var(--cream-soft);
}

.nav__links a::after {
  background: var(--gold);
}

.nav__links a:hover,
.footer__col a:hover,
.link-arrow:hover {
  color: var(--gold-light);
}

.brand__name {
  font-size: 1.72rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  color: var(--cream);
}

.brand__sub {
  color: var(--pistachio-light);
  letter-spacing: 0.2em;
}

.hero {
  min-height: 82svh;
  padding-top: 150px;
  padding-bottom: 118px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 21, 18, 0.95) 0%, rgba(15, 21, 18, 0.86) 48%, rgba(15, 21, 18, 0.44) 100%),
    linear-gradient(180deg, rgba(15, 21, 18, 0.18), rgba(15, 21, 18, 0.92)),
    url("assets/photo-interior.jpg");
  background-size: cover;
  background-position: center;
}

.hero::before,
.hero__pattern,
.hero__glow,
.hero__stage,
.hero__scroll {
  display: none;
}

.hero__inner {
  max-width: 760px;
  padding-top: 0;
}

.hero__ar {
  font-size: clamp(1.55rem, 2.1vw, 1.95rem);
  margin-bottom: 0.75rem;
  color: var(--gold-light);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

.hero__ar::before,
.hero__ar::after {
  width: 22px;
  background: rgba(216, 194, 143, 0.65);
}

.hero__title {
  max-width: 720px;
  font-size: clamp(3.2rem, 6.2vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 1.4rem;
  text-shadow: none;
}

.hero__lead {
  opacity: 1;
}

.hero__sub {
  max-width: 700px;
  color: var(--cream-soft);
  font-size: 1.08rem;
  line-height: 1.62;
  margin-bottom: 1.85rem;
  text-shadow: none;
}

.hero__cta {
  margin-bottom: 2.15rem;
}

.hero__meta {
  gap: 10px;
  max-width: 700px;
}

.hero__meta li {
  background: rgba(15, 21, 18, 0.72);
  border-color: rgba(218, 201, 160, 0.18);
  backdrop-filter: none;
}

.hero__meta strong,
.hero__meta li:nth-child(1) strong,
.hero__meta li:nth-child(2) strong,
.hero__meta li:nth-child(3) strong,
.hero__meta li:nth-child(4) strong {
  color: var(--gold-light);
}

.story,
.menu,
.rsv,
.footer,
.catering {
  background: var(--bg);
}

.story {
  border-top: 1px solid rgba(218, 201, 160, 0.08);
}

.card-art,
.spezial-card,
.menu-col,
.gallery-tile,
.rsv__form,
.rsv__call,
.besuch__map,
.catering__form,
.catering__panel,
.catering__platter,
.catering__feature {
  border-radius: 8px;
  box-shadow: none;
  border-color: rgba(218, 201, 160, 0.15);
}

.card-art,
.spezial-card,
.menu-col,
.rsv__form,
.rsv__call,
.catering__form,
.catering__platter,
.catering__feature {
  background: rgba(18, 28, 24, 0.82);
}

.card-art::before,
.card-art::after,
.spezial-card::after,
.gallery-tile::after,
.catering::before,
.catering__panel::after {
  opacity: 0.16;
}

.card-art__seal,
.hero__stamp {
  display: none;
}

.value-list li {
  background: rgba(244, 236, 217, 0.035);
  border-color: rgba(218, 201, 160, 0.14);
}

.value-list li:nth-child(1) .value-list__num,
.value-list li:nth-child(2) .value-list__num,
.value-list li:nth-child(3) .value-list__num {
  color: var(--gold-light);
  border-color: rgba(216, 194, 143, 0.34);
  background: rgba(216, 194, 143, 0.06);
}

.spezial-card:hover,
.gallery-tile:hover,
.menu-col:hover {
  transform: none;
  box-shadow: none;
}

.tag,
.tag--gold,
.tag--red,
.tag--green,
.tag--teal,
.badge,
.badge--gold {
  color: var(--gold-light);
  background: rgba(216, 194, 143, 0.07);
  border-color: rgba(216, 194, 143, 0.28);
}

.spezial-card,
.spezial-card:nth-child(2),
.spezial-card:nth-child(3),
.spezial-card:nth-child(4) {
  --accent: var(--gold-light);
}

.spezial-card .price,
.menu-list__price,
.hours td,
.footer__label {
  color: var(--gold-light);
}

.menu {
  border-block: 1px solid rgba(218, 201, 160, 0.08);
}

.menu-col__title .ornament {
  color: var(--gold-light) !important;
}

.menu-list .dots {
  border-bottom-color: rgba(218, 201, 160, 0.22);
}

.gallery-tile figcaption {
  border-radius: 6px;
  background: rgba(15, 21, 18, 0.78);
  color: var(--cream);
}

.catering {
  border-block: 1px solid rgba(218, 201, 160, 0.08);
}

.catering__lead {
  color: var(--cream-soft);
}

.catering__panel img,
.dish-photo,
.gallery-tile__art,
.card-art--photo img {
  filter: saturate(0.96) contrast(1.02);
  transform: none;
}

.catering__panelText span,
.catering__platter p {
  color: var(--gold-light);
}

.catering__chips span {
  border-radius: 6px;
  background: rgba(135, 154, 103, 0.10);
  border-color: rgba(183, 197, 154, 0.28);
  color: var(--pistachio-light);
}

.catering__form::before,
.rsv__form::before {
  background: var(--gold);
}

.field input,
.field select,
.field textarea {
  background: rgba(15, 21, 18, 0.82);
  border-color: rgba(218, 201, 160, 0.18);
  border-radius: 6px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(216, 194, 143, 0.64);
  background: rgba(20, 30, 26, 0.96);
  box-shadow: 0 0 0 3px rgba(216, 194, 143, 0.10);
}

.rsv__call__icon {
  background: var(--gold);
  color: #10130f;
}

.sticky-order {
  border-radius: 6px;
  background: var(--gold);
  color: #10130f;
  box-shadow: 0 18px 54px -28px rgba(0, 0, 0, 0.75);
}

.reveal {
  transition-duration: 0.45s;
}

@media (max-width: 960px) {
  .hero {
    padding-top: 128px;
    padding-bottom: 88px;
  }

  .hero__title {
    font-size: clamp(3rem, 8vw, 4.4rem);
  }
}

@media (max-width: 720px) {
  .eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    max-width: 100%;
    letter-spacing: 0.13em;
    line-height: 1.45;
  }

  .eyebrow .dot {
    flex: 0 0 auto;
    margin-top: 0.36em;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(15, 21, 18, 0.78), rgba(15, 21, 18, 0.96)),
      url("assets/photo-shawarma.jpg");
    background-size: cover;
    background-position: center;
  }

  .hero__inner {
    max-width: 360px;
    margin-inline: 0 auto;
  }

  .hero__title {
    font-size: clamp(2.7rem, 11vw, 3.25rem);
  }

  .hero__meta {
    grid-template-columns: 1fr;
  }
}

/* Green menu refresh v5 */
:root {
  --bg: #14251e;
  --bg-2: #193328;
  --surface: rgba(24, 48, 38, 0.9);
  --surface-2: rgba(29, 58, 46, 0.96);
  --line: rgba(231, 232, 201, 0.18);
  --line-strong: rgba(231, 232, 201, 0.36);
  --gold: #c6af6a;
  --gold-light: #ead88e;
  --teal: #77af8c;
  --teal-light: #a8d9b7;
  --pistachio: #a9c978;
  --pistachio-light: #d1e6a2;
  --cream: #fbf4df;
  --cream-soft: #e6dcc1;
  --mute: #c3b996;
  --mute-2: #91876a;
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(119, 175, 140, 0.18), transparent 32rem),
    linear-gradient(180deg, #172d23 0%, var(--bg) 38%, #102018 100%);
}

.hero {
  background:
    linear-gradient(90deg, rgba(20, 37, 30, 0.91) 0%, rgba(20, 37, 30, 0.78) 48%, rgba(20, 37, 30, 0.34) 100%),
    linear-gradient(180deg, rgba(20, 37, 30, 0.12), rgba(20, 37, 30, 0.86)),
    url("assets/photo-interior.jpg");
  background-size: cover;
  background-position: center;
}

.nav,
.nav--scrolled {
  background: rgba(20, 37, 30, 0.94);
}

.brand__sub,
.catering__chips span {
  color: var(--pistachio-light);
}

.menu {
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 217, 183, 0.12), transparent 34rem),
    linear-gradient(180deg, #193328 0%, #14251e 100%);
}

.menu-board {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 4vw, 44px);
}

.menu-board__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 22px;
  padding-bottom: 4px;
}

.menu-board__intro .eyebrow {
  margin-bottom: 0.45rem;
}

.menu-board__intro h3 {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.06;
  color: var(--cream);
}

.menu-board__intro p {
  margin: 0;
  color: var(--cream-soft);
  line-height: 1.65;
}

.menu-board__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-board__frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 232, 201, 0.2);
  border-radius: 8px;
  background: rgba(20, 37, 30, 0.56);
  box-shadow: 0 28px 70px -42px rgba(0, 0, 0, 0.85);
}

.menu-board__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #47796d;
}

.menu-board__frame figcaption {
  padding: 12px 14px;
  color: var(--cream);
  font-weight: 650;
  border-top: 1px solid rgba(231, 232, 201, 0.14);
  background: rgba(20, 37, 30, 0.74);
}

.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: clamp(30px, 5vw, 50px) 0 12px;
  padding: 8px;
  border: 1px solid rgba(231, 232, 201, 0.18);
  border-radius: 8px;
  background: rgba(25, 51, 40, 0.72);
}

.menu-filter button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--cream-soft);
  font: 650 0.92rem/1 var(--sans);
  cursor: pointer;
}

.menu-filter button:hover {
  color: var(--cream);
  background: rgba(251, 244, 223, 0.07);
}

.menu-filter button.is-active {
  color: #122018;
  background: var(--gold-light);
  border-color: rgba(255, 255, 255, 0.18);
}

.menu-filter__status {
  margin: 0 0 18px;
  color: var(--pistachio-light);
  font-weight: 650;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.menu-dish {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 232, 201, 0.16);
  border-radius: 8px;
  background: rgba(26, 53, 42, 0.84);
  box-shadow: 0 20px 52px -40px rgba(0, 0, 0, 0.82);
}

.menu-dish[hidden] {
  display: none;
}

.menu-dish__media {
  aspect-ratio: 4 / 3;
  background: #f6f4eb;
}

.menu-dish__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-dish__body {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 16px;
}

.menu-dish__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.menu-dish h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1.04rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.menu-dish strong {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 1.05rem;
  white-space: nowrap;
}

.menu-dish p {
  margin: 0;
  color: var(--cream-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-dish__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.menu-dish__tags span {
  padding: 5px 8px;
  border: 1px solid rgba(209, 230, 162, 0.28);
  border-radius: 6px;
  color: var(--pistachio-light);
  background: rgba(209, 230, 162, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
}

.menu__legacy {
  display: none !important;
}

/* Header video experience */
.site-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #14251e;
}

.site-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 37, 30, 0.54) 0%, rgba(20, 37, 30, 0.28) 46%, rgba(20, 37, 30, 0.08) 100%),
    linear-gradient(180deg, rgba(20, 37, 30, 0.04) 0%, rgba(20, 37, 30, 0.5) 100%);
  transition: background 0.45s var(--ease);
}

.site-video-bg__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 1;
  transform: scale(1.005);
  filter: saturate(1.12) contrast(1.06) brightness(1.18);
  transition: filter 0.45s var(--ease), transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

body > main,
body > .footer,
body > .sticky-order {
  position: relative;
  z-index: 1;
}

.hero {
  background: transparent;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 24% 48%, rgba(9, 18, 14, 0.68) 0%, rgba(9, 18, 14, 0.36) 34%, transparent 62%),
    linear-gradient(90deg, rgba(9, 18, 14, 0.58) 0%, rgba(9, 18, 14, 0.18) 42%, transparent 72%);
}

.hero__inner {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.56);
}

.hero__stage {
  display: none;
}

.hero__pattern {
  opacity: 0.08;
}

body.video-bg-blur .site-video-bg::after {
  background:
    linear-gradient(180deg, rgba(20, 37, 30, 0.64), rgba(20, 37, 30, 0.82)),
    rgba(20, 37, 30, 0.42);
}

body.video-bg-blur .site-video-bg__video {
  opacity: 0.68;
  transform: scale(1.06);
  filter: blur(14px) saturate(0.96) brightness(0.86);
}

body.video-bg-blur .section,
body.video-bg-blur .footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 217, 183, 0.08), transparent 30rem),
    rgba(20, 37, 30, 0.88);
  backdrop-filter: blur(3px);
}

.menu__cta {
  margin-top: clamp(44px, 6vw, 76px);
  padding-top: clamp(8px, 2vw, 18px);
  align-items: center;
}

.menu__cta .btn {
  min-width: min(100%, 230px);
}

@media (max-width: 1180px) {
  .menu-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-board__intro,
  .menu-board__grid {
    grid-template-columns: 1fr;
  }

  .menu-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .menu-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-filter button {
    width: 100%;
    padding-inline: 10px;
  }

  .menu-cards {
    grid-template-columns: 1fr;
  }

  .menu-dish__top {
    align-items: baseline;
  }
}

@media (max-width: 720px) {
  .hero {
    background: transparent;
  }

  .site-video-bg::after {
    background:
      linear-gradient(180deg, rgba(20, 37, 30, 0.42), rgba(20, 37, 30, 0.78)),
      rgba(20, 37, 30, 0.12);
  }

  .site-video-bg__video {
    object-position: center top;
  }
}

/* Catering page */
.catering-page {
  background: var(--bg);
}

.catering-hero {
  min-height: 76svh;
  display: grid;
  align-items: end;
  padding: 150px 0 88px;
  background:
    linear-gradient(90deg, rgba(20, 37, 30, 0.94) 0%, rgba(20, 37, 30, 0.72) 48%, rgba(20, 37, 30, 0.18) 100%),
    linear-gradient(180deg, rgba(20, 37, 30, 0.12), rgba(20, 37, 30, 0.86)),
    url("assets/catering-fruit-platter.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(231, 232, 201, 0.12);
}

.catering-hero__inner {
  max-width: 780px;
}

.catering-hero h1 {
  max-width: 760px;
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  color: var(--cream);
}

.catering-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 1.8rem;
  color: var(--cream-soft);
  font-size: 1.08rem;
  line-height: 1.68;
}

.catering-showcase {
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 217, 183, 0.12), transparent 32rem),
    var(--bg);
}

.catering-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catering-item {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(231, 232, 201, 0.16);
  border-radius: 8px;
  background: rgba(26, 53, 42, 0.84);
  box-shadow: 0 20px 52px -40px rgba(0, 0, 0, 0.82);
}

.catering-item--wide {
  grid-column: span 2;
}

.catering-item img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  background: #f6f4eb;
}

.catering-item--wide img {
  height: 380px;
}

.catering-item div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.catering-item span {
  color: var(--pistachio-light);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catering-item h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.06;
}

.catering-item p {
  margin: 0;
  color: var(--cream-soft);
  line-height: 1.55;
}

.catering-request {
  background: #102018;
  border-top: 1px solid rgba(231, 232, 201, 0.1);
}

.catering-request__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.catering-steps {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.catering-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(231, 232, 201, 0.14);
  border-radius: 8px;
  background: rgba(251, 244, 223, 0.04);
}

.catering-steps strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.catering-steps p {
  margin: 0;
  color: var(--cream-soft);
}

@media (max-width: 980px) {
  .catering-gallery,
  .catering-request__grid {
    grid-template-columns: 1fr;
  }

  .catering-item--wide {
    grid-column: auto;
  }

  .catering-item img,
  .catering-item--wide img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) {
  .catering-hero {
    min-height: 72svh;
    padding: 128px 0 72px;
    background:
      linear-gradient(180deg, rgba(20, 37, 30, 0.78), rgba(20, 37, 30, 0.96)),
      url("assets/catering-fruit-platter.jpg");
    background-size: cover;
    background-position: center;
  }

  .catering-hero h1 {
    font-size: clamp(2.7rem, 11vw, 3.5rem);
  }
}
