/* ============================================================
   Lotus Streetfood — Design System
   ============================================================ */

:root {
  /* Palette */
  --bg:        #0b0b0d;
  --bg-soft:   #121215;
  --bg-card:   #16161a;
  --line:      rgba(200, 164, 92, 0.16);
  --gold:      #c8a45c;
  --gold-soft: #e3cd9b;
  --gold-deep: #9c7d3f;
  --cream:     #f4efe6;
  --muted:     #b0aaa0;   /* lightened for WCAG AA contrast */
  --bordeaux:  #6e2436;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, sans-serif;

  /* Spacing / motion */
  --pad: clamp(1.25rem, 5vw, 7rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light mode token overrides */
[data-theme="light"] {
  --bg:        #faf8f4;
  --bg-soft:   #f0ece4;
  --bg-card:   #e6e0d6;
  --line:      rgba(120, 90, 40, 0.2);
  --cream:     #1a1714;
  --muted:     #6b6258;
  --gold:      #9c7d3f;
  --gold-soft: #c8a45c;
  --bordeaux:  #8b2e44;
}
[data-theme="light"] body { color: var(--cream); }
[data-theme="light"] .grain { opacity: 0.12; }
[data-theme="light"] .vignette { display: none; }
[data-theme="light"] .nav { background: rgba(250,248,244,0.88); border-bottom-color: var(--line); }
[data-theme="light"] .hero__overlay { background: linear-gradient(180deg, rgba(250,248,244,0.55) 0%, transparent 25%, transparent 60%, rgba(250,248,244,0.95) 100%); }
[data-theme="light"] .preloader { background: var(--bg); }
[data-theme="light"] .menu__badge--new { background: rgba(139,46,68,0.12); }
[data-theme="light"] .nav::before { background: rgba(250,248,244,0.92); }
[data-theme="light"] .hero__status { background: rgba(250,248,244,0.6); }
[data-theme="light"] .experience__overlay { background: radial-gradient(120% 120% at 50% 50%, rgba(250,248,244,0.45) 0%, rgba(250,248,244,0.72) 70%, var(--bg) 100%); }
[data-theme="light"] .actionbar__btn { background: rgba(250,248,244,0.95); }
[data-theme="light"] .gallery__tile::after { background: linear-gradient(180deg, transparent 50%, rgba(250,248,244,0.55)); }
[data-theme="light"] .gyro-btn { background: rgba(250,248,244,0.75); color: var(--gold); }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--gold-soft); }
::selection { background: var(--gold); color: var(--bg); }

/* Visible keyboard focus (custom cursor must never hide it) */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* Skip-to-content link (visible only on keyboard focus) */
.skip-link {
  position: fixed; top: 0; left: 50%; transform: translate(-50%, -120%);
  z-index: 10000; background: var(--gold); color: var(--bg);
  padding: 0.7rem 1.4rem; border-radius: 0 0 8px 8px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.3s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); outline-offset: -2px; }

/* ---- Typo helpers ---- */
.section__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.section__title em {
  background: linear-gradient(108deg, var(--gold) 10%, var(--gold-soft) 55%, var(--cream) 80%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-style: italic;
}
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.5rem, 6vw, 5rem); }
.section__head .menu__intro, .menu__intro { color: var(--muted); margin-top: 1.25rem; }

/* ============================================================
   Preloader
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: grid; place-items: center;
  overflow: hidden;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1), visibility 1.1s;
}
.preloader.is-done { transform: translateY(-100%); visibility: hidden; }
.preloader__inner { text-align: center; width: min(80vw, 360px); }
.preloader__mark {
  font-family: var(--serif); font-size: 2.4rem; letter-spacing: 0.5em;
  color: var(--cream); padding-left: 0.5em; margin-bottom: 1.6rem;
}
.preloader__bar { height: 1px; background: var(--line); overflow: hidden; }
.preloader__bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
}
.preloader__count {
  margin-top: 0.9rem; font-size: 0.7rem; letter-spacing: 0.3em;
  color: var(--gold); text-align: right;
}

/* ============================================================
   Custom cursor
   ============================================================ */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9000; border-radius: 50%; }
.cursor {
  width: 34px; height: 34px; border: 1px solid var(--gold);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, border-color 0.3s;
  mix-blend-mode: difference;
}
.cursor.is-hover { width: 64px; height: 64px; background: rgba(200,164,92,0.12); border-color: transparent; }
.cursor.is-cta {
  width: 80px; height: 80px; background: rgba(200,164,92,0.22);
  border-color: rgba(200,164,92,0.7); mix-blend-mode: normal;
  box-shadow: 0 0 28px rgba(200,164,92,0.3), inset 0 0 18px rgba(200,164,92,0.1);
}
.cursor.is-drag {
  width: 72px; height: 72px; background: rgba(200,164,92,0.1);
  border-color: rgba(200,164,92,0.5); mix-blend-mode: normal;
}
.cursor.is-drag::after {
  content: "360°"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gold); display: grid; place-items: center;
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold); transform: translate(-50%, -50%); }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--pad);
  transition: padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Scrolled background/blur lives on a pseudo-element so the filter never
   traps the fixed mobile menu sheet (backdrop-filter makes its host the
   containing block for position:fixed descendants). */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: rgba(11,11,13,0.6);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.nav.is-scrolled { padding: 0.9rem var(--pad); }
