:root {
  --bg: #0a0a0b;
  --bg-soft: #151518;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f4f4f5;
  --muted: #b1b1b7;
  --accent: #d1174e;
  --accent-soft: rgba(229, 170, 54, 0.16);
  --gradient-start: #d1174e;
  --gradient-end: #e5aa36;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,59,147,0.12), transparent 28%),
    linear-gradient(180deg, #09090a, #111114 45%, #09090a);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section--dark {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section--accent {
  background: linear-gradient(180deg, rgba(229, 170, 54, 0.08), rgba(229, 170, 54, 0.03));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 11, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

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

.brand__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #f0ce74);
  color: #111;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand__text { display: grid; }
.brand__text strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.brand__text small { color: var(--muted); }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
}

.nav a:hover,
.nav a:focus-visible { color: var(--text); }

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 12px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: unset;
  height: auto;
}

.hero__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2232 / 945;
  background: transparent;
}


/* obere rosa Schräge */
.hero__slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 23%;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 0% 100%, 0 100%);
  z-index: 2;
  pointer-events: none;
}

/* untere rosa Schräge */
.hero__slider::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 23%;
  background: var(--accent);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 50%;
  }
  100% {
    background-position: 0% 20%, 100% 80%, 50% 50%;
  }
}

/* Parallax effect for content */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typewriter cursor */
.lead::after {
  content: "|";
  animation: blink 1s step-start infinite;
  color: var(--accent);
  margin-left: 4px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Glowing buttons */
.hero__actions .btn--primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  box-shadow: 0 0 30px rgba(209, 23, 78, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(209, 23, 78, 0.4);
  }
  50% {
    box-shadow: 0 0 50px rgba(209, 23, 78, 0.6), 0 0 80px rgba(229, 170, 54, 0.3);
  }
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
}


.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 0 14px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

h1, h2, h3 {
  font-family: "Oswald", sans-serif;
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
  animation: fade-in-up 0.8s ease-out;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); max-width: 11ch; opacity: 1; transition: opacity 0.3s ease; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.4rem; }

/* Staggered animations for children */
h2 + * {
  animation: fade-in-up 0.8s ease-out 0.2s both;
}

.card + .card,
.card:nth-child(2) {
  animation: fade-in-up 0.8s ease-out 0.4s both;
}

.card:nth-child(3) {
  animation: fade-in-up 0.8s ease-out 0.6s both;
}

p, li, small {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.lead {
  max-width: 62ch;
  font-size: 1.08rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hero__actions,
.section-heading { margin-top: 28px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.contact-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--gradient-end));
  color: #151515;
  box-shadow: 0 4px 20px rgba(209, 23, 78, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(209, 23, 78, 0.5);
}

.btn--secondary {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

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

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.split--reverse { grid-template-columns: 0.9fr 1.1fr; }

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.5s ease;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.4);
  border-color: rgba(209, 23, 78, 0.4);
}

.card--feature a,
.text-link {
  color: var(--accent);
  font-weight: 700;
}

.card__label {
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gradient-end));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat:hover::before {
  transform: scaleX(1);
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(209, 23, 78, 0.5);
}

.stat span {
  display: block;
  font-size: 2.2rem;
  font-family: "Oswald", sans-serif;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.media {
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.18)),
    radial-gradient(circle at top right, rgba(255,59,147,0.18), transparent 24%),
    #17171a;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.media:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(209, 23, 78, 0.2);
}

.media--bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55)),
    url('assets/Bar-pic-1024x841.jpg') center/cover no-repeat;
  opacity: 0.95;
  transition: transform 0.5s ease;
}

.media--cruising::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(209,23,78,0.15), rgba(0,0,0,0.65)),
    url('assets/Slider/Dark-Eagle-Background-2.jpg') center/cover no-repeat;
  opacity: 0.95;
  transition: transform 0.5s ease;
}

.media:hover::before {
  transform: scale(1.05);
}

