/* ═══════════════════════════════════════════════════════════════
   Dao Asia Food · Style v3  ·  Fraunces + DM Sans
   Design Tokens: Near-black bg · Vermillion red · Warm gold
   ═══════════════════════════════════════════════════════════════ */

/* Performance: font-display:swap ist via Google Fonts URL-Parameter gesetzt */
@import url('https://fonts.googleapis.com/css2?display=swap&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,700&display=swap&display=swap');

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:        #090706;
  --surface:   #111009;
  --surface2:  #191410;
  --border:    rgba(255,255,255,.08);
  --border2:   rgba(255,255,255,.14);
  --red:       #c8291d;
  --red-glow:  rgba(200,41,29,.22);
  --red-dim:   rgba(200,41,29,.12);
  --gold:      #e4a829;
  --gold-dim:  rgba(228,168,41,.13);
  --gold-text: #e8bb55;
  --text:      #f2e8d8;
  --muted:     #9a8060;
  --muted2:    #c8b490;
  --overlay:   rgba(6,4,2,.86);

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --sp:   90px;
  --max:  1200px;
  --max2: 960px;

  --shadow:    0 24px 72px rgba(0,0,0,.55);
  --shadow-sm: 0 6px 24px rgba(0,0,0,.32);
  --r:    20px;
  --r-sm: 12px;
  --r-lg: 32px;
  --r-xl: 40px;
  --r-full: 999px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── Info Bar ────────────────────────────────────────────────── */
.bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 9px 20px;
  background: rgba(0,0,0,.5);
  border-bottom: 1px solid var(--border);
  font-size: .84rem;
  color: var(--muted);
  letter-spacing: .02em;
}
.bar span { display: flex; align-items: center; gap: 6px; }
.bar span::before { content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── Header / Nav ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9,7,6,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--red);
  color: #fff;
  font-size: .85rem;
  font-weight: 900;
  font-family: var(--ff-display);
  letter-spacing: .05em;
  box-shadow: 0 0 0 4px var(--red-dim), 0 0 28px var(--red-glow);
  flex-shrink: 0;
  transition: box-shadow .2s, transform .15s;
  user-select: none;
}
.brand-badge:hover { transform: scale(1.06); box-shadow: 0 0 0 6px var(--red-dim), 0 0 40px var(--red-glow); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--muted2);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--r-full);
  background: var(--red);
  color: #fff !important;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 0 24px var(--red-glow);
  transition: box-shadow .2s, transform .15s;
}
.nav-cta:hover { box-shadow: 0 0 40px var(--red-glow); transform: translateY(-1px); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 700;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 32px var(--red-glow);
}
.btn-primary:hover { box-shadow: 0 8px 48px rgba(200,41,29,.45); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--gold-text);
  border: 1.5px solid rgba(228,168,41,.4);
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-dim); }
.btn-sm { padding: 10px 20px; font-size: .86rem; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,41,29,.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 20% 80%, rgba(228,168,41,.06) 0%, transparent 60%),
              var(--bg);
}
.hero-watermark {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-52%);
  font-family: var(--ff-display);
  font-size: clamp(220px, 30vw, 480px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,41,29,.10);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
}
.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
  padding: var(--sp) 0;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-text);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: .92;
  letter-spacing: -.04em;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 11ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--red);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted2);
  max-width: 52ch;
  margin-bottom: 12px;
  line-height: 1.7;
}
.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-tag {
  padding: 5px 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.04);
  font-size: .82rem;
  color: var(--muted2);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), transparent);
  opacity: .5;
}