.nav.is-scrolled::before { opacity: 1; }
.nav__logo {
  font-family: var(--serif); font-size: 1.55rem; letter-spacing: 0.34em;
  padding-left: 0.34em; color: var(--cream);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
}
.nav.is-scrolled .nav__logo { transform: scale(0.85); }
.nav__links { display: flex; align-items: center; gap: 2.4rem; }
.nav__link { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); position: relative; opacity: 0.85; transition: opacity 0.3s, color 0.4s var(--ease); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.7rem 1.5rem; border: 1px solid var(--gold);
  color: var(--gold); border-radius: 100px; transition: background 0.4s var(--ease), color 0.4s;
}
.nav__cta:hover { background: var(--gold); color: var(--bg); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 22px; position: relative; }
.nav__burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--cream); transition: 0.4s var(--ease); }
.nav__burger span:first-child { top: 4px; }
.nav__burger span:last-child { bottom: 4px; }
.nav.is-open .nav__burger span:first-child { top: 10px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:last-child { bottom: 10px; transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 640px; display: flex; align-items: center; padding: 0 var(--pad); overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(120% 90% at 70% 30%, transparent 0%, rgba(11,11,13,0.35) 55%, var(--bg) 100%),
    linear-gradient(180deg, rgba(11,11,13,0.55) 0%, transparent 30%, transparent 60%, var(--bg) 100%);
}
.hero__content { position: relative; z-index: 3; max-width: 760px; }
.hero__eyebrow { font-size: 0.74rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero__status {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.3rem 0.75rem 0.3rem 0.6rem; border-radius: 100px;
  border: 1px solid var(--line); color: var(--muted); background: rgba(11,11,13,0.5);
  backdrop-filter: blur(8px); margin-bottom: 1.4rem; transition: border-color 0.4s, color 0.4s;
}
.hero__status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--muted);
  transition: background 0.4s, box-shadow 0.4s;
}
.hero__status.is-open { border-color: rgba(109,220,138,0.5); color: #8fd9a0; }
.hero__status.is-open::before { background: #6ddc8a; box-shadow: 0 0 8px #6ddc8a; animation: pulse 2s infinite; }
.hero__status.is-closed { border-color: rgba(213,119,119,0.4); color: #d99; }
.hero__status.is-closed::before { background: #d57; }
.hero__title { font-family: var(--serif); font-weight: 500; font-size: clamp(3.4rem, 12vw, 9rem); line-height: 0.92; letter-spacing: -0.02em; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .accent { padding-left: 0.06em; }
.hero__title .accent em {
  background: linear-gradient(105deg, var(--gold-deep) 0%, var(--gold-soft) 45%, var(--cream) 68%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-style: italic;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__title .accent em {
    background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 20%, var(--gold-soft) 38%, var(--cream) 50%, var(--gold-soft) 62%, var(--gold) 80%, var(--gold-deep) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: title-gold-shine 5s linear 1.8s infinite;
  }
}
@keyframes title-gold-shine {
  from { background-position: 100% center; }
  to   { background-position: -100% center; }
}
.hero__sub { margin: 2rem 0 2.6rem; max-width: 30em; color: color-mix(in srgb, var(--cream) 78%, transparent); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); transition: opacity 0.55s var(--ease); }
.hero__scroll-line { width: 1px; height: 54px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-soft); animation: scrollDrop 2.2s var(--ease) infinite; }
@keyframes scrollDrop { 0% { top: -50%; } 100% { top: 100%; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  padding: 1.05rem 2.2rem; border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.4s, color 0.4s, border-color 0.4s;
}
.btn--primary { background: var(--gold); color: var(--bg); position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease);
  pointer-events: none;
}
.btn--primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,164,92,0.32); }
.btn--primary:hover::after { left: 160%; }
.btn--ghost { border-color: var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--full { width: 100%; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.4rem 0; overflow: hidden; background: var(--bg-soft); }
.marquee__track { display: flex; gap: 2.5rem; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: 0.04em; color: var(--cream); }
.marquee__track .dot { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   About / Philosophie
   ============================================================ */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; padding: clamp(5rem, 12vw, 10rem) var(--pad); }
.about__media { position: relative; }
.about__img {
  aspect-ratio: 4/5; border-radius: 4px; border: 1px solid var(--line);
  background: linear-gradient(135deg, #1c1c20, #0e0e10);
  background-size: cover; background-position: center;
}
@keyframes badgeRing {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.07); }
}
.about__badge {
  position: absolute; bottom: -28px; right: -28px;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; text-decoration: none;
}
.about__badge:hover { transform: scale(1.06); border-color: var(--gold-soft); box-shadow: 0 8px 28px rgba(200,164,92,0.25); }
.about__badge::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 1px solid rgba(200,164,92,0.35);
  animation: badgeRing 3.5s ease-in-out infinite; pointer-events: none;
}
.about__badge-num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.about__badge-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.about__text p { color: color-mix(in srgb, var(--cream) 74%, transparent); margin-top: 1.4rem; max-width: 34em; }
.about__text .section__title { margin-top: 1.2rem; }
.about__list { list-style: none; margin-top: 2.4rem; display: grid; gap: 0; }
.about__list li { display: flex; align-items: center; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.about__list li span:first-child {
  flex: none; width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid rgba(200,164,92,0.4);
  display: grid; place-items: center; font-size: 0.66rem; letter-spacing: 0.05em; color: var(--gold);
}

/* ============================================================
   Signature dishes
   ============================================================ */
.signatures { padding: clamp(4rem, 10vw, 8rem) var(--pad); overflow: hidden; }
.signatures__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.dish {
  position: relative; border-radius: 6px; overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-card); transform-style: preserve-3d; transition: transform 0.5s var(--ease), border-color 0.5s;
}
.dish:hover { border-color: rgba(200,164,92,0.4); }
.dish__img { aspect-ratio: 3/4; background-size: cover; background-position: center; background-color: #1a1a1e; transition: transform 0.9s var(--ease); }
.dish:hover .dish__img { transform: scale(1.06); }
.dish__body { padding: 1.4rem 1.4rem 1.6rem; transform: translateZ(30px); }
.dish__idx { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); }
.dish__name { font-family: var(--serif); font-size: 1.5rem; margin: 0.4rem 0 0.5rem; line-height: 1.1; }
.dish__desc { font-size: 0.84rem; color: var(--muted); min-height: 2.4em; }
.dish__price { margin-top: 0.9rem; font-size: 0.95rem; color: var(--gold-soft); }
.dish__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at var(--mx,50%) var(--my,0%), rgba(200,164,92,0.16), transparent 45%); opacity: 0; transition: opacity 0.4s; }
.dish:hover .dish__glow { opacity: 1; }

