:root {
  /* Palette angepasst an das Restaurant-Innenbild: warme Creme, Burgunder, dunkles Leder */
  --bg: #0b0b0b; /* tiefes Anthrazit für dramatischen Kontrast */
  --bg-soft: #151313;
  --cream: #f6efe8; /* helle Tischdecken/Leinen */
  --muted: #c9b29a; /* dezente Akzentfarbe */
  --text: #efe6dd; /* warmer Textton */
  --gold: #c68652; /* warmes Gold/holzton */
  --gold-light: #e0b98e;
  --accent-burgundy: #6e1416; /* kräftigeres Burgunder/Rot für Akzente */
  --accent-dark: #0f0f10; /* Stühle / tiefe Flächen */
  --metal-high: rgba(255,255,255,0.16);
  --metal-mid: rgba(255,245,230,0.06);
  --metal-low: rgba(0,0,0,0.18);
  --line: rgba(255,255,255,0.06);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  --radius: 28px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lora', serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(183, 142, 98, 0.10), transparent 28%), radial-gradient(circle at 80% 20%, rgba(106, 81, 55, 0.18), transparent 24%), var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.08; letter-spacing: -0.04em; font-family: 'Playfair Display', serif; font-weight: 900; color: var(--cream); }
h1 { font-size: clamp(1.9rem, 5vw, 3.6rem); max-width: 900px; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: 1.3rem; }
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: .8rem clamp(1rem, 4vw, 2rem);
  background: rgba(30, 12, 12, 0.9);
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header .brand img {
  width: 2.6rem;
  height: auto;
  display: block;
}
.site-header.scrolled, .site-header.solid {
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}
.brand { display: flex; align-items: center; gap: .8rem; min-width: fit-content; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 0; display: grid; place-items: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--accent-burgundy), var(--gold)); color: #fff;
  font-weight: 900; font-size: 1.4rem; font-family: 'Playfair Display', serif;
  border: 2px solid rgba(110, 20, 22, 0.35);
}
.brand-mark::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; border-radius: 0;
  background: linear-gradient(180deg, var(--metal-high), rgba(255,255,255,0) 28%);
  mix-blend-mode: overlay; opacity: 0.9;
}
.brand strong { display: block; font-size: 1.05rem; color: var(--gold-light); }
.brand small { display: block; color: var(--muted); font-size: .78rem; margin-top: -.2rem; }
.main-nav { display: flex; align-items: center; gap: clamp(.6rem, 1.5vw, 1.4rem); color: var(--cream); font-size: .92rem; }
.main-nav a { color: var(--cream); }
.main-nav a:hover { color: var(--gold); }
.header-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 999px; padding: .95rem 1.25rem; font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.header-cta, .btn-primary {
  color: var(--cream);
  background-image: linear-gradient(180deg, var(--metal-mid), rgba(255,255,255,0) 36%), linear-gradient(135deg, var(--accent-burgundy), var(--gold));
  background-blend-mode: overlay;
}
.header-cta { padding: .75rem 1rem; font-size: .92rem; }
.btn { font-size: .92rem; }
.btn-secondary { border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.08); color: var(--cream); }
.btn:hover { transform: translateY(-2px); }
.header-cta:active, .btn-primary:active { transform: translateY(0); filter: brightness(0.98) saturate(1.02); }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; z-index: 110; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 6px 0; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.hero {
  min-height: 100vh; position: relative; display: grid; align-items: center; justify-content: center;
  padding: 8rem clamp(1.25rem, 5vw, 5rem) 4rem;
  overflow: hidden;
  background: transparent;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 20% 18%, rgba(110, 20, 22, 0.46), transparent 26%),
    radial-gradient(circle at 78% 14%, rgba(22, 12, 12, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(110, 20, 22, 0.12), rgba(18, 12, 12, 0.56));
}
.hero-content {
  max-width: 820px; width: min(100%, 90rem); position: relative; z-index: 2;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: 34px;
  background: rgba(28, 16, 16, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.30);
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 35%);
  pointer-events: none;
}
.hero-header p { color: rgba(241, 235, 212, 0.95); }
.hero-header h1 { color: rgba(241, 235, 212, 0.98); }
.hero-text { max-width: 640px; font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(241,235,212,0.92); }
.hero-slideshow {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease-in-out; background-attachment: fixed;
}
.hero-slide.active {
  opacity: 1;
}
/* Gestyltes Hero-Bild mit Rahmen, Schatten und leichter Farbkorrektur */
.hero-image-frame {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 68%;
  width: min(980px, 86%);
  pointer-events: none;
}
.hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 18px solid var(--cream);
  box-shadow: 0 35px 80px rgba(0,0,0,0.6), 0 6px 20px rgba(0,0,0,0.45);
  /* subtle metallic rim */
  box-shadow: 0 35px 80px rgba(0,0,0,0.6), 0 6px 20px rgba(0,0,0,0.45), 0 0 0 2px rgba(255,255,255,0.04) inset;
  filter: saturate(1.05) contrast(1.04) brightness(0.98) sepia(0.06) hue-rotate(-6deg);
  transform: translateY(0) scale(1);
}
.hero-image-frame::after {
  content: '';
  position: absolute; inset: -6px; border-radius: 14px; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

@media (max-width: 880px) {
  .hero-image-frame { display: none; }
}
.hero-content { 
  max-width: var(--max); width: 100%; position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-header {
  margin-bottom: 2rem;
}
.eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-weight: 800; font-size: .78rem; margin-bottom: 1rem; }
.hero-text { max-width: 640px; font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--cream); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-facts { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; justify-content: center; }
.hero-facts span { border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.08); border-radius: 999px; padding: .65rem 1rem; color: var(--cream); }
.section, .section-narrow { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; padding: clamp(5rem, 8vw, 8rem) 0; }
.section-narrow { max-width: 920px; }
.notice { margin-top: -2rem; position: relative; z-index: 5; padding: 1.4rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(30,21,16,.86); box-shadow: var(--shadow); }
.notice strong { color: var(--gold-light); }
.greek-ornament { 
  display: inline-block; 
  width: 100%; 
  height: 6px; 
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(196,134,82,0.95) 30%, rgba(120,60,30,0.9));
  background-size: 200% 100%;
  margin: 2rem 0;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28) inset;
}
.split { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse { grid-template-columns: .96fr 1.04fr; }
.split.reverse .section-copy { order: 2; }
.section-copy p, .section-heading p, .seo-section p { font-size: 1.08rem; }
.image-card, .quote-card, .map-card, .contact-card, .marina-panel, .menu-card {
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); background: linear-gradient(180deg, rgba(28, 12, 12, 0.94), rgba(28, 16, 14, 0.88)); box-shadow: var(--shadow);
}
.image-card { position: relative; overflow: hidden; min-height: 540px; display: flex; align-items: end; padding: 1.3rem; background: linear-gradient(180deg, rgba(28, 16, 14, 0.8), rgba(20, 12, 12, 0.95)); }
.image-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.66) saturate(1.08) contrast(1.03) sepia(0.04) hue-rotate(-6deg); transform: scale(1.02); }
.image-card-inner { position: relative; z-index: 2; width: 100%; padding: 2rem; border-radius: 22px; background: linear-gradient(180deg, rgba(20,12,12,0.28), rgba(12,10,8,0.22)); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.08); }
.image-card-inner span, .menu-card span { color: var(--gold-light); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.menu-section { text-align: center; }
.section-heading { max-width: 820px; margin: 0 auto 3rem; padding-top: 1rem; position: relative; }
.section-heading::before { content: ''; display: block; width: 100%; height: 10px; margin-bottom: 1.5rem; background: linear-gradient(90deg, rgba(179, 138, 95, 0.85), rgba(176, 138, 96, 0.1)); border-radius: 4px; }
.review-marquee {
  background: linear-gradient(140deg, rgba(69, 47, 25, 0.24), rgba(18, 12, 12, 0.88));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: calc(var(--radius) + 8px);
  padding: 3rem 2rem 3.5rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 24px 60px rgba(0, 0, 0, 0.16);
}
.review-marquee .section-heading { margin-bottom: 1.5rem; }
.review-marquee-scroll {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.review-marquee-track {
  display: flex;
  gap: 1rem;
  min-width: max-content;
  animation: marquee 32s linear infinite;
}
.review-card {
  min-width: 320px;
  max-width: 340px;
  padding: 2rem 2rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(22, 24, 18, 0.88), rgba(12, 15, 11, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
.review-card p { margin-bottom: 1.35rem; color: var(--cream); font-size: 1rem; line-height: 1.85; }
.review-meta {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.review-meta::before {
  content: '★★★★★';
  display: block;
  margin-bottom: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.82rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: left; }
.menu-card { padding: 2.25rem; min-height: 250px; }
.menu-card h3, .menu-card h2 { margin-top: 1.25rem; }
.center-action { margin-top: 2rem; text-align: center; }
.marina { width: 100%; max-width: none; padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem); background: linear-gradient(135deg, rgba(28,12,12,0.72), rgba(110,20,22,0.12)); }
.marina-panel { width: min(960px, 100%); margin: 0 auto; padding: clamp(1.5rem, 4vw, 3rem); }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .8rem; color: var(--text); }
.check-list li { padding-left: 1.3rem; position: relative; }
.check-list li::before { content: ''; position: absolute; left: 0; top: .65rem; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); }
.quote-card { min-height: 360px; display: grid; place-items: center; padding: 2rem; background: rgba(28,12,12,0.9); border: 1px solid rgba(255,255,255,0.08);
}
.quote-card p { font-size: clamp(1.6rem, 4vw, 3.4rem); color: var(--cream); line-height: 1.12; letter-spacing: -.04em; }
.seo-section { max-width: 980px; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(28,12,12,0.92); }
.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; align-items: stretch; }
.contact-card, .map-card { padding: clamp(2rem, 4vw, 3.5rem); background: rgba(28,12,12,0.92); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1.2rem; margin: 1.75rem 0; }
address { color: var(--muted); font-style: normal; }
.text-link { color: var(--gold-light); font-weight: 800; border-bottom: 1px solid rgba(201,160,97,0.45); }
.site-footer { padding: 3rem clamp(1rem, 5vw, 5rem); border-top: 1px solid rgba(255,255,255,0.06); color: var(--muted); background: linear-gradient(180deg, rgba(18,12,12,0.95), rgba(16,10,10,0.98)); }
.site-footer .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.25rem; align-items: start; max-width: var(--max); margin: 0 auto; }
.site-footer .footer-col h4 { color: var(--cream); margin-bottom: .6rem; font-size: .98rem; }
.site-footer .footer-brand .brand { gap: .6rem; align-items: center; }
.site-footer .footer-logo { width: 72px; max-width: 100%; border-radius: 12px; display: block; margin-bottom: 1rem; }
.site-footer .footer-hours { color: var(--muted); font-size: .95rem; line-height: 1.7; }
.site-footer .footer-hours strong { display: block; color: var(--cream); margin-bottom: 0.5rem; }
.site-footer .footer-hours span { display: block; }
.site-footer .footer-hours span:first-child { margin-bottom: 0.8rem; }
.site-footer .footer-address { font-style: normal; margin-top: 1rem; color: var(--muted); line-height: 1.6; }
.site-footer .footer-legal ul,
.site-footer .footer-nav ul,
.site-footer .footer-social ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--gold-light); }
.site-footer .social-links a { display: inline-flex; gap: .5rem; align-items: center; }
.site-footer .footer-bottom { margin-top: 1.75rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.04); padding-top: 1rem; color: rgba(255,255,255,0.6); }