/* ── Section Wrapper ─────────────────────────────────────────── */
.section {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
  padding: var(--sp) 0;
}
.section-head {
  margin-bottom: 42px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-text);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 900;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.7;
}
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Specialty Cards ─────────────────────────────────────────── */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.spec-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.spec-card:hover { transform: translateY(-6px); }
.spec-card-bg {
  position: absolute;
  inset: 0;
}
.spec-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.spec-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
}
.spec-card-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.12);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
  backdrop-filter: blur(4px);
}
.spec-card-title {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
}
.spec-card-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* Card gradient backgrounds */
.bg-thai      { background: linear-gradient(145deg, #5a1200, #b03d10, #d4601a); }
.bg-sushi     { background: linear-gradient(145deg, #060e1e, #0f2540, #1a4070); }
.bg-chef      { background: linear-gradient(145deg, #2a0a00, #6b2010, #9e3520); }
.bg-takeaway  { background: linear-gradient(145deg, #0f0a1a, #2a1540, #4a2060); }

/* ── Location Cards ──────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: var(--border2); box-shadow: var(--shadow); }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: var(--red-dim);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-text);
  margin-bottom: 10px;
}
.card p {
  color: var(--muted2);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.card address { font-style: normal; color: var(--muted2); font-size: .9rem; line-height: 1.7; margin-bottom: 18px; }

/* ── Hours Card ──────────────────────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr td { padding: 5px 0; font-size: .88rem; color: var(--muted); }
.hours-table tr td:first-child { font-weight: 600; color: var(--muted2); width: 55%; }
.hours-table tr.today td { color: var(--text); }
.hours-table tr.today td:first-child { color: var(--gold-text); }
.hours-closed td { color: var(--red) !important; opacity: .7; }

/* ── Service Banner ──────────────────────────────────────────── */
.service-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.service-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--red), var(--gold));
}
.service-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 900;
  margin-bottom: 10px;
}
.service-banner p { color: var(--muted); max-width: 55ch; }
.service-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Page Hero (interior pages) ──────────────────────────────── */
.page-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 70ch;
}

/* ── Menu Page ───────────────────────────────────────────────── */
.menu-wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sticky sidebar nav */
.menu-sidebar {
  position: sticky;
  top: 104px;
}
.menu-sidebar-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  padding: 0 0 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.menu-nav a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  transition: all .15s;
}
.menu-nav a:hover,
.menu-nav a.active {
  background: var(--gold-dim);
  color: var(--gold-text);
}
.menu-nav-pdf {
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: var(--red-dim);
  color: var(--text) !important;
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  transition: background .2s;
  display: block;
}
.menu-nav-pdf:hover { background: rgba(200,41,29,.22) !important; color: #fff !important; }

/* Menu content area */
.menu-content { min-width: 0; }
.menu-category {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
  scroll-margin-top: 90px;
}
.menu-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.menu-category-header h2 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-text);
  letter-spacing: -.02em;
}
.category-codes-badge {
  font-size: .75rem;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 4px 12px;
}

/* Dish rows */
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 100px;
  transition: background .15s;
}
.dish:first-child { border-top: 0; }
.dish:hover { background: rgba(255,255,255,.015); margin: 0 -8px; padding: 14px 8px; border-radius: var(--r-sm); }
.dish-name {
  font-weight: 600;
  font-size: .96rem;
  color: var(--text);
  margin-bottom: 3px;
}
.dish-desc {
  font-size: .86rem;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.5;
}
.dish-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.code-badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: var(--r-full);
  background: rgba(228,168,41,.15);
  color: var(--gold-text);
  font-size: .72rem;
  font-weight: 700;
  border: 1px solid rgba(228,168,41,.2);
}
.allergen-text {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}
.dish-link {
  font-size: .72rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .6;
  margin-top: 4px;
  display: inline-block;
  transition: opacity .15s;
}
.dish-link:hover { opacity: 1; color: var(--gold-text); }
.dish-price {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-text);
  white-space: nowrap;
  padding-top: 2px;
}

/* Notice */
.menu-notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 20px;
}

/* Location bar on speisekarte */
.location-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-card strong { color: var(--gold-text); font-weight: 700; }
.location-card p { color: var(--muted); font-size: .88rem; margin: 0; }

/* Allergen legend */
.legend-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-top: 20px;
  scroll-margin-top: 90px;
}
.legend-section h2 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.legend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.legend-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: .84rem;
}
.legend-item b { color: var(--gold-text); display: block; margin-bottom: 3px; }
.legend-item span { color: var(--muted); }

/* ── Legal Pages ─────────────────────────────────────────────── */
.legal-wrap {
  width: min(var(--max2), calc(100% - 40px));
  margin: auto;
  padding: 60px 0 80px;
}
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px 52px;
}
.legal-card h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 900;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-card h2 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-text);
  margin-top: 32px;
  margin-bottom: 10px;
}
.legal-card p { color: var(--muted2); line-height: 1.75; margin-bottom: 12px; font-size: .94rem; }
.legal-card a { color: var(--gold-text); }
.notice-box {
  background: rgba(228,168,41,.08);
  border: 1px solid rgba(228,168,41,.2);
  border-radius: var(--r);
  padding: 14px 18px;
  color: var(--muted2);
  font-size: .88rem;
  margin-bottom: 24px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.4);
}
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 0 40px;
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.footer-col h4 { color: var(--muted2); font-weight: 700; font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col p { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.footer-col a { display: block; color: var(--muted); font-size: .88rem; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: var(--gold-text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
  color: var(--muted);
  font-size: .8rem;
}
.footer-bottom-inner { width: min(var(--max), calc(100% - 40px)); margin: auto; }

/* ── Admin Panel ─────────────────────────────────────────────── */

/* Password Modal */
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.admin-modal.visible { opacity: 1; pointer-events: all; }
.admin-modal-box {
  background: #1a1510;
  border: 1px solid rgba(228,168,41,.25);
  border-radius: 24px;
  padding: 36px 40px;
  width: min(400px, calc(100% - 40px));
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  transform: translateY(16px);
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.admin-modal.visible .admin-modal-box { transform: translateY(0); }
.admin-modal-icon { font-size: 2.2rem; margin-bottom: 12px; }
.admin-modal-box h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.admin-modal-box p { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.admin-modal-input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 13px 18px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1rem;
  margin-bottom: 16px;
  outline: none;
  transition: border-color .2s;
  text-align: center;
  letter-spacing: .12em;
}
.admin-modal-input:focus { border-color: rgba(228,168,41,.5); }
.admin-modal-input.shake { animation: shake .4s ease; }
@keyframes shake {
  0%,100%{transform:translateX(0)} 20%{transform:translateX(-8px)} 40%{transform:translateX(8px)} 60%{transform:translateX(-5px)} 80%{transform:translateX(5px)}
}
.admin-modal-btns { display: flex; gap: 10px; justify-content: center; }
.admin-btn-login {
  padding: 11px 24px;
  border-radius: var(--r-full);
  background: var(--gold);
  color: #111;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: opacity .2s;
}
.admin-btn-login:hover { opacity: .85; }
.admin-btn-cancel {
  padding: 11px 20px;
  border-radius: var(--r-full);
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted);
  font-size: .9rem;
  cursor: pointer;
  transition: border-color .2s;
}
.admin-btn-cancel:hover { border-color: var(--muted); color: var(--text); }

/* Panel Overlay */
.admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.admin-overlay.visible { opacity: 1; pointer-events: all; }

/* Admin Sidebar Panel */
.admin-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8100;
  width: min(660px, 100vw);
  background: #100d09;
  border-left: 1px solid rgba(228,168,41,.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.6);
}
.admin-panel.open { transform: translateX(0); }

.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
  flex-wrap: wrap;
}
.admin-panel-header h2 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-panel-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.apb { padding: 8px 14px; border-radius: var(--r-full); font-size: .78rem; font-weight: 700; cursor: pointer; transition: all .15s; }
.apb-export { background: var(--gold); color: #111; }
.apb-export:hover { opacity: .85; }
.apb-reset { background: transparent; border: 1px solid rgba(200,41,29,.4); color: var(--red); }
.apb-reset:hover { background: var(--red-dim); }
.apb-close { background: rgba(255,255,255,.08); color: var(--muted2); }
.apb-close:hover { background: rgba(255,255,255,.14); color: var(--text); }

.admin-save-indicator {
  padding: 6px 24px;
  font-size: .75rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.3);
  flex-shrink: 0;
}
.admin-save-indicator.saved { color: #6db56d; }
.admin-save-indicator.modified { color: var(--gold-text); }

.admin-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent;
}

/* Admin Category blocks */
.admin-cat {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 12px;
  overflow: hidden;
}
.admin-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  user-select: none;
  background: rgba(255,255,255,.02);
  transition: background .15s;
}
.admin-cat-header:hover { background: rgba(255,255,255,.05); }
.admin-cat-toggle { color: var(--muted); font-size: .7rem; transition: transform .2s; }
.admin-cat-toggle.open { transform: rotate(90deg); }
.admin-cat-name { flex: 1; font-weight: 600; font-size: .9rem; }
.admin-cat-count { font-size: .75rem; color: var(--muted); }
.admin-cat-edit-btn {
  padding: 4px 10px; border-radius: var(--r-full);
  background: rgba(228,168,41,.1); color: var(--gold-text);
  font-size: .72rem; font-weight: 700; cursor: pointer;
  border: 1px solid rgba(228,168,41,.2); transition: background .15s;
}
.admin-cat-edit-btn:hover { background: rgba(228,168,41,.2); }
.admin-cat-del-btn {
  padding: 4px 10px; border-radius: var(--r-full);
  background: transparent; color: var(--muted);
  font-size: .72rem; font-weight: 700; cursor: pointer;
  border: 1px solid var(--border); transition: all .15s;
}
.admin-cat-del-btn:hover { background: var(--red-dim); color: var(--red); border-color: rgba(200,41,29,.3); }