/* ============================================================
   Speisekarte
   ============================================================ */
.menu { padding: clamp(4rem, 10vw, 8rem) var(--pad); background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 3.5rem; }
.menu__tab {
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); background: none; border: 1px solid var(--line); padding: 0.7rem 1.4rem;
  border-radius: 100px; cursor: pointer; transition: 0.4s var(--ease);
}
.menu__tab:hover { color: var(--cream); border-color: rgba(200,164,92,0.4); }
.menu__tab.is-active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.menu__panels { max-width: 880px; margin: 0 auto; }
.menu__panel { display: none; }
.menu__panel.is-active { display: block; animation: fadeUp 0.6s var(--ease); }

/* Search mode: show every panel that has a match, with its category title */
.menu__panels.is-searching .menu__panel { display: none; }
.menu__panels.is-searching .menu__panel.is-match { display: block; animation: fadeUp 0.4s var(--ease); }
.menu__panels.is-searching .menu__panel-title {
  display: block; font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 0.4rem; opacity: 0.85;
}
.menu__no-results { text-align: center; color: var(--muted); font-style: italic; padding: 2rem 0; }

/* Search box */
.menu__search { position: relative; max-width: 420px; margin: -1.8rem auto 1.6rem; }
.menu__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.1rem; pointer-events: none; opacity: 0.8; }
.menu__search-input {
  width: 100%; font-family: var(--sans); font-size: 0.9rem; color: var(--cream);
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 100px;
  padding: 0.8rem 2.8rem; transition: border-color 0.3s var(--ease), background 0.3s;
}
.menu__search-input::placeholder { color: var(--muted); }
.menu__search-input:focus { outline: none; border-color: var(--gold); background: var(--bg-soft); }
.menu__search-input::-webkit-search-cancel-button { display: none; }
.menu__search-clear {
  position: absolute; right: 0.7rem; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(200,164,92,0.14); color: var(--gold); font-size: 0.8rem;
  display: grid; place-items: center; transition: background 0.3s;
}
.menu__search-clear:hover { background: rgba(200,164,92,0.28); }
[dir="rtl"] .menu__search-icon { left: auto; right: 1rem; }
[dir="rtl"] .menu__search-clear { right: auto; left: 0.7rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.menu__item { display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.menu__item-name { font-family: var(--serif); font-size: 1.5rem; }
.menu__item-tags { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-left: 0.7rem; vertical-align: middle; }
.menu__item-price { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-soft); white-space: nowrap; }
.menu__item-desc { grid-column: 1 / -1; color: var(--muted); font-size: 0.9rem; max-width: 52ch; }

/* ============================================================
   Galerie
   ============================================================ */
.gallery { padding: clamp(4rem, 10vw, 8rem) var(--pad); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.gallery__tile { position: relative; overflow: hidden; border-radius: 4px; border: 1px solid var(--line); background-size: cover; background-position: center; background-color: var(--bg-card); transition: border-color 0.5s var(--ease), box-shadow 0.5s; }
.gallery__tile:hover { border-color: rgba(200,164,92,0.4); box-shadow: 0 0 0 1px rgba(200,164,92,0.15); }
.gallery__tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,11,13,0.6)); opacity: 0; transition: opacity 0.5s; }
.gallery__tile:hover::after { opacity: 1; }
.gallery__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery__tile:hover img { transform: scale(1.07); }
.gallery__tile.tall { grid-row: span 2; }
.gallery__tile.wide { grid-column: span 2; }
.gallery__cap { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; font-family: var(--serif); font-size: 1.1rem; opacity: 0; transform: translateY(8px); transition: 0.5s var(--ease); }
.gallery__tile:hover .gallery__cap { opacity: 1; transform: none; }

/* ============================================================
   Reservierung
   ============================================================ */