@media (max-width: 880px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 2rem 1rem; }
}
.main-nav a.active { color: var(--accent-burgundy); }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 1rem; margin-top: 2rem; }
.stat-card { border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 2rem; background: rgba(28,12,12,0.90); box-shadow: var(--shadow); }
.stat-number { display: block; font-size: clamp(3rem, 5vw, 4rem); color: var(--gold); font-weight: 900; margin-bottom: .75rem; }
.faq-grid { display: grid; grid-template-columns: repeat(3, minmax(240px, 1fr)); gap: 1rem; margin-top: 2rem; }
.faq-card { border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 2rem; background: rgba(28,12,12,0.92); box-shadow: var(--shadow); }
.faq-card h3 { margin-bottom: 1rem; }
.faq-card p { color: var(--muted); line-height: 1.7; }
.sticky-reserve { position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%); z-index: 60; display: none; background: var(--gold-light); color: #18100b; padding: .85rem 1.25rem; border-radius: 999px; font-weight: 900; box-shadow: 0 12px 40px rgba(0,0,0,.35); transition: transform .25s ease, opacity .25s ease; opacity: 0; }
.sticky-reserve.show { display: inline-flex; opacity: 1; transform: translateX(-50%) translateY(0); }
.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.subpage-main { padding-top: 6rem; }
.page-intro { padding-top: 5rem; }
.compact { padding-top: 1rem; }
.legal { width: min(860px, calc(100% - 2rem)); margin: 0 auto; padding: 6rem 0; }
.legal a { color: var(--gold-light); }
@media (max-width: 880px) {
  .site-header { padding: .85rem 1rem; }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; top: 72px; left: 1rem; right: 1rem; display: none; flex-direction: column; align-items: stretch; padding: 1rem; background: rgba(28,12,12,0.96); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; z-index: 105; }
  .main-nav.open, .main-nav.always { display: flex; }
  .main-nav a { padding: .8rem 0; border-bottom: 1px solid rgba(110,20,22,0.12); }
  .main-nav a:last-child { border-bottom: none; }
  .header-cta { display: none; }
  .hero { min-height: 92vh; padding-bottom: 5rem; background-attachment: scroll; }
  .split, .split.reverse, .contact, .menu-grid, .stats-grid, .faq-grid { grid-template-columns: 1fr; }
  .split.reverse .section-copy { order: initial; }
  .image-card { min-height: 380px; }
  .site-footer { flex-direction: column; }
  .split, .split.reverse, .contact, .menu-grid, .stats-grid, .faq-grid { grid-template-columns: 1fr; }
  .split.reverse .section-copy { order: initial; }
  .image-card { min-height: 380px; }
  .site-footer { flex-direction: column; }
  .sticky-reserve { display: inline-flex; }
}
@media (max-width: 520px) {
  h1 { font-size: 3rem; }
  .hero-actions .btn, .contact-actions .btn { width: 100%; }
  .hero-facts span { width: 100%; text-align: center; }
}