.admin-cat-body { padding: 0 12px 12px; display: none; }
.admin-cat-body.open { display: block; }

/* Cat name editor */
.admin-cat-name-editor {
  display: flex; gap: 8px; padding: 10px 0 12px; border-bottom: 1px dashed var(--border);
}
.admin-input {
  flex: 1; background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 7px 12px; color: var(--text);
  font-family: var(--ff-body); font-size: .84rem; outline: none;
  transition: border-color .15s;
}
.admin-input:focus { border-color: rgba(228,168,41,.4); }
.admin-input-sm { padding: 5px 10px; font-size: .8rem; }
.admin-save-btn {
  padding: 7px 14px; border-radius: var(--r-sm); background: var(--gold); color: #111;
  font-size: .78rem; font-weight: 800; cursor: pointer; transition: opacity .15s; border: none;
}
.admin-save-btn:hover { opacity: .85; }

/* Dish rows in admin */
.admin-dish-list { padding-top: 10px; }
.admin-dish-row {
  display: grid;
  grid-template-columns: 40px 1fr 1fr 80px 80px 30px;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255,255,255,.05);
}
.admin-dish-row .admin-input { min-width: 0; }
.admin-dish-num { color: var(--muted); font-size: .78rem; text-align: center; }
.admin-dish-del {
  background: transparent; border: none; color: var(--muted);
  font-size: 1rem; cursor: pointer; transition: color .15s; text-align: center;
}
.admin-dish-del:hover { color: var(--red); }
.admin-add-dish-btn {
  display: flex; align-items: center; gap: 6px; margin-top: 10px;
  padding: 8px 14px; border-radius: var(--r-sm); background: rgba(255,255,255,.04);
  color: var(--muted); font-size: .8rem; font-weight: 600; cursor: pointer;
  border: 1px dashed var(--border); transition: all .15s; width: 100%;
  justify-content: center;
}
.admin-add-dish-btn:hover { background: rgba(255,255,255,.08); color: var(--text); }

/* Add category footer */
.admin-add-cat-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; border-radius: var(--r); background: rgba(255,255,255,.03);
  border: 1px dashed rgba(228,168,41,.25); color: var(--gold-text); font-size: .85rem;
  font-weight: 600; cursor: pointer; transition: all .15s; margin-top: 8px;
}
.admin-add-cat-btn:hover { background: var(--gold-dim); }