.media__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10,10,11,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.media:hover .media__badge {
  transform: translateX(8px);
  border-color: var(--accent);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.checklist li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.info-box {
  padding: 28px;
  border-radius: 24px;
  background: rgba(10,10,11,0.45);
  border: 1px solid rgba(255,255,255,0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  opacity: 0;
  animation: fade-in-up 0.8s ease-out 0.8s both;
}

.gallery-item {
  min-height: 240px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.26)),
    radial-gradient(circle at top, rgba(255,59,147,0.18), transparent 32%),
    #18181b;
  display: flex;
  align-items: end;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(209, 23, 78, 0.5);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item span {
  position: relative;
  z-index: 1;
}

.gallery-item span {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list strong { color: var(--text); }
.muted { display: inline-block; margin-top: 16px; }

.footer {
  padding: 28px 0 44px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

@media (max-width: 940px) {
  .grid--3,
  .grid--2,
  .split,
  .split--reverse,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: rgba(12, 12, 13, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
  }
  .nav.is-open { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .card { padding: 22px; }
  .topbar__inner { min-height: 70px; }
  .brand__text small { font-size: 0.8rem; }
  .hero { min-height: auto; }
  h1 { max-width: 100%; }
}

.brand__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Keyframe Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Scroll animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Global link styles */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  display: inline-block;
}

a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

a:hover {
  transform: translateY(-2px);
}

a:hover::after {
  width: 100%;
}

/* Unterdrücke Link-Animation für Buttons, Brand, Nav-Toggle, Footer und Inhalts-Links */
.btn::after,
.brand::after,
.nav-toggle::after,
.footer__inner a::after,
.card a::after,
.faq-answer a::after,
.info-box a::after,
.checklist a::after,
.hours-list a::after,
.card--contact a::after {
  display: none;
}

.card a:hover,
.faq-answer a:hover,
.info-box a:hover,
.card--contact a:hover {
  transform: none;
}

.brand:hover {
  transform: none;
}

/* Barrierefreiheit: Animationen reduzieren wenn Nutzer das bevorzugt */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}



.map-embed {
  margin-top: 28px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.18)),
    #111;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.floorplan-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.media--floorplan {
  aspect-ratio: 1 / 1; /* 🔥 wichtig */
  min-height: unset;
}

/* =============================================================
   Site-Header Web Component — Banner über der Topbar
   Wird via /data/header.json (CMS) ein-/ausgeschaltet.
   ============================================================= */