/* Modal: Speisekarte */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 9999; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.modal-window { position: relative; width: min(1100px, 94%); max-width: 1100px; max-height: 90vh; background: linear-gradient(180deg, rgba(30,12,12,0.98), rgba(20,12,12,0.96)); border-radius: 16px; box-shadow: 0 40px 120px rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.06); overflow: hidden; z-index: 2; }
.modal-body { width: 100%; height: calc(90vh - 56px); }
.modal-window iframe { width: 100%; height: 100%; display: block; border: 0; background: transparent; }
.modal-close { position: absolute; top: 12px; right: 12px; z-index: 10; border: 0; background: rgba(255,255,255,0.03); color: var(--cream); width: 44px; height: 44px; border-radius: 999px; font-size: 22px; line-height: 1; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,0.45); }
.modal-close:hover { filter: brightness(1.06); }
@media (max-width: 880px) {
  .modal-body { height: calc(88vh - 56px); }
  .modal-window { width: 98%; height: 88vh; max-width: 98%; border-radius: 12px; }
}

/* Parkhinweis-Box auf Anfahrt */
.park-box {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; margin: 1rem 0 1.25rem; border-radius: 12px;
  background: linear-gradient(180deg, rgba(110,20,22,0.06), rgba(20,12,12,0.04)); border: 1px solid rgba(110,20,22,0.12);
}
.park-icon { font-size: 1.6rem; line-height: 1; padding-top: 4px; }
.park-content strong { display: block; color: var(--accent-burgundy); margin-bottom: .25rem; }
.park-content p { margin: 0; color: var(--muted); }