/* Admin indicator badge */
.admin-active-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 7000;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: rgba(228,168,41,.15);
  border: 1px solid rgba(228,168,41,.3);
  color: var(--gold-text);
  font-size: .75rem;
  font-weight: 700;
  display: none;
  cursor: pointer;
  transition: all .15s;
}
.admin-active-badge.visible { display: flex; align-items: center; gap: 6px; }
.admin-active-badge:hover { background: rgba(228,168,41,.25); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --sp: 64px; }
  .specialty-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .menu-wrapper { grid-template-columns: 1fr; }
  .menu-sidebar { position: static; }
  .menu-nav { flex-direction: row; flex-wrap: wrap; }
  .service-banner { padding: 36px 32px; }
  .legal-card { padding: 36px 32px; }
}
@media (max-width: 700px) {
  :root { --sp: 48px; }
  .specialty-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .location-bar { grid-template-columns: 1fr; }
  .legend-grid { grid-template-columns: 1fr 1fr; }
  .legal-card { padding: 28px 22px; }
  .nav-links { display: none; }
  .nav-cta { display: inline-flex; }
  .hero h1 { font-size: clamp(2.8rem,12vw,3.8rem); }
  .service-banner { padding: 28px 24px; }
  .admin-dish-row { grid-template-columns: 1fr 1fr 70px 30px; }
  .admin-dish-num { display: none; }
  .admin-dish-desc { display: none; }
  .bar { gap: 12px; font-size: .78rem; }
}
@media (max-width: 420px) {
  .legend-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS & DYNAMICS — v3.1
   ═══════════════════════════════════════════════════════════════ */

/* ── Logo ───────────────────────────────────────────────────── */
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(200,41,29,.35));
  transition: filter .2s, transform .15s;
}
.brand-logo:hover { filter: drop-shadow(0 3px 14px rgba(200,41,29,.55)); transform: scale(1.03); }
.brand-logo-sushi {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(200,41,29,.3));
}

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-fade {
  opacity: 0;
  transition: opacity .7s ease;
}
.reveal-fade.in-view { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .reveal,.reveal-fade { opacity:1; transform:none; transition:none; }
}

/* ── Hero Animations ─────────────────────────────────────────── */
@keyframes heroIn {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(-52%) rotate(0deg); }
  33%     { transform: translateY(-53.5%) rotate(.4deg); }
  66%     { transform: translateY(-50.8%) rotate(-.3deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-watermark {
  animation: float 9s ease-in-out infinite;
}
.hero-eyebrow  { animation: heroIn .7s cubic-bezier(.16,1,.3,1) .1s both; }
.hero h1       { animation: heroIn .7s cubic-bezier(.16,1,.3,1) .22s both; }
.hero-sub      { animation: heroIn .7s cubic-bezier(.16,1,.3,1) .36s both; }
.hero-tags     { animation: heroIn .7s cubic-bezier(.16,1,.3,1) .48s both; }
.hero-actions  { animation: heroIn .7s cubic-bezier(.16,1,.3,1) .58s both; }

.hero-strip {
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--gold) 60%, transparent 100%);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
  opacity: .6;
}

/* ── Specialty Card Dynamics ────────────────────────────────── */
.spec-card {
  transform-origin: center bottom;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.spec-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08);
}
.spec-card-bg {
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.spec-card:hover .spec-card-bg {
  transform: scale(1.06);
}
.spec-card-content {
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.spec-card:hover .spec-card-content {
  transform: translateY(-4px);
}

/* Spec card glow on hover */
.spec-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(to top, rgba(200,41,29,.18), transparent 50%);
  transition: opacity .4s;
  pointer-events: none;
}
.spec-card:hover::after { opacity: 1; }

/* ── Nav scroll shrink ───────────────────────────────────────── */
.site-header { transition: box-shadow .3s; }
.site-header.scrolled {
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}

/* ── Location card hover glow ────────────────────────────────── */
.card {
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,41,29,.35);
  box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(200,41,29,.12);
}

/* ── Marquee / ticker ────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.25);
  padding: 14px 0;
  margin-bottom: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── Stat strip ──────────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 0 0 var(--sp);
}
.stat-item {
  padding: 30px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: 0; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-text);
  letter-spacing: -.04em;
  display: block;
}
.stat-label { color: var(--muted); font-size: .84rem; margin-top: 6px; display: block; }

/* ── Sushi Logo section ──────────────────────────────────────── */
.sushi-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  margin-top: 24px;
}
.sushi-badge p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Admin homepage feature editor ──────────────────────────── */
.admin-hp-section {
  border: 1px solid rgba(228,168,41,.18);
  border-radius: var(--r);
  margin-bottom: 16px;
  overflow: hidden;
}
.admin-hp-header {
  background: rgba(228,168,41,.07);
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-text);
  letter-spacing: .05em;
  border-bottom: 1px solid rgba(228,168,41,.15);
}
.admin-feature-row {
  display: grid;
  grid-template-columns: 36px 1fr 1fr 1fr 80px 36px;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px dashed rgba(255,255,255,.05);
}
.admin-feature-row:last-child { border-bottom: 0; }
.admin-toggle-btn {
  width: 32px; height: 18px; border-radius: 9px;
  border: none; cursor: pointer; transition: background .2s;
  position: relative; flex-shrink: 0;
  background: rgba(255,255,255,.12);
}
.admin-toggle-btn.on { background: #4caf50; }
.admin-toggle-btn::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s;
}
.admin-toggle-btn.on::after { transform: translateX(14px); }
.admin-feature-bg {
  padding: 5px 8px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: .8rem;
  outline: none;
}

/* ═══════════════════════════════════════════════════════════════
   LOGO COIN-FLIP ANIMATION — v3.2
   ═══════════════════════════════════════════════════════════════ */