.reserve { padding: clamp(4rem, 10vw, 8rem) var(--pad); background: var(--bg-soft); border-top: 1px solid var(--line); }
.reserve__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.reserve__intro p { color: color-mix(in srgb, var(--cream) 74%, transparent); margin-top: 1.4rem; max-width: 32em; }
.reserve__facts { list-style: none; margin-top: 2.6rem; display: grid; gap: 1.3rem; }
.reserve__facts li { display: flex; flex-direction: column; gap: 0.25rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.reserve__facts strong { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.reserve__facts span { font-family: var(--serif); font-size: 1.3rem; }

.reserve__hint { margin-top: 1rem; font-size: 0.74rem; color: rgba(154,149,140,0.7); letter-spacing: 0.04em; }
.reserve__map { margin-top: 1.8rem; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/10; filter: grayscale(0.3) contrast(1.05); }
.reserve__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.reserve__facts a { color: inherit; border-bottom: 1px solid var(--line); transition: color 0.3s, border-color 0.3s; }
.reserve__facts a:hover { color: var(--gold); border-color: var(--gold); }
.menu__note { text-align: center; margin-top: 2.5rem; font-size: 0.74rem; color: rgba(154,149,140,0.7); letter-spacing: 0.04em; }

.reserve__form { background: var(--bg-card); border: 1px solid var(--line); border-radius: 8px; padding: clamp(1.6rem, 4vw, 2.6rem); display: grid; gap: 1.2rem; }
.field { display: grid; gap: 0.5rem; }
.field--row { grid-template-columns: 1fr 1fr; gap: 1rem; }
.field--row > div { display: grid; gap: 0.5rem; }
.field label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.field label .opt { color: rgba(154,149,140,0.6); letter-spacing: 0.05em; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.95rem; color: var(--cream);
  background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
  padding: 0.85rem 1rem; width: 100%; transition: border-color 0.3s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field input.invalid, .field select.invalid { border-color: var(--bordeaux); }
.field select { appearance: none; cursor: pointer; }
.reserve__success { color: var(--gold-soft); font-family: var(--serif); font-size: 1.15rem; text-align: center; margin-top: 0.4rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad) 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
}
/* soft gold aura rising from the top edge */
.footer__glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 120%; pointer-events: none; z-index: 0;
  background: radial-gradient(50% 40% at 50% 0%, rgba(200,164,92,0.14) 0%, transparent 70%);
}
.footer__inner { position: relative; z-index: 1; }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem 3rem; padding-bottom: 2.5rem; }
.footer__brand { max-width: 22rem; }
.footer__logo {
  font-family: var(--serif); font-size: 2rem; letter-spacing: 0.34em; padding-left: 0.34em;
  background: linear-gradient(100deg, var(--gold-deep), var(--gold-soft) 50%, var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.footer__brand p { color: var(--muted); font-size: 0.84rem; margin-top: 0.6rem; letter-spacing: 0.1em; }
.footer__status {
  display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.1rem;
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.34rem 0.8rem; border-radius: 100px; border: 1px solid var(--line); color: var(--muted);
}
.footer__status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--muted); }
.footer__status.is-open { color: #8fd9a0; border-color: rgba(143,217,160,0.4); }
.footer__status.is-open::before { background: #6ddc8a; box-shadow: 0 0 8px #6ddc8a; animation: pulse 2s infinite; }
.footer__status.is-closed { color: #d99; border-color: rgba(213,119,119,0.35); }
.footer__status.is-closed::before { background: #d57; }
.footer__col { display: flex; flex-direction: column; gap: 1rem; }
.footer__col-title { font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__nav a, .footer__social a {
  position: relative; width: fit-content; font-size: 0.82rem; letter-spacing: 0.08em;
  color: var(--muted); transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer__nav a::before, .footer__social a::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.footer__nav a:hover, .footer__social a:hover { color: var(--gold); padding-left: 1rem; }
.footer__nav a:hover::before, .footer__social a:hover::before { width: 0.7rem; }
/* oversized, barely-there brand watermark */
.footer__wordmark {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(3.5rem, 17vw, 13rem); line-height: 0.9; text-align: center;
  letter-spacing: 0.02em; white-space: nowrap; user-select: none;
  margin: 0.5rem 0 -0.06em; padding-top: 1.5rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--gold) 22%, transparent), transparent 92%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.75;
}
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid var(--line);
  font-size: 0.74rem; letter-spacing: 0.08em; color: color-mix(in srgb, var(--muted) 70%, transparent);
}
[dir="rtl"] .footer__nav a:hover, [dir="rtl"] .footer__social a:hover { padding-left: 0; padding-right: 1rem; }
[dir="rtl"] .footer__nav a::before, [dir="rtl"] .footer__social a::before { left: auto; right: 0; }

/* ============================================================
   Reveal animation base (GSAP overrides; this is the no-JS/fallback)
   ============================================================ */
[data-reveal], [data-reveal-line] > * , .reveal-init { will-change: transform, opacity; }

/* ============================================================
   Cinematic overlays
   ============================================================ */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 9500; background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft)); box-shadow: 0 0 12px rgba(200,164,92,0.6); }
.scroll-label {
  position: fixed; top: 10px; right: 1.2rem; z-index: 9500; pointer-events: none;
  font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); opacity: 0; transition: opacity 0.4s var(--ease);
}
.scroll-label.is-visible { opacity: 1; }
.vignette { position: fixed; inset: 0; z-index: 600; pointer-events: none; box-shadow: inset 0 0 220px 40px rgba(0,0,0,0.7); }
.grain {
  position: fixed; inset: -50%; z-index: 650; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(2) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 25%{transform:translate(-4%,3%)} 50%{transform:translate(3%,-5%)} 75%{transform:translate(-3%,4%)} 100%{transform:translate(4%,-2%)} }