/* Kleinere Abstandsanpassungen für Subpages */
.subpage-main .section-narrow { padding-top: 3rem; padding-bottom: 3rem; }

/* Neue Speisekarten-Seite */
.menu-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(198, 134, 82, 0.16), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(110, 20, 22, 0.22), transparent 22%);
}
.menu-hero-box {
  position: relative;
  margin-top: 1.5rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, rgba(28,12,12,0.92), rgba(110,20,22,0.18));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.menu-hero-box::after {
  content: '';
  position: absolute;
  inset: auto -8% -45% 45%;
  height: 280px;
  background: radial-gradient(circle, rgba(224,185,142,0.16), transparent 62%);
  pointer-events: none;
}
.menu-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  color: var(--cream);
  background: rgba(255,255,255,0.06);
}
.menu-overview { padding-top: 2rem; }
.menu-jumpbar {
  position: sticky;
  top: 82px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  padding: .8rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(18, 12, 12, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}
.menu-jumpbar a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .55rem .85rem;
  color: var(--cream);
  font-size: .86rem;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.07);
}
.menu-jumpbar a:hover { color: #18100b; background: var(--gold-light); }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}
.dish-category {
  scroll-margin-top: 150px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 28%),
    linear-gradient(145deg, rgba(28,12,12,0.96), rgba(24,16,14,0.90));
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}
.dish-category-head {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .7rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dish-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(198,134,82,0.16);
  border: 1px solid rgba(224,185,142,0.20);
}
.dish-category h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: -0.025em;
}
.dish-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .62rem;
}
.dish-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text);
  line-height: 1.55;
}
.dish-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(224,185,142,0.08);
}
@media (max-width: 880px) {
  .menu-jumpbar { position: static; }
  .dish-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .menu-hero-box { padding: 1.35rem; }
  .menu-jumpbar a { width: 100%; justify-content: center; }
}

/* Kontaktformular */
.contact-form {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: .45rem;
  color: var(--cream);
  font-weight: 800;
  font-size: .95rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: .9rem 1rem;
  color: var(--cream);
  background: rgba(255,255,255,.07);
  font: inherit;
  outline: none;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(224,185,142,.7);
  box-shadow: 0 0 0 4px rgba(224,185,142,.10);
}
.privacy-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: .7rem !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
  font-size: .9rem !important;
}
.privacy-check input { width: auto; margin-top: .25rem; }
.privacy-check a { color: var(--gold-light); text-decoration: underline; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.event-form { margin-top: 1.2rem; }
.status-card {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem);
}
.status-card .btn { margin-top: 1rem; }
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
}