.logo-flipper {
  perspective: 500px;
  display: inline-block;
  line-height: 0;
}

.logo-flip-inner {
  display: inline-block;
  width: 74px;
  height: 46px;
  position: relative;
  transform-style: preserve-3d;
  animation: coinFlip 11s ease-in-out infinite;
  will-change: transform;
}

.logo-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-face img {
  height: 46px;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 2px 8px rgba(200,41,29,.3));
}

.logo-face-back {
  transform: rotateY(180deg);
}

@keyframes coinFlip {
  /* — Pause: zeige Asia Food — */
  0%   { transform: rotateY(0deg); }
  32%  { transform: rotateY(0deg);   animation-timing-function: cubic-bezier(.4,0,.2,1); }
  /* — Drehen zu Sushi Bar — */
  48%  { transform: rotateY(180deg); animation-timing-function: ease-in-out; }
  /* — Pause: zeige Sushi Bar — */
  80%  { transform: rotateY(180deg); animation-timing-function: cubic-bezier(.4,0,.2,1); }
  /* — Zurück zu Asia Food — */
  96%  { transform: rotateY(360deg); }
  100% { transform: rotateY(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-flip-inner { animation: none; }
}

/* ── PDF Button (button element styled as nav-cta) ──────── */
button.nav-cta, button.menu-nav-pdf {
  font-family: var(--ff-body);
  font-size: inherit;
  cursor: pointer;
  border: none;
}
button.nav-cta:disabled, button.menu-nav-pdf:disabled {
  opacity: .6;
  cursor: wait;
}

/* ═══════════════════════════════════════════════════════════════
   ASIAN / SUSHI STYLE — v3.3
   Speisekarte-Hero · Kategorie-Icons · Sushi-Sektion
   ═══════════════════════════════════════════════════════════════ */

/* ── Seigaiha-Muster (traditionelles japan. Schuppenmuster) ── */
.seigaiha { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2740%27%20height%3D%2740%27%3E%3Ccircle%20cx%3D%2720%27%20cy%3D%2740%27%20r%3D%2720%27%20fill%3D%27none%27%20stroke%3D%27rgba%28200%2C41%2C29%2C.06%29%27%20stroke-width%3D%271%27/%3E%3Ccircle%20cx%3D%270%27%20cy%3D%2740%27%20r%3D%2720%27%20fill%3D%27none%27%20stroke%3D%27rgba%28200%2C41%2C29%2C.06%29%27%20stroke-width%3D%271%27/%3E%3Ccircle%20cx%3D%2740%27%20cy%3D%2740%27%20r%3D%2720%27%20fill%3D%27none%27%20stroke%3D%27rgba%28200%2C41%2C29%2C.06%29%27%20stroke-width%3D%271%27/%3E%3Ccircle%20cx%3D%2710%27%20cy%3D%270%27%20r%3D%2710%27%20fill%3D%27none%27%20stroke%3D%27rgba%28200%2C41%2C29%2C.03%29%27%20stroke-width%3D%27.7%27/%3E%3Ccircle%20cx%3D%2730%27%20cy%3D%270%27%20r%3D%2710%27%20fill%3D%27none%27%20stroke%3D%27rgba%28200%2C41%2C29%2C.03%29%27%20stroke-width%3D%27.7%27/%3E%3C/svg%3E"); }

/* ── Speisekarten-Seitenhero ─────────────────────────────────── */
.menu-page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,41,29,.09) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2740%27%20height%3D%2740%27%3E%3Ccircle%20cx%3D%2720%27%20cy%3D%2740%27%20r%3D%2720%27%20fill%3D%27none%27%20stroke%3D%27rgba%28200%2C41%2C29%2C.06%29%27%20stroke-width%3D%271%27/%3E%3Ccircle%20cx%3D%270%27%20cy%3D%2740%27%20r%3D%2720%27%20fill%3D%27none%27%20stroke%3D%27rgba%28200%2C41%2C29%2C.06%29%27%20stroke-width%3D%271%27/%3E%3Ccircle%20cx%3D%2740%27%20cy%3D%2740%27%20r%3D%2720%27%20fill%3D%27none%27%20stroke%3D%27rgba%28200%2C41%2C29%2C.06%29%27%20stroke-width%3D%271%27/%3E%3Ccircle%20cx%3D%2710%27%20cy%3D%270%27%20r%3D%2710%27%20fill%3D%27none%27%20stroke%3D%27rgba%28200%2C41%2C29%2C.03%29%27%20stroke-width%3D%27.7%27/%3E%3Ccircle%20cx%3D%2730%27%20cy%3D%270%27%20r%3D%2710%27%20fill%3D%27none%27%20stroke%3D%27rgba%28200%2C41%2C29%2C.03%29%27%20stroke-width%3D%27.7%27/%3E%3C/svg%3E"),
    var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.mh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.mh-char {
  position: absolute;
  font-family: var(--ff-display);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,41,29,.06);
}
.mh-char-1 { font-size: 300px; top: 50%; left: -2%; transform: translateY(-50%); }
.mh-char-2 { font-size: 200px; top: 50%; right: 0%; transform: translateY(-50%); opacity: .6; }

.mh-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
  padding: 52px 0 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 1;
}