.site-banner {
  position: relative;
  z-index: 51; /* knapp über der sticky topbar (z-index: 50) */
  padding: 10px 0;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  font-size: 0.95rem;
}
.site-banner .container {
  padding-left: 16px;
  padding-right: 16px;
}
.site-banner--info {
  background: rgba(229, 170, 54, 0.16);
  color: var(--text);
  border-bottom: 1px solid rgba(229, 170, 54, 0.32);
}
.site-banner--warning {
  background: rgba(209, 23, 78, 0.18);
  color: var(--text);
  border-bottom: 1px solid rgba(209, 23, 78, 0.42);
}
.site-banner--accent {
  background: linear-gradient(90deg, rgba(209, 23, 78, 0.22), rgba(229, 170, 54, 0.22));
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Während die Web Component noch lädt: keine doppelten Header sichtbar */
site-header { display: block; }

/* =============================================================
   <oeffnungs-zeiten> Component — Helfer-Klassen
   ============================================================= */
.oeffnungszeiten__hinweis {
  margin-top: 12px;
  display: block;
}
.oeffnungszeiten__kompakt {
  font-family: "Oswald", system-ui, sans-serif;
  letter-spacing: 0.04em;
}
oeffnungs-zeiten { display: contents; }

/* =============================================================
   Preise (menu.html) — Pinterest-Spalten-Layout, klassischer
   Preisliste-Stil mit Icon-Header und Punkt-Linien-Items.
   ============================================================= */
.menu__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.menu__stand {
  margin-top: 14px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* Container nutzt CSS-Columns statt Grid: Karten füllen sich von oben
   nach unten in den Spalten — ungleiche Höhen sehen natürlich aus. */
.menu__grid {
  column-count: 3;
  column-gap: 22px;
  /* Fallback für sehr alte Browser: einfach scrollbar */
}
@media (max-width: 1100px) {
  .menu__grid { column-count: 2; }
}
@media (max-width: 680px) {
  .menu__grid { column-count: 1; }
}

/* Karte */
.menu__kategorie {
  /* Wichtig: break-inside verhindert dass eine Karte über zwei Spalten reißt */
  break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;  /* nötig für break-inside im column-Layout */
  width: 100%;
  margin: 0 0 22px 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 26px 24px 22px;
  box-shadow: 0 14px 40px -28px rgba(0, 0, 0, 0.6);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.menu__kategorie:hover {
  border-color: rgba(209, 23, 78, 0.32);
  box-shadow: 0 14px 60px -28px rgba(209, 23, 78, 0.32);
}

/* Header mit Icon + Titel */
.menu__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 4px 0;
}
.menu__head h2 {
  margin: 0;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.menu__icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(209, 23, 78, 0.12);
  border: 1px solid rgba(209, 23, 78, 0.32);
  border-radius: 12px;
}
.menu__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Kategorie-Beschreibung (kursiver Untertitel) */
.menu__kat-beschr {
  margin: 8px 0 0 52px;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--muted);
}

/* Items-Liste */
.menu__items {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu__item {
  padding: 4px 0;
}
.menu__item--std {
  margin-top: -2px;
}
.menu__item--note {
  font-size: 0.9rem;
  font-style: italic;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

/* Zeile: Name … Größe … Leader-Dots … Preis */
.menu__zeile {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu__name {
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0.01em;
}
.menu__name--muted {
  font-weight: 500;
  color: var(--muted);
  font-style: italic;
}
.menu__groesse {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.menu__leader {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.18);
  margin-bottom: 4px;
}
.menu__preis {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent);
  white-space: nowrap;
  font-size: 1rem;
}
.menu__beschr {
  margin: 2px 0 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
}
.menu__leer {
  margin: 14px 0 0 0;
  font-size: 0.9rem;
  font-style: italic;
}
.menu__fussnote {
  margin-top: 32px;
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 0.03em;
}

/* ── Hero kompakter ────────────────────────────────────── */
.menu__hero { padding-top: 80px; padding-bottom: 40px; }
.menu__hero h1 { margin-bottom: 12px; }
.menu__lead { max-width: 640px; margin-bottom: 24px; }
.menu__hero-meta {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.menu__hero-meta .menu__actions { margin-top: 0; }
.menu__hero-meta .menu__stand { margin: 0; }

.section--menu { padding-top: 32px; padding-bottom: 64px; }

/* ── Toolbar (sticky unter Top-Header) ─────────────────── */
.menu__toolbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}
.menu__toolbar-inner {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (max-width: 760px) {
  .menu__toolbar-inner { flex-direction: column; align-items: stretch; gap: 10px; }
}

/* Suchfeld */
.menu__search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 280px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 12px;
  transition: border-color 0.15s, background 0.15s;
}
.menu__search:focus-within {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
.menu__search-icon {
  width: 16px;
  height: 16px;
  color: var(--muted);
  flex-shrink: 0;
}
.menu__search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 9px 10px;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
}
.menu__search input::-webkit-search-cancel-button { display: none; }
.menu__search-clear {
  display: none;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
}
.menu__search-clear.is-visible { display: inline-block; }
.menu__search-clear:hover { color: var(--text); }
@media (max-width: 760px) {
  .menu__search { flex: 1 1 auto; }
}

/* Sprung-Navigation als Chips */
.menu__jump {
  display: flex;
  gap: 6px;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  /* Scrollbar dezent */
  scrollbar-width: thin;
  padding-bottom: 2px;
}
.menu__jump::-webkit-scrollbar { height: 4px; }
.menu__jump::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.menu__chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.menu__chip:hover,
.menu__chip:focus-visible {
  background: rgba(209, 23, 78, 0.18);
  color: var(--text);
  border-color: rgba(209, 23, 78, 0.4);
  outline: none;
}

/* ── Untergruppen-Titel innerhalb einer Karte ──────────── */
.menu__gruppe-titel {
  list-style: none;
  margin: 14px 0 4px 0;
  padding: 0 0 6px 0;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}
.menu__gruppe-titel:first-child { margin-top: 0; }

/* ── Empfehlung-Badge ──────────────────────────────────── */
.menu__item--empf {
  position: relative;
  padding-left: 10px;
  border-left: 2px solid var(--accent);
  margin-left: -10px;
}
.menu__item--empf .menu__name { color: var(--text); }
.menu__empf-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px 2px;
  background: linear-gradient(90deg, rgba(209, 23, 78, 0.32), rgba(229, 170, 54, 0.22));
  border: 1px solid rgba(229, 170, 54, 0.42);
  color: #fff;
  border-radius: 999px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Search-Filter: ausgeblendete Items/Kategorien ─────── */
.menu__item.is-hidden,
.menu__kategorie.is-hidden,
.menu__gruppe-titel.is-hidden { display: none; }

/* =============================================================
   Safe-Space / Luise (luise.html)
   ============================================================= */
.luise-card {
  background: linear-gradient(140deg, rgba(209, 23, 78, 0.18), rgba(229, 170, 54, 0.08));
  border: 1px solid rgba(209, 23, 78, 0.32);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 24px;
}
.luise-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px 0;
}
.luise-codes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.luise-code {
  background: rgba(0, 0, 0, 0.32);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.luise-code__codeword {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 6px 0;
  line-height: 1.1;
}
.luise-code__variant {
  display: block;
  margin-top: 10px;
  padding-left: 14px;
  border-left: 2px solid rgba(209, 23, 78, 0.5);
  font-size: 0.95rem;
}
.luise-code__variant strong {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.03em;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}
.luise-emergency {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.luise-emergency a {
  display: block;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.luise-emergency a:hover,
.luise-emergency a:focus-visible {
  background: rgba(209, 23, 78, 0.18);
  transform: translateY(-2px);
}
.luise-emergency a span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 4px;
}
.luise-emergency a strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* =============================================================
   Internationales Notruf-Handzeichen (Signal for Help)
   ============================================================= */
.handsignal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.handsignal__step {
  position: relative;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px 22px 22px;
  text-align: center;
}
.handsignal__step h3 {
  margin: 4px 0 8px;
  font-size: 1.15rem;
}
.handsignal__step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.handsignal__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  color: var(--accent);
  display: grid;
  place-items: center;
}
.handsignal__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.handsignal__num {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 2px;
}
.handsignal__step::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--muted);
  opacity: 0.5;
  pointer-events: none;
}
.handsignal__step:last-child::after { content: none; }
@media (max-width: 700px) {
  .handsignal__step::after {
    content: "↓";
    right: 50%;
    top: auto;
    bottom: -22px;
    transform: translateX(50%);
  }
}


.media--floorplan::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3)),
    url('assets/Grundriss-Keller.jpg') center/contain no-repeat;
  background-size: contain;
  opacity: 0.98;
}