/* ---- Stats counter glow ---- */
@keyframes statGlow {
  0% { text-shadow: 0 0 40px rgba(200,164,92,0.85), 0 0 80px rgba(200,164,92,0.35); }
  100% { text-shadow: none; }
}
.stats__num.is-counting { animation: statGlow 1.8s ease-out forwards; }

/* ============================================================
   Stats band
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: clamp(3rem, 8vw, 6rem) var(--pad); text-align: center; border-bottom: 1px solid var(--line); }
.stats__item { display: flex; flex-direction: column; gap: 0.6rem; position: relative; }
.stats__item + .stats__item::before { content: ""; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: var(--line); }
.stats__num { font-family: var(--serif); font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1; color: var(--gold); font-weight: 500; }
.stats__label { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   Chef
   ============================================================ */
.chef { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; padding: clamp(5rem, 12vw, 10rem) var(--pad); }
.chef__portrait { position: relative; }
.chef__img { aspect-ratio: 4/5; border-radius: 4px; background: var(--bg-card) center/cover; filter: grayscale(0.15) contrast(1.05); }
.chef__frame { position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); border-radius: 4px; z-index: -1; }
.chef__quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.4; color: var(--cream); margin-top: 1.6rem; position: relative; padding-left: 2.2rem;
}
.chef__quote::before {
  content: "\201C"; position: absolute; left: -0.1rem; top: -0.4rem;
  font-size: 6rem; line-height: 1; color: var(--gold); opacity: 0.25; font-style: normal;
}
.chef__text > p:not(.chef__quote):not(.section__eyebrow) { color: color-mix(in srgb, var(--cream) 74%, transparent); margin-top: 1.3rem; max-width: 36em; }
.chef__sign { font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--gold-soft); margin-top: 1.6rem; opacity: 0.9; }

/* ============================================================
   Interactive 3D viewer
   ============================================================ */
.viewer { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; padding: clamp(4rem, 10vw, 8rem) var(--pad); background: radial-gradient(120% 100% at 80% 50%, #141118 0%, var(--bg) 70%); }
.viewer__text p:not(.section__eyebrow):not(.viewer__hint) { color: color-mix(in srgb, var(--cream) 74%, transparent); margin-top: 1.3rem; max-width: 34em; }
.viewer__hint { margin-top: 1.8rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.6rem; }
.viewer__stage { position: relative; aspect-ratio: 1/1; max-height: 70vh; display: grid; place-items: center; }
.viewer__canvas { width: 100%; height: 100%; cursor: grab; position: relative; z-index: 2; touch-action: none; }
.viewer__canvas:active { cursor: grabbing; }
.viewer__ring { position: absolute; width: 78%; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; z-index: 1; box-shadow: 0 0 120px 10px rgba(200,164,92,0.12) inset; animation: pulse 5s var(--ease) infinite; }
@keyframes pulse { 0%,100%{ transform: scale(1); opacity: 0.6 } 50%{ transform: scale(1.04); opacity: 1 } }
.viewer__loading { position: absolute; z-index: 3; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); transition: opacity 0.6s; text-align: center; }
.viewer__loading.is-hidden { opacity: 0; pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.viewer__loading::before {
  content: ""; display: block; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--line); border-top-color: var(--gold);
  animation: spin 0.9s linear infinite; margin: 0 auto 0.75rem;
}

/* ============================================================
   Cinematic experience (video)
   ============================================================ */
.experience { position: relative; min-height: 80vh; display: grid; place-items: center; text-align: center; padding: clamp(5rem, 12vw, 9rem) var(--pad); overflow: hidden; }
.experience__bg { position: absolute; inset: 0; z-index: 1; background-color: var(--bg-card); background-size: cover; background-position: center; transform: scale(1.05); animation: kenburns 18s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.05) translate(0,0); } to { transform: scale(1.16) translate(-1.5%, -1.5%); } }
.experience__overlay { position: absolute; inset: 0; z-index: 2; background: radial-gradient(120% 120% at 50% 50%, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.8) 70%, var(--bg) 100%); }
.experience__content { position: relative; z-index: 3; max-width: 720px; }
.experience__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.05; margin-bottom: 1.4rem; }
.experience__content p { color: color-mix(in srgb, var(--cream) 82%, transparent); margin-bottom: 2rem; font-size: clamp(1rem, 1.4vw, 1.15rem); }
.exp__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ---- Mobile-only lang block (inside bottom-sheet) ---- */
.nav__lang-mobile { display: none; }

/* ============================================================
   Nav tools · status · language · theme
   ============================================================ */