/* ── Logos nebeneinander ─────────────────────────────────────── */
.mh-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.mh-logo {
  height: 88px;
  width: auto;
  filter: drop-shadow(0 4px 18px rgba(200,41,29,.32));
  transition: transform .3s cubic-bezier(.16,1,.3,1), filter .3s;
}
.mh-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 28px rgba(200,41,29,.5));
}
.mh-sep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mh-sep-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(228,168,41,.5), transparent);
}
.mh-sep-char {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: rgba(228,168,41,.55);
  font-weight: 700;
}

/* ── Titel mit Gold-Linien ───────────────────────────────────── */
.mh-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 680px;
  justify-content: center;
}
.mh-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(228,168,41,.45));
}
.mh-rule-r {
  background: linear-gradient(to left, transparent, rgba(228,168,41,.45));
}
.mh-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
}

/* ── Cuisine-Tags ────────────────────────────────────────────── */
.mh-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.mh-tags span { color: var(--muted2); font-size: .88rem; font-weight: 500; }
.mh-dot { color: var(--red) !important; font-weight: 900 !important; }

/* ── Bottom shimmer strip ────────────────────────────────────── */
.mh-strip {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red) 30%, var(--gold) 60%, transparent);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
  opacity: .55;
}

/* ── Kategorie-Icons in Menü-Headern ─────────────────────────── */
.cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--red-dim);
  font-size: 1rem;
  margin-right: 10px;
  flex-shrink: 0;
}
.menu-category-header h2 {
  display: flex;
  align-items: center;
}

/* ── Sushi-Spezialsektion ────────────────────────────────────── */
.cat-sushi {
  border-color: rgba(200,41,29,.25);
  background: linear-gradient(135deg, #111009 0%, #160c0a 100%);
}
.cat-sushi .menu-category-header h2 {
  color: #fff;
}
.sushi-section-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0 16px;
  border-bottom: 1px dashed rgba(200,41,29,.2);
  margin-bottom: 4px;
}
.sushi-section-logo img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(200,41,29,.3));
}
.sushi-section-logo p {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Kategorie-Trennlinie (Wellenoptik) ─────────────────────── */
.menu-category + .menu-category {
  position: relative;
}
.menu-category + .menu-category::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(228,168,41,.12) 20%,
    rgba(200,41,29,.15) 50%,
    rgba(228,168,41,.12) 80%,
    transparent 100%
  );
  margin-bottom: 20px;
}

/* ── Allergen-Legende mit asiatischem Touch ─────────────────── */
.legend-section {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(28,21,8,.8) 100%);
  border-color: rgba(228,168,41,.15);
  position: relative;
  overflow: hidden;
}
.legend-section::before {
  content: '道';
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: var(--ff-display);
  font-size: 140px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228,168,41,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 700px) {
  .mh-char-1 { font-size: 160px; }
  .mh-char-2 { display: none; }
  .mh-logo   { height: 60px; }
  .mh-sep    { display: none; }
  .mh-title  { letter-spacing: .06em; }
}

/* ═══════════════════════════════════════════════════════════════
   DISH IMAGES + ADMIN IMAGE FIELD — v3.4
   ═══════════════════════════════════════════════════════════════ */

/* ── Dish with image ─────────────────────────────────────────── */
.dish-has-img {
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
}
.dish-img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  align-self: flex-start;
  margin-top: 2px;
  transition: transform .25s;
}
.dish-has-img:hover .dish-img { transform: scale(1.06); }

/* ── Admin: dish image grid ─────────────────────────────────── */
.admin-dish-row {
  grid-template-columns: 40px 1fr 1fr 90px 90px 28px 28px;
}
.admin-dish-img-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--muted);
  font-size: .85rem;
  cursor: pointer;
  padding: 4px;
  transition: all .15s;
  text-align: center;
}
.admin-dish-img-btn:hover  { border-color: var(--gold); color: var(--gold-text); }
.admin-dish-img-btn.has-img { border-color: rgba(228,168,41,.5); color: var(--gold-text); background: var(--gold-dim); }