@media (max-width: 940px) {
  .floorplan-layout {
    grid-template-columns: 1fr;
  }

  .media--floorplan {
    min-height: 380px;
  }
}

.media--portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6)),
    url('assets/Wolfgang-768x1024.jpg') center/cover no-repeat;
  opacity: 0.95;
}
.media--portrait {
  min-height: 520px;
}


.legal-page {
  max-width: 960px;
}

.legal-card h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-page {
  max-width: 900px;
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-card p {
  margin-bottom: 14px;
}

.btn-link {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  display: inline;
}

/* ─── Hero Slider – Pfeile ────────────────────────────────── */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero:hover .hero__arrow,
.hero:focus-within .hero__arrow {
  opacity: 1;
  pointer-events: auto;
}

.hero__arrow:hover {
  background: rgba(209, 23, 78, 0.75);
}

.hero__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  opacity: 1;
  pointer-events: auto;
}

.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

.hero__arrow svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

/* ─── Hero Slider – Punkte ────────────────────────────────── */
.hero__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero__dot--aktiv {
  width: 24px;
  background: #fff;
}

.hero__dot:hover:not(.hero__dot--aktiv) {
  background: rgba(255, 255, 255, 0.7);
}

.hero__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .hero__arrow {
    width: 36px;
    height: 36px;
    opacity: 1;
    pointer-events: auto;
  }
  .hero__arrow--prev { left: 12px; }
  .hero__arrow--next { right: 12px; }
  .hero__dots { bottom: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE + TABLET HERO V3 — Stacked-Card-Layout
   ─────────────────────────────────────────────────────────────
   Bild und Text teilen sich nicht mehr dieselbe Fläche.
   Stattdessen: Bild oben (Carousel), Dots in der Mitte, Text-
   Karte mit solid-Black-Background unten. Text ist immer lesbar
   weil er auf einem garantiert dunklen Hintergrund steht — kein
   Text-Shadow, kein starker Gradient mehr nötig.

   Breakpoint 900px deckt ab:
   - alle Phones (320–428px)
   - alle iPad-Portraits außer iPad Pro 12.9 (834, 768, 810, 820)
   - kleine Android-Tablets
   Erst ab 901px greift wieder das Desktop-Overlay (genug Platz).
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Hero ist jetzt Block-Container statt Position-Anker */
  .hero {
    display: block;
  }

  /* Slider ist eigenes Element mit fixer Höhe — Bild dominant */
  .hero__slider {
    aspect-ratio: 16 / 10;
    position: relative;
  }
  .slide {
    object-fit: cover;
    object-position: center top;
  }

  /* Desktop-Gradient-Overlay aus — Stacked-Layout braucht keinen
     Kontrast-Helper über dem Slider. Pfeile haben eigenen Backdrop-Blur. */
  .hero::before {
    display: none;
  }

  /* Diagonal-Stripes über Slider — dezent */
  .hero__slider::before,
  .hero__slider::after {
    width: 32%;
    height: 14%;
  }

  /* Dots zwischen Slider und Text-Karte als eigener Block */
  .hero__dots {
    position: relative;
    bottom: auto;
    inset: auto;
    transform: none;
    left: auto;
    padding: 14px 0;
    background: var(--bg);
    justify-content: center;
    gap: 10px;
  }
  .hero__dot {
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, 0.4);
  }
  .hero__dot--aktiv {
    background: var(--accent);
    transform: scale(1.2);
  }

  /* Pfeile bleiben über dem Slider mit Backdrop-Blur */
  .hero__arrow {
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
  }

  /* Content-Karte: solid Black, klare Trennung vom Slider */
  .hero__content {
    position: relative;
    inset: auto;
    padding: 32px 20px 28px;
    background: var(--bg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    justify-content: flex-start;
  }

  /* Typo: groß und lesbar — kein Shadow nötig auf solid-BG */
  #hero-eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    margin: 0 0 14px;
  }

  #hero-title,
  .hero__content h1 {
    font-size: clamp(2.4rem, 11vw, 3rem);
    line-height: 1;
    margin: 0 0 14px;
    max-width: 100%;
    text-shadow: none;
  }

  #hero-text,
  .hero__content .lead {
    font-size: 1.05rem;
    line-height: 1.45;
    margin: 0 0 22px;
    color: var(--text);
    text-shadow: none;
    max-width: 100%;
  }

  /* Cursor-Animation Lead aus auf Mobile (war optisch unruhig) */
  .lead::after { display: none; }

  /* Buttons: vollbreit, gestapelt, 44px Touch-Target */
  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 4px;
  }
  .hero__actions .btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.98rem;
    min-height: 44px;
  }
}

/* Sehr kleine Phones (iPhone SE, alte Android) — < 380px breit */
@media (max-width: 380px) {
  .hero__slider {
    aspect-ratio: 4 / 3; /* etwas weniger Bildhöhe für Mini-Phones */
  }
  #hero-title,
  .hero__content h1 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }
  #hero-text,
  .hero__content .lead {
    font-size: 1rem;
  }
}