.nav__tools { display: flex; align-items: center; gap: 0.8rem; }
.nav__status { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 100px; border: 1px solid var(--line); white-space: nowrap; display: inline-flex; align-items: center; gap: 0.4rem; }
.nav__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--muted); }
.nav__status.is-open { color: #8fd9a0; border-color: rgba(143,217,160,0.4); }
.nav__status.is-open::before { background: #6ddc8a; box-shadow: 0 0 8px #6ddc8a; }
.nav__status.is-closed { color: #d99; }
.nav__status.is-closed::before { background: #d57; }
.lang { display: inline-flex; gap: 2px; border: 1px solid var(--line); border-radius: 100px; padding: 2px; }
.lang__btn { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.06em; font-weight: 600; color: var(--muted); background: none; border: none; padding: 0.3rem 0.55rem; border-radius: 100px; cursor: pointer; transition: 0.3s var(--ease); }
.lang__btn:hover { color: var(--cream); }
.lang__btn.is-active { background: var(--gold); color: var(--bg); }
.theme-toggle { background: none; border: 1px solid var(--line); color: var(--gold); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 0.9rem; transition: border-color 0.3s var(--ease), background 0.3s, transform 0.3s; }
.theme-toggle:hover { border-color: var(--gold); background: rgba(200,164,92,0.1); transform: rotate(20deg); }

/* ============================================================
   Sticky mobile action bar
   ============================================================ */
.actionbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 750; display: none; gap: 1px; background: var(--line); border-top: 1px solid var(--line); backdrop-filter: blur(14px); transition: transform 0.4s var(--ease); }
/* hide the bottom action bar while the menu sheet is open so they don't overlap */
.nav.is-open ~ .actionbar { transform: translateY(110%); pointer-events: none; }
.actionbar__btn { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.15rem; padding: 0.6rem 0.4rem 0.7rem; font-size: 0.66rem; letter-spacing: 0.05em; text-transform: uppercase; background: rgba(11,11,13,0.92); color: var(--cream); }
.actionbar__btn span:first-child { font-size: 1.1rem; }
.actionbar__btn--primary { background: var(--gold); color: var(--bg); }

/* ============================================================
   SVG dividers
   ============================================================ */
.divider { color: var(--gold); opacity: 0.5; line-height: 0; padding: 0 var(--pad); }
.divider svg { width: 100%; height: 36px; display: block; }

/* ============================================================
   Diet markers + menu legend / foot
   ============================================================ */
.diet { font-size: 0.78em; vertical-align: middle; }
.menu__item-name .diet, .dish__name .diet { margin-inline-start: 0.25em; }
.menu__legend { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem; margin: -1.5rem auto 2.5rem; max-width: 880px; font-size: 0.78rem; color: var(--muted); }
.menu__legend-title { letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.diet-key { display: inline-flex; align-items: center; gap: 0.35rem; }
.diet-filter {
  background: none; border: 1px solid transparent; border-radius: 100px;
  padding: 0.28rem 0.8rem; cursor: pointer; color: var(--muted); font: inherit; font-size: 0.78rem;
  transition: border-color 0.3s var(--ease), background 0.3s, color 0.3s;
}
.diet-filter:hover { border-color: var(--line); color: var(--cream); }
.diet-filter.is-active { background: rgba(200,164,92,0.12); border-color: rgba(200,164,92,0.6); color: var(--cream); }
.menu__item { transition: opacity 0.3s var(--ease); }
.menu__item[hidden] { display: none; }
.menu__badge {
  display: inline-block; font-family: var(--sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.18rem 0.55rem;
  border-radius: 100px; vertical-align: middle; margin-inline-start: 0.5rem;
  white-space: nowrap; line-height: 1.5;
}
.menu__badge--chef { background: rgba(200,164,92,0.14); color: var(--gold); border: 1px solid rgba(200,164,92,0.45); }
.menu__badge--new  { background: rgba(110,36,54,0.18); color: #e06080; border: 1px solid rgba(110,36,54,0.45); }
.menu__panel-empty { color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 1.2rem; text-align: center; padding: 2.5rem 0; }
.menu__foot { max-width: 880px; margin: 2.5rem auto 0; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.btn--sm { padding: 0.7rem 1.4rem; font-size: 0.72rem; }

/* ============================================================
   Hours table
   ============================================================ */
.hours { display: grid; gap: 0.35rem; margin-top: 0.5rem; width: 100%; max-width: 22rem; }
.hours__row { display: flex; justify-content: space-between; gap: 1rem; font-family: var(--sans); font-size: 0.9rem; color: var(--cream); padding-bottom: 0.3rem; border-bottom: 1px dashed var(--line); }
.hours__row.is-today { color: var(--gold-soft); font-weight: 500; }
.reserve__route { display: inline-block; margin-top: 0.4rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--line); cursor: pointer; }
.reserve__parking { color: var(--muted); font-size: 0.84rem; margin-top: 1rem; }

/* ============================================================
   Map click-to-load (privacy)
   ============================================================ */
.reserve__map { margin-top: 1.8rem; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/10; position: relative; background: var(--bg-card); }
.reserve__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__load { position: absolute; inset: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; background: linear-gradient(160deg, #15151a, #0e0e10); color: var(--cream); border: none; cursor: pointer; font-family: var(--sans); font-size: 0.95rem; letter-spacing: 0.08em; }
.map__load small { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.02em; }
.reserve__map.is-loaded .map__load { display: none; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { padding: clamp(4rem, 10vw, 8rem) var(--pad); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 1100px; margin: 0 auto; }
.review { position: relative; overflow: hidden; background: var(--bg-card); border: 1px solid var(--line); border-radius: 12px; padding: 2.2rem 1.8rem 1.8rem; display: flex; flex-direction: column; gap: 0.9rem; transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s; }
.review::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.4s var(--ease); }
.review:hover { border-color: rgba(200,164,92,0.3); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.34); }
.review:hover::after { opacity: 1; }
.review__mark { position: absolute; top: 0.4rem; right: 1.1rem; font-family: var(--serif); font-size: 5rem; line-height: 1; color: var(--gold); opacity: 0.16; pointer-events: none; }
.review__stars { color: var(--gold); letter-spacing: 0.15em; position: relative; z-index: 1; }
.review__text { font-family: var(--serif); font-size: 1.28rem; line-height: 1.45; color: var(--cream); font-style: italic; position: relative; z-index: 1; }
.review__author { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.4rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.85rem; letter-spacing: 0.04em; }
.review__avatar { flex: none; width: 2.2rem; height: 2.2rem; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 1.05rem; color: var(--bg); background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); }
.review__name { color: var(--cream); font-weight: 500; }
.review__src { margin-inline-start: auto; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line); border-radius: 100px; padding: 0.2rem 0.6rem; }
[dir="rtl"] .review__mark { right: auto; left: 1.1rem; }
.reviews__cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(4rem, 10vw, 8rem) var(--pad); background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: start; background: none; border: none; cursor: pointer; color: var(--cream); font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.6rem); padding: 1.4rem 0; }
.faq__icon { color: var(--gold); font-size: 1.4rem; transition: transform 0.4s var(--ease); flex: none; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a { overflow: hidden; }
.faq__a p { color: var(--muted); padding-bottom: 1.4rem; max-width: 60ch; }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 9600; display: none; align-items: center; justify-content: center; background: rgba(7,7,9,0.92); backdrop-filter: blur(8px); }
.lightbox.is-open { display: flex; }
.lightbox img { position: relative; z-index: 1; max-width: 88vw; max-height: 82vh; border-radius: 6px; border: 1px solid var(--line); cursor: zoom-in; transition: transform 0.4s var(--ease); will-change: transform; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox img.is-zoomed { transform: scale(2.3); cursor: zoom-out; transition: transform 0.35s var(--ease); }
.lightbox__cap { position: absolute; z-index: 2; bottom: 4vh; left: 0; right: 0; text-align: center; font-family: var(--serif); font-size: 1.2rem; color: var(--cream); pointer-events: none; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
.lightbox__count { position: absolute; z-index: 2; top: 4vh; left: 0; right: 0; text-align: center; font-size: 0.78rem; letter-spacing: 0.22em; color: var(--gold); font-variant-numeric: tabular-nums; pointer-events: none; }
.lightbox button { position: absolute; z-index: 3; background: rgba(20,20,24,0.7); color: var(--cream); border: 1px solid var(--line); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; transition: 0.3s var(--ease); }
.lightbox button:hover { background: var(--gold); color: var(--bg); }
.lightbox__close { top: 4vh; right: 4vw; }
.lightbox__prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .signatures__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 820px) {
  .about, .reserve__inner, .chef, .viewer { grid-template-columns: 1fr; }
  .about__badge { width: 110px; height: 110px; right: 12px; bottom: -20px; }
  .about__badge-num { font-size: 1.9rem; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .stats__item:nth-child(3)::before, .stats__item + .stats__item::before { display: none; }
  .chef__frame { inset: 12px -12px -12px 12px; }
  .viewer__stage { max-height: 56vh; }
  .actionbar { display: flex; }
  .footer { padding-bottom: calc(2rem + 68px); }
}
@media (max-width: 560px) {
  .signatures__grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-padding-inline-start: var(--pad); gap: 1rem;
    padding-inline: var(--pad); margin-inline: calc(-1 * var(--pad));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .signatures__grid::-webkit-scrollbar { display: none; }
  .signatures__grid .dish { flex: 0 0 80vw; scroll-snap-align: start; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__tile.wide { grid-column: span 1; }
  .field--row { grid-template-columns: 1fr; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; }
  .nav__status { display: none; }
  .nav__tools { gap: 0.5rem; }
  .menu__legend { gap: 0.8rem 1rem; }
  .hero__overlay {
    background:
      radial-gradient(130% 100% at 50% 50%, transparent 0%, rgba(11,11,13,0.65) 50%, var(--bg) 100%),
      linear-gradient(180deg, rgba(11,11,13,0.72) 0%, transparent 22%, transparent 52%, var(--bg) 100%);
  }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .marquee__track { animation: none; }
  .hero__scroll-line::after { display: none; }
  .grain, .experience__bg, .viewer__ring { animation: none !important; }
}

/* ============================================================
   Mobile app-feel · safe-area · bottom-sheet · gyro
   ============================================================ */
.nav__logo { white-space: nowrap; }
.gyro-btn {
  position: absolute; left: 50%; bottom: calc(5.5rem + env(safe-area-inset-bottom));
  transform: translateX(-50%); z-index: 5;
  background: rgba(11,11,13,0.6); color: var(--gold); border: 1px solid var(--gold);
  padding: 0.6rem 1.2rem; border-radius: 100px; font-size: 0.74rem; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer; backdrop-filter: blur(8px);
}

/* ---- Mobile navigation (single source of truth) ---- */
@media (max-width: 980px) {
  .nav { padding-top: max(1.1rem, env(safe-area-inset-top)); }
  .nav__logo { font-size: 1.25rem; letter-spacing: 0.22em; }
  .nav__burger { display: block; z-index: 760; }

  /* hidden bottom sheet — can never overlap content when closed */
  .nav__links {
    position: fixed; inset: auto 0 0 0; top: auto; z-index: 700;
    height: auto; max-height: 82vh; overflow-y: auto;
    flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0.4rem;
    padding: 1.6rem var(--pad) calc(2rem + env(safe-area-inset-bottom));
    background: rgba(15,15,18,0.98); backdrop-filter: blur(24px);
    border-top: 1px solid var(--line); border-radius: 26px 26px 0 0;
    box-shadow: 0 -20px 60px rgba(0,0,0,0.55);
    transform: translateY(110%); transition: transform 0.5s var(--ease);
    visibility: hidden; pointer-events: none;
  }
  .nav__links::before {
    content: ""; width: 44px; height: 4px; border-radius: 100px; flex: none;
    background: var(--line); align-self: center; margin-bottom: 1rem;
  }
  .nav.is-open::after {
    content: ""; position: fixed; inset: 0; z-index: 690; background: rgba(7,7,9,0.6);
    backdrop-filter: blur(2px);
  }
  .nav.is-open .nav__links { transform: none; visibility: visible; pointer-events: auto; }
  .nav__link {
    font-size: 1.25rem; font-family: var(--serif); letter-spacing: 0.04em; text-transform: none;
    padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--line);
  }
  .nav__cta { text-align: center; margin-top: 0.8rem; }

  /* bigger tap targets */
  .menu__tab { padding: 0.85rem 1.4rem; }
  .lang__btn { padding: 0.45rem 0.7rem; }

  /* hide desktop lang widget, show it inside the bottom-sheet instead */
  .nav__tools .lang { display: none; }
  .nav__lang-mobile {
    display: flex; justify-content: center;
    margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  }
  .field input, .field select, .field textarea { padding: 1rem; font-size: 1rem; }
}

@media (max-width: 820px) {
  .actionbar { padding-bottom: calc(0.7rem + env(safe-area-inset-bottom)); }
  .footer { padding-bottom: calc(2rem + 70px + env(safe-area-inset-bottom)); }
}

/* ---- active nav link (scroll-spy) ---- */
.nav__link.is-current { color: var(--gold); opacity: 1; }
.nav__link.is-current::after { width: 100%; }

/* ---- back-to-top ---- */
.to-top {
  position: fixed; right: 1.1rem; bottom: 2rem; z-index: 740;
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%; background: var(--bg-card); color: var(--gold);
  font-size: 1rem; line-height: 1; text-decoration: none;
  border: 1px solid var(--line);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s, border-color .3s;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--bg-soft); border-color: var(--gold); }
.to-top__ring { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; }
.to-top__arc { transition: stroke-dashoffset 0.1s linear; }
@media (max-width: 820px) {
  .to-top { bottom: calc(72px + env(safe-area-inset-bottom) + 0.6rem); right: 0.9rem; }
}

/* ============================================================
   RTL (Arabisch) — Schrift + Spiegelung
   ============================================================ */
[dir="rtl"] { --serif: "Cairo", "Cormorant Garamond", serif; --sans: "Cairo", "Inter", system-ui, sans-serif; }
[dir="rtl"] .nav__logo, [dir="rtl"] .preloader__mark, [dir="rtl"] .footer__logo,
[dir="rtl"] .hero__eyebrow, [dir="rtl"] .section__eyebrow, [dir="rtl"] .nav__link,
[dir="rtl"] .btn, [dir="rtl"] .menu__tab, [dir="rtl"] .nav__cta, [dir="rtl"] .stats__label,
[dir="rtl"] .reserve__facts strong, [dir="rtl"] .field label { letter-spacing: 0; }
[dir="rtl"] .hero__title { letter-spacing: 0; }
[dir="rtl"] .marquee__track { direction: ltr; }   /* keep latin dish names readable */
[dir="rtl"] .about__badge { right: auto; left: -28px; }
[dir="rtl"] .chef__frame { inset: 18px 18px -18px -18px; }
[dir="rtl"] .dish__idx { direction: ltr; display: inline-block; }

/* ============================================================
   Print — clean menu only
   ============================================================ */
.menu__panel-title { display: none; }
@media print {
  .scroll-progress, .grain, .vignette, .preloader, .cursor, .cursor-dot, .nav, .actionbar,
  .hero, .marquee, .stats, .divider, .about, .chef, .signatures, .viewer, .gallery,
  .experience, .reviews, .faq, .reserve, .footer, .lightbox, .menu__tabs, .menu__foot,
  .menu__legend, .menu__search, .menu__no-results { display: none !important; }
  /* always print the full menu, ignoring any active search/diet filter */
  .menu__panels.is-searching .menu__panel, .menu__item[hidden] { display: grid !important; }
  .menu__panels.is-searching .menu__panel { display: block !important; }
  html, body { background: #fff !important; color: #111 !important; }
  .menu { padding: 0 !important; background: #fff !important; border: 0 !important; }
  .menu .section__head .section__eyebrow { color: #555 !important; }
  .menu .section__title, .menu__panel-title { color: #111 !important; }
  .section__title em, .hero__title .accent em { -webkit-text-fill-color: #111 !important; background: none !important; }
  .menu__panel { display: block !important; visibility: visible; break-inside: avoid; margin-bottom: 1.2rem; }
  .menu__panel[hidden] { display: block !important; }
  .menu__panel-title { display: block; font-family: serif; font-size: 1.4rem; border-bottom: 2px solid #111; margin: 1.2rem 0 0.6rem; }
  .menu__item { color: #111 !important; }
  .menu__item-name, .menu__item-price { color: #111 !important; }
  .menu__item-desc { color: #555 !important; }
  .diet { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