/* ── Admin: image URL row ───────────────────────────────────── */
.admin-img-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0 8px 40px;   /* indent to align under name col */
  border-bottom: 1px dashed var(--border);
  flex-wrap: wrap;
}
.admin-img-label {
  font-size: .72rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.admin-img-thumb {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   UPLOAD BUTTON + STATUS — v3.5
   ═══════════════════════════════════════════════════════════════ */
.admin-upload-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  background: rgba(228,168,41,.1);
  border: 1px solid rgba(228,168,41,.25);
  color: var(--gold-text);
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.admin-upload-label:hover { background: rgba(228,168,41,.2); }
.admin-upload-status {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
}

/* ── Admin Allergen grid ───────────────────────────── */
.admin-feature-row input[data-legfield] {
  min-width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FIXES — v3.6  (comprehensive)
   ═══════════════════════════════════════════════════════════════ */

/* ── Globale Touch-Targets ───────────────────────────────────── */
@media (max-width: 768px) {
  .btn, .nav-cta, .menu-nav-pdf { min-height: 44px; }
  button { min-height: 36px; }
}

/* ── Nav Mobile ──────────────────────────────────────────────── */
@media (max-width: 700px) {
  .nav {
    padding: 10px 0;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .brand-logo { height: 36px; }
  .logo-flip-inner { width: 58px; height: 36px; }
  .nav-links { display: none; }
  .nav-cta {
    display: inline-flex !important;
    padding: 9px 16px;
    font-size: .82rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .bar {
    font-size: .72rem;
    gap: 8px;
    padding: 6px 12px;
  }
  .bar span { font-size: .72rem; }
}

/* ── Hero Mobile ─────────────────────────────────────────────── */
@media (max-width: 700px) {
  .hero { min-height: 80svh; padding: 20px 0; }
  .hero-watermark { font-size: 180px; right: -8vw; opacity: .6; }
  .hero h1 { font-size: 3rem; letter-spacing: -.03em; }
  .hero-sub { font-size: .95rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-tags { gap: 7px; }
  .hero-tag { font-size: .75rem; padding: 4px 11px; }
}

/* ── Stats Strip Mobile ──────────────────────────────────────── */
@media (max-width: 700px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: 2.4rem; }
}

/* ── Specialty Cards Mobile ──────────────────────────────────── */
@media (max-width: 700px) {
  .specialty-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .spec-card { aspect-ratio: 4/5; border-radius: var(--r); }
  .spec-card-title { font-size: 1.1rem; }
  .spec-card-desc { display: none; }
  .sushi-badge {
    flex-direction: column;
    text-align: center;
    padding: 18px 20px;
    gap: 12px;
  }
}
@media (max-width: 400px) {
  .specialty-grid { grid-template-columns: 1fr; }
  .spec-card { aspect-ratio: 3/2; }
  .spec-card-desc { display: block; }
}

/* ── Location Cards Mobile ───────────────────────────────────── */
@media (max-width: 700px) {
  .location-grid { grid-template-columns: 1fr; gap: 12px; }
  .card { padding: 20px; border-radius: var(--r); }
  .card .btn { width: 100%; }
}

/* ── Service Banner Mobile ───────────────────────────────────── */
@media (max-width: 700px) {
  .service-banner {
    padding: 24px 20px;
    border-radius: var(--r-lg);
  }
  .service-banner h2 { font-size: 1.5rem; }
  .service-banner-actions { width: 100%; }
  .service-banner-actions .btn { flex: 1; }
}

/* ── Menu Page Hero Mobile ───────────────────────────────────── */
@media (max-width: 700px) {
  .mh-inner { padding: 32px 0 28px; gap: 16px; }
  .mh-logos { gap: 16px; }
  .mh-logo { height: 64px; }
  .mh-sep { display: none; }
  .mh-char-1 { font-size: 140px; opacity: .5; }
  .mh-char-2 { display: none; }
  .mh-title { font-size: 1.6rem; letter-spacing: .08em; }
  .mh-rule { display: none; }
  .mh-title-row { gap: 0; }
  .mh-tags { gap: 6px; }
  .mh-tags span { font-size: .78rem; }
}

/* ── Location Bar (Speisekarte) Mobile ───────────────────────── */
@media (max-width: 700px) {
  .location-bar { grid-template-columns: 1fr; gap: 10px; }
  .location-card { padding: 16px 18px; border-radius: var(--r); }
  .location-card .btn { width: 100%; }
}

/* ── Menu Sidebar + Content Mobile ──────────────────────────── */
@media (max-width: 960px) {
  .menu-wrapper { grid-template-columns: 1fr; gap: 20px; }
  .menu-sidebar { position: static; top: auto; }
  .menu-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .menu-nav a { padding: 7px 12px; font-size: .78rem; }
}
@media (max-width: 700px) {
  .menu-category { padding: 18px 16px; border-radius: var(--r); }
  .menu-category-header h2 { font-size: 1.1rem; }
  .dish { gap: 10px; }
  .dish-has-img { grid-template-columns: 56px 1fr auto; }
  .dish-img { width: 52px; height: 52px; }
  .legend-grid { grid-template-columns: 1fr 1fr; }
  .sushi-section-logo { flex-direction: column; gap: 10px; }
  .sushi-section-logo img { height: 44px; }
}
@media (max-width: 420px) {
  .legend-grid { grid-template-columns: 1fr; }
  .dish-price { font-size: .9rem; }
}

/* ── Legal Pages Mobile ──────────────────────────────────────── */
@media (max-width: 700px) {
  .legal-wrap { padding: 32px 0 48px; }
  .legal-card { padding: 22px 18px; border-radius: var(--r-lg); }
  .legal-card h1 { font-size: 2rem; margin-bottom: 20px; padding-bottom: 16px; }
  .legal-card h2 { font-size: 1rem; margin-top: 20px; }
  .legal-card p { font-size: .88rem; }
}

/* ── Footer Mobile ───────────────────────────────────────────── */
@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0 24px;
  }
  .footer-bottom { font-size: .72rem; padding: 14px 0; }
}

/* ── Admin Panel Mobile ──────────────────────────────────────── */
@media (max-width: 700px) {
  .admin-panel { width: 100vw; }
  .admin-panel-header { padding: 12px 14px; }
  .admin-panel-header h2 { font-size: .9rem; }
  .apb { padding: 6px 10px; font-size: .72rem; }
  .admin-panel-body { padding: 10px 12px; }
  .admin-dish-row {
    grid-template-columns: 30px 1fr 60px 28px 28px;
    gap: 5px;
  }
  .admin-dish-desc { display: none; }
  .admin-feature-row {
    grid-template-columns: 1fr 1fr 28px;
    gap: 6px;
  }
  .admin-img-row { padding-left: 0; flex-wrap: wrap; }
}

/* ── Section spacing Mobile ──────────────────────────────────── */
@media (max-width: 700px) {
  :root { --sp: 44px; }
  .section { padding: var(--sp) 0; }
  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: 1.9rem; }
  .section-sub { font-size: .88rem; }
}

/* ── Marquee Mobile ──────────────────────────────────────────── */
@media (max-width: 700px) {
  .marquee-item { padding: 0 18px; font-size: .75rem; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FIXES v3.7 — Stat-Strip + Specialty Cards
   ═══════════════════════════════════════════════════════════════ */

/* ── Stat-Strip: ab 960px bereits stapeln ────────────────────── */
@media (max-width: 960px) {
  .stat-strip {
    grid-template-columns: repeat(3, 1fr) !important;
    border-radius: var(--r-lg);
  }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: .75rem; }
}
@media (max-width: 640px) {
  .stat-strip {
    grid-template-columns: 1fr !important;
    border-radius: var(--r-lg);
  }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-num {
    font-size: 2.4rem;
    flex-shrink: 0;
    width: 64px;
  }
  .stat-label { font-size: .82rem; }
}

/* ── Specialty Cards: weniger hoch auf Mobile ────────────────── */
@media (max-width: 700px) {
  .specialty-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }
  .spec-card {
    aspect-ratio: 3/4 !important;
    border-radius: var(--r) !important;
    min-height: 0;
  }
  .spec-card-desc { display: none !important; }
  .spec-card-title { font-size: 1rem !important; line-height: 1.2; }
  .spec-card-tag { font-size: .65rem !important; }
  .spec-card-content { padding: 16px 14px !important; }
}
@media (max-width: 420px) {
  .specialty-grid {
    grid-template-columns: 1fr !important;
  }
  .spec-card {
    aspect-ratio: 2/1 !important;  /* Landscape auf ganz kleinen Screens */
  }
  .spec-card-desc { display: block !important; font-size: .8rem !important; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE KATEGORIE-NAV — v3.8
   Horizontal scrollend, eine Zeile, kein Umbrechen
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .menu-sidebar { width: 100%; }

  .menu-nav {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 6px !important;
    padding: 4px 2px 10px;
    /* Scrollbar verstecken */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .menu-nav::-webkit-scrollbar { display: none; }

  .menu-nav a {
    flex-shrink: 0;           /* nie umbrechen */
    scroll-snap-align: start;
    padding: 8px 14px !important;
    font-size: .8rem !important;
    white-space: nowrap;
    border-radius: var(--r-full) !important;
    background: rgba(255,255,255,.05) !important;
  }
  .menu-nav a.active,
  .menu-nav a:hover {
    background: var(--gold-dim) !important;
    color: var(--gold-text) !important;
  }

  /* PDF-Button unterhalb, volle Breite */
  .menu-nav-pdf {
    display: block;
    width: 100%;
    margin-top: 6px !important;
    text-align: center;
    border-radius: var(--r-full) !important;
  }

  /* Sidebar-Titel kleiner */
  .menu-sidebar-title {
    font-size: .65rem;
    margin-bottom: 6px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE KATEGORIE-DROPDOWN — v3.9
   ═══════════════════════════════════════════════════════════════ */

/* Desktop: Dropdown verstecken */
.menu-nav-mobile { display: none; }

@media (max-width: 960px) {

  /* Desktop-Nav ausblenden, Dropdown zeigen */
  .menu-nav  { display: none !important; }
  .menu-nav-mobile { display: block; width: 100%; position: relative; }

  /* Trigger-Button */
  .mnm-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 18px;
    background: var(--surface2);
    border: 1px solid var(--border2);
    border-radius: var(--r-full);
    color: var(--text);
    font-family: var(--ff-body);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s, background .2s;
  }
  .mnm-btn:hover,
  .mnm-btn.open {
    border-color: rgba(228,168,41,.5);
    background: var(--gold-dim);
  }
  .mnm-arrow {
    font-size: .75rem;
    color: var(--gold-text);
    transition: transform .2s;
    flex-shrink: 0;
  }
  .mnm-btn.open .mnm-arrow { transform: rotate(180deg); }

  /* Dropdown-Liste */
  .mnm-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 100;
    background: #1a1510;
    border: 1px solid var(--border2);
    border-radius: var(--r-lg);
    box-shadow: 0 16px 48px rgba(0,0,0,.6);
    overflow: hidden;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.1) transparent;
  }
  .mnm-dropdown.open { display: block; }

  /* Dropdown-Items */
  .mnm-item {
    display: block;
    width: 100%;
    padding: 13px 20px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--muted2);
    font-family: var(--ff-body);
    font-size: .88rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background .15s, color .15s;
  }
  .mnm-item:last-child { border-bottom: none; }
  .mnm-item:hover,
  .mnm-item:active {
    background: var(--gold-dim);
    color: var(--gold-text);
  }

  /* PDF-Button volle Breite */
  .menu-nav-pdf {
    width: 100%;
    margin-top: 8px;
    display: block;
    text-align: center;
    border-radius: var(--r-full) !important;
  }

  /* Sidebar braucht kein sticky mehr */
  .menu-sidebar {
    position: static !important;
    top: auto !important;
  }
}

/* ── scroll-margin-top mobile (sticky header offset) ── */
@media (max-width: 960px) {
  .menu-category { scroll-margin-top: 110px !important; }
  .legend-section { scroll-margin-top: 110px !important; }
}

/* ── font-display: swap für beide Schriften ───────────────── */
@font-face { font-family: 'Fraunces'; font-display: swap; src: local('Fraunces'); }
@font-face { font-family: 'DM Sans'; font-display: swap; src: local('DM Sans'); }
