* { box-sizing: border-box; }

:root {
  --brand-pink: #f31f91;
  --panel: #111;
  --line: rgba(244, 31, 145, 0.28);
  --accent-soft-border: rgba(244, 31, 145, 0.46);
  --accent-soft-bg: rgba(244, 31, 145, 0.1);
  --accent-soft-glow: inset 0 0 0 1px rgba(244, 31, 145, 0.12);
  --text-strong: #f5d4e5;
  --shadow-soft: 0 18px 38px rgba(0, 0, 0, 0.22);
  --shadow-card: 0 18px 42px rgba(0, 0, 0, 0.18);
  --header-shrink: 0;
  --header-height: 72px;
  --tabs-height: 0px;
  --tabs-overlap: 1px;
}

body {
  margin: 0;
  background: #0b0b0e;
  color: #f3f3f3;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.intro-splash {
  --intro-shift-x: 0px;
  --intro-shift-y: -180px;
  --intro-scale: 0.78;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 4200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .42s ease, visibility 0s linear .42s;
}

.intro-splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.intro-splash.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .42s ease;
}

.intro-splash.is-active::before {
  animation: introBackdropFade 1.7s linear both;
}

.intro-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s linear, visibility 0s linear .18s;
}

.intro-splash-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0;
  transform-origin: center;
  padding: 0;
  will-change: transform, opacity;
}

.intro-splash.is-active .intro-splash-inner {
  animation: introLogoToHeader 1.7s cubic-bezier(.22, .8, .2, 1) both;
}

.intro-logo {
  width: min(70vw, 280px);
  max-width: 320px;
  max-height: min(34dvh, 240px);
  height: auto;
  object-fit: contain;
  filter: none;
  display: block;
}

.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  /* weniger Abstand oben, damit kein unnötiger Weißraum entsteht */
  padding: calc(6px - (2px * var(--header-shrink))) calc(14px - (4px * var(--header-shrink))) 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.985) 0%, rgba(17, 17, 17, 0.96) 78%, rgba(17, 17, 17, 0.9) 100%);
  backdrop-filter: none;
  border-bottom: 0;
  box-shadow: 0 calc(10px - (2px * var(--header-shrink))) calc(30px - (8px * var(--header-shrink))) rgba(0, 0, 0, calc(0.2 - (0.05 * var(--header-shrink))));
  transition: box-shadow .16s ease, background .16s ease;
}

.top-head {
  max-width: 1100px;
  margin: 0 auto;
  /* use grid so we can center the brand while keeping controls at the sides */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: stretch;
  position: relative;
  gap: 12px;
  /* keine künstliche Mindesthöhe - die Logohöhe bestimmt den Header */
  min-height: 0;
}

.brand {
  font-family: "Amiri", serif;
  font-size: calc(38px - (7px * var(--header-shrink)));
  color: #f22a98;
  line-height: 1;
  background: none;
  border: 0;
  /* entfernt vertikales Padding – Logo bestimmt die Höhe */
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* place brand in the center column of the grid */
  grid-column: 2;
  justify-self: center;
  align-self: center;
  cursor: pointer;
  text-align: left;
  transition: color .16s ease;
}

.brand-logo {
  /* Logo reagiert auf --header-shrink (0..1) — groß bei 0, klein bei 1 */
  height: calc(220px - (160px * var(--header-shrink)));
  max-height: calc(260px - (200px * var(--header-shrink)));
  width: auto;
  display: block;
  will-change: height, transform;
  max-width: none;
  object-fit: contain;
  opacity: 1;
  transition: opacity .2s ease;
  transform-origin: center center;
}

body.intro-active .brand-logo {
  opacity: 0;
}

body.intro-active.intro-settled .brand-logo {
  opacity: 1;
}

.primary-tiles {
  max-width: 1100px;
  /* weniger Abstand unter dem Header */
  margin: 8px auto 0;
  padding: 0 calc(14px - (5px * var(--header-shrink)));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(10px - (3px * var(--header-shrink)));
}

.nav-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(13px - (5px * var(--header-shrink))) calc(9px - (3px * var(--header-shrink))) calc(12px - (5px * var(--header-shrink)));
  border-radius: calc(16px - (5px * var(--header-shrink)));
  border: 1px solid rgba(244, 31, 145, 0.16);
  background: linear-gradient(180deg, rgba(23, 23, 26, 0.96) 0%, rgba(18, 18, 21, 0.96) 100%);
  color: rgba(248, 215, 233, 0.78);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}

.nav-tile:hover {
  border-color: rgba(244, 31, 145, 0.24);
  background: linear-gradient(180deg, rgba(26, 26, 29, 0.98) 0%, rgba(18, 18, 21, 0.98) 100%);
  color: rgba(250, 223, 238, 0.9);
  transform: translateY(-1px);
}

.nav-tile.active {
  background: linear-gradient(180deg, rgba(32, 22, 29, 0.98) 0%, rgba(20, 17, 19, 0.98) 100%);
  border-color: rgba(244, 31, 145, 0.28);
  color: var(--text-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 232, 244, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.nav-tile-icon {
  width: calc(40px - (12px * var(--header-shrink)));
  height: calc(40px - (12px * var(--header-shrink)));
  margin-bottom: calc(5px - (3px * var(--header-shrink)));
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-tile-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}

.nav-tile-label {
  font-size: calc(11.7px - (1px * var(--header-shrink)));
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.nav-toggle {
  width: calc(42px - (6px * var(--header-shrink)));
  height: calc(42px - (6px * var(--header-shrink)));
  border: 1px solid rgba(255, 86, 176, 0.2);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(23, 23, 26, 0.98) 0%, rgba(18, 18, 21, 0.98) 100%);
  display: inline-flex;
  /* bleibt vertikal zentriert innerhalb des (nun top-aligned) Headers */
  align-self: center;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  background: var(--brand-pink);
  border-radius: 999px;
}

.main-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #111;
  border-left: 1px solid rgba(255, 86, 176, 0.14);
  transform: translateX(100%);
  transition: transform .24s ease;
  z-index: 2200;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.drawer-head h2 {
  margin: 0;
  color: var(--brand-pink);
  font-size: 22px;
  font-family: "Amiri", serif;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 86, 176, 0.35);
  background: transparent;
  color: var(--brand-pink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.drawer-links {
  display: grid;
  gap: 8px;
  overflow-y: auto;
  min-height: 0;
  padding-right: 2px;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 86, 176, 0.09);
}

.drawer-link {
  text-align: left;
  width: 100%;
  border: 1px solid rgba(255, 86, 176, 0.14);
  background: linear-gradient(180deg, rgba(23, 23, 26, 0.98) 0%, rgba(18, 18, 21, 0.98) 100%);
  color: #f5d4e5;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
}

.drawer-link.active {
  background: linear-gradient(180deg, rgba(32, 23, 29, 0.98) 0%, rgba(20, 17, 19, 0.98) 100%);
  color: var(--text-strong);
  border-color: rgba(244, 31, 145, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 232, 244, 0.04);
  font-weight: 500;
}

.drawer-link-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.drawer-google-review {
  width: 100%;
  min-height: 54px;
  color: rgba(248, 215, 233, 0.92);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
  transition: color .18s ease;
}

.drawer-google-review:hover {
  color: #ffd6ea;
}

.drawer-google-review-label {
  font-family: "Amiri", serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: #ffacd5;
  letter-spacing: 0.02em;
}

.drawer-google-review-text {
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 0.005em;
  flex: 1 1 auto;
}

.drawer-google-review-arrow {
  color: rgba(248, 215, 233, 0.92);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
  z-index: 2100;
}

body.drawer-open {
  overflow: hidden;
}

body.drawer-open .main-drawer {
  transform: translateX(0);
}

body.drawer-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: var(--header-height, 72px);
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.menu-tabs {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--header-current-height, var(--header-height, 72px)) - var(--tabs-overlap, 1px));
  z-index: 1100;
  padding: 8px 0 14px;
  background:
    linear-gradient(180deg, rgba(11, 11, 14, 0.985) 0%, rgba(11, 11, 14, 0.95) 72%, rgba(11, 11, 14, 0.88) 100%);
  border-bottom: 1px solid rgba(255, 86, 176, 0.07);
  /* Follow header height instantly to avoid visual gap during scroll */
  transition: none;
  will-change: transform;
}

.menu-tabs::before,
.menu-tabs::after {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 12px;
  width: 34px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}

.menu-tabs::before {
  left: 0;
  background: linear-gradient(90deg, rgba(11, 11, 14, 0.98) 18%, rgba(11, 11, 14, 0) 100%);
}

.menu-tabs::after {
  right: 0;
  background: linear-gradient(270deg, rgba(11, 11, 14, 0.98) 18%, rgba(11, 11, 14, 0) 100%);
}

.menu-tabs[data-overflowing="true"][data-at-start="false"]::before {
  opacity: 1;
}

.menu-tabs[data-overflowing="true"][data-at-end="false"]::after {
  opacity: 1;
}

.menu-tabs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
}

.menu-tabs-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 21px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 86, 176, 0.12);
  font-size: 10px;
  line-height: 1;
  color: rgba(248, 215, 233, 0.56);
  background: rgba(12, 12, 14, 0.68);
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  transition: opacity .2s ease;
}

.menu-tabs-arrow-left {
  left: 8px;
}

.menu-tabs-arrow-right {
  right: 8px;
}

.menu-tabs[data-overflowing="true"][data-at-start="false"] .menu-tabs-arrow-left {
  opacity: 1;
}

.menu-tabs[data-overflowing="true"][data-at-end="false"] .menu-tabs-arrow-right {
  opacity: 1;
}

.menu-tabs-scroller {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 34px 6px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 0 44px;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.menu-tabs-scroller::-webkit-scrollbar {
  display: none;
}

.menu-tabs button {
  appearance: none;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 9px 15px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(24, 24, 27, 0.82) 0%, rgba(16, 16, 18, 0.82) 100%);
  color: rgba(248, 215, 233, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.018),
    0 8px 18px rgba(0, 0, 0, 0.12);
  font-size: 11.5px;
  font-weight: 600;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.menu-tabs button.active {
  background: linear-gradient(180deg, rgba(40, 24, 33, 0.82) 0%, rgba(23, 19, 22, 0.82) 100%);
  color: #ffd1e7;
  box-shadow:
    inset 0 1px 0 rgba(255, 230, 244, 0.06),
    0 10px 20px rgba(0, 0, 0, 0.12);
}

.menu-tabs .tab-pill-label {
  display: inline-block;
  transform: translateY(.5px);
}

.menu-tabs button:hover {
  color: rgba(255, 220, 238, 0.92);
  transform: translateY(-1px);
}

.menu-tabs button.active:hover {
  color: #ffe1ef;
}

.menu-tabs-meta {
  display: grid;
  gap: 0;
  padding: 0 2px 0;
  margin-top: -4px;
}

.menu-tabs-progress {
  position: relative;
  height: 1px;
  border-radius: 999px;
  background: rgba(244, 31, 145, 0.08);
  overflow: hidden;
}

.menu-tabs-progress-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(244, 31, 145, 0.2) 0%, rgba(255, 92, 181, 0.72) 50%, rgba(244, 31, 145, 0.2) 100%);
  box-shadow: 0 0 10px rgba(244, 31, 145, 0.12);
  transition: left .16s ease, width .16s ease;
}

.menu-tabs[data-overflowing="false"] .menu-tabs-meta {
  display: none;
}

.drawer-link {
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.drawer-link:hover {
  border-color: rgba(255, 86, 176, 0.42);
}

.menu-tabs button:focus-visible,
.drawer-link:focus-visible,
.drawer-google-review:focus-visible,
.brand:focus-visible,
.nav-tile:focus-visible,
.nav-toggle:focus-visible,
.info:focus-visible,
.drawer-close:focus-visible,
.modal-content button:focus-visible {
  outline: 2px solid rgba(255, 86, 176, 0.45);
  outline-offset: 2px;
}

.cat-label {
  display: inline-block;
}

@media (max-width: 768px) {
  .menu-tabs {
    padding: 8px 0 12px;
  }

  .menu-tabs::before,
  .menu-tabs::after {
    width: 28px;
  }

  .menu-tabs-inner {
    padding: 0 14px;
  }

  .menu-tabs-arrow-left {
    left: 2px;
  }

  .menu-tabs-arrow-right {
    right: 2px;
  }

  .menu-tabs-scroller {
    gap: 8px;
    padding: 2px 36px 8px 0;
  }

  .menu-tabs button {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 11px;
  }
}

@media (min-width: 769px) {
  .menu-tabs::before,
  .menu-tabs::after {
    display: none;
  }

  .menu-tabs-scroller {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    padding: 2px 0 0;
    scrollbar-width: auto;
    scroll-snap-type: none;
  }

  .menu-tabs-meta {
    display: none;
  }
}

#menu-content {
  padding: calc(28px + var(--tabs-height, 0px) - var(--tabs-overlap, 1px)) 22px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

#view-menu.has-featured-banner #menu-content {
  padding-top: 16px;
}

.featured-event-banner-slot {
  display: none;
  margin: calc(28px + var(--tabs-height, 0px) - var(--tabs-overlap, 1px)) 22px 0;
}

.featured-event-banner-slot.is-visible {
  display: block;
}

.featured-event-banner {
  padding: 12px;
  border: 1px solid rgba(255, 86, 176, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(22, 22, 25, 0.96) 0%, rgba(15, 16, 20, 0.97) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 16px 36px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition: height .42s ease, opacity .32s ease, transform .32s ease, margin .32s ease, border-color .32s ease;
}

.featured-event-banner-main {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.featured-event-banner.no-media .featured-event-banner-main {
  grid-template-columns: minmax(0, 1fr);
}

.featured-event-banner.no-media .featured-event-banner-footer {
  padding-left: 0;
}

.featured-event-banner.is-entering {
  animation:
    eventBannerEnter .52s cubic-bezier(.22, .8, .2, 1) both,
    eventBannerGlowOnce 1.45s ease-out .12s 1 both;
}

.featured-event-banner.is-closing {
  opacity: 0;
  transform: translateY(8px);
  border-color: rgba(255, 86, 176, 0.06);
  margin-bottom: 0;
}

.featured-event-banner-close {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 86, 176, 0.18);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(250, 218, 235, 0.78);
  font-size: 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.featured-event-banner-close:hover {
  border-color: rgba(255, 86, 176, 0.32);
  background: rgba(244, 31, 145, 0.07);
  color: rgba(255, 225, 241, 0.94);
}

.featured-event-banner-media-wrap {
  width: 100%;
  margin: 0;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 86, 176, 0.1);
  background: rgba(0, 0, 0, 0.28);
}

.featured-event-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured-event-banner-content {
  padding: 4px 38px 0 0;
  min-width: 0;
}

.featured-event-banner-kicker {
  margin: 0 0 5px;
  color: rgba(231, 142, 194, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-event-banner-content h3 {
  margin: 0;
  color: rgba(250, 223, 238, 0.94);
  font-size: 20px;
  font-family: "Amiri", serif;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.featured-event-banner-date {
  margin-top: 6px;
  color: rgba(244, 186, 220, 0.86);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.featured-event-banner-desc {
  margin: 12px 0 0;
  color: rgba(255, 225, 240, 0.66);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-event-banner-more {
  list-style: none;
  margin: 12px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(244, 31, 145, 0.15);
  display: grid;
  gap: 8px;
}

.featured-event-banner-more li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 8px;
  color: rgba(255, 225, 240, 0.8);
  font-size: 14px;
}

.featured-event-banner-more li::before {
  content: "•";
  grid-column: 1;
  color: rgba(244, 174, 214, 0.78);
  font-size: 13px;
  line-height: 1;
}

.featured-event-banner-more-title {
  grid-column: 2;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-event-banner-more-date {
  grid-column: 3;
  color: rgba(242, 180, 216, 0.76);
  font-size: 13px;
  white-space: nowrap;
}

.featured-event-banner-footer {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
  padding-left: 336px;
}

.featured-event-banner-link {
  border-radius: 999px;
  border: 1px solid rgba(244, 31, 145, 0.26);
  background: rgba(255, 255, 255, 0.018);
  color: rgba(250, 218, 235, 0.84);
  padding: 6px 16px;
  min-height: 30px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.featured-event-banner-link:hover {
  border-color: rgba(244, 31, 145, 0.4);
  background: rgba(244, 31, 145, 0.06);
  color: rgba(255, 225, 241, 0.94);
}

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

@keyframes eventBannerGlowOnce {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.025),
      0 16px 36px rgba(0, 0, 0, 0.26);
  }
  55% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.025),
      0 16px 36px rgba(0, 0, 0, 0.26),
      0 0 16px rgba(244, 31, 145, 0.08);
  }
}

.menu-section {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.menu-section-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
  align-items: center;
  gap: 14px;
  margin: 14px 2px 2px;
}

.menu-section-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 31, 145, 0.82), transparent);
}

.menu-section-heading h2 {
  margin: 0;
  color: #f13f9f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.menu-item {
  background: linear-gradient(180deg, rgba(22, 22, 24, 0.98) 0%, rgba(18, 18, 21, 0.98) 100%);
  border: 1px solid rgba(255, 86, 176, 0.08);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.018),
    var(--shadow-card);
}

.menu-item.no-image {
  grid-template-columns: minmax(0, 1fr);
}

.menu-item-media {
  width: 82px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid rgba(255, 86, 176, 0.1);
  background: linear-gradient(180deg, rgba(20, 20, 22, 1) 0%, rgba(14, 14, 16, 1) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
}

.menu-item-body {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "header"
    "desc"
    "prices";
  grid-template-rows: auto 1fr auto;
  row-gap: 10px;
  align-items: start;
  min-height: 100%;
}

.menu-item-header {
  grid-area: header;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.menu-item-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
}

.menu-item-name {
  color: var(--text-strong);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.recommendation-tag {
  border: 1px solid rgba(244, 31, 145, 0.2);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(246, 193, 223, 0.92);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(244, 31, 145, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 232, 244, 0.02);
}

.menu-item-desc {
  grid-area: desc;
  margin: 0;
  color: rgba(255, 225, 240, 0.68);
  font-size: 13px;
  line-height: 1.58;
  max-width: 34ch;
  text-wrap: pretty;
}

.info {
  appearance: none;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 86, 176, 0.16);
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: rgba(246, 193, 223, 0.88);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
}

.info:hover {
  border-color: rgba(255, 86, 176, 0.26);
  color: #ffd1e7;
  background: rgba(244, 31, 145, 0.06);
  transform: translateY(-1px);
}

.size-row {
  grid-area: prices;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: flex-start;
  align-self: end;
}

.size-row:empty {
  display: none;
}

.size {
  display: inline-flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  min-height: 0;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 86, 176, 0.08);
  background: rgba(255, 255, 255, 0.015);
  box-shadow: none;
  width: fit-content;
}

.size-label {
  color: rgba(255, 225, 240, 0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.35;
}

.size-price {
  color: #ffaad4;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  white-space: nowrap;
}

.hours-panel {
  margin: 24px 22px 22px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 86, 176, 0.09);
  background: linear-gradient(180deg, rgba(22, 22, 24, 0.98) 0%, rgba(18, 18, 21, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.018),
    var(--shadow-soft);
}

.hours-panel h2 {
  margin: 0 0 16px;
  color: var(--brand-pink);
  font-family: "Amiri", serif;
  font-size: 32px;
  line-height: 1.08;
}

.hours-list {
  display: grid;
  gap: 10px;
}

.hours-single-card {
  border: 1px solid rgba(255, 86, 176, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 10px;
}

.hours-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #ffdfef;
  line-height: 1.5;
}

.hours-line strong {
  color: var(--brand-pink);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  border: 1px solid rgba(255, 86, 176, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  color: #ffdfef;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.02);
}

.hours-row strong {
  color: var(--brand-pink);
}

.offers-panel {
  margin-top: 16px;
}

.events-panel {
  margin-top: 16px;
}

.legal-panel {
  margin-top: 16px;
}

.legal-notice {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 31, 145, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 225, 240, 0.8);
  font-size: 13px;
  line-height: 1.6;
}

.legal-content {
  display: grid;
  gap: 10px;
}

.legal-content h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 500;
}

.legal-content p {
  margin: 0;
  color: rgba(255, 225, 240, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.hours-profile-name {
  margin: 0 0 10px;
  color: rgba(255, 225, 240, 0.85);
  font-size: 14px;
}

.hours-hint {
  margin-top: 10px;
  color: rgba(255, 225, 240, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.hours-profile-name:empty,
.hours-hint:empty {
  display: none;
}

.offers-list,
.events-list {
  display: grid;
  gap: 16px;
}

.offer-item,
.event-item {
  border: 1px solid rgba(255, 86, 176, 0.09);
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(22, 22, 24, 0.98) 0%, rgba(18, 18, 21, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.018),
    var(--shadow-soft);
}

.offer-item h3,
.event-item h3 {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.offer-item p,
.event-item p {
  margin: 0;
  color: rgba(255, 225, 240, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.event-date-row {
  color: #ffaad4;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-price {
  color: #ffaad4;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.promo-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-copy-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.promo-copy-head h3 {
  margin: 0;
}

.promo-desc {
  margin: 0;
}

.menu-item-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.promo-media {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-width: 420px;
  border-radius: 16px;
  border: 1px solid rgba(255, 86, 176, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.event-item .promo-media {
  aspect-ratio: 3 / 2;
}

.event-item .promo-image {
  object-fit: cover;
}

@media (min-width: 980px) {
  .offer-item.has-media,
  .event-item.has-media {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
  }

  .offer-item.has-media .promo-media,
  .event-item.has-media .promo-media {
    width: 100%;
    max-width: none;
    aspect-ratio: 3 / 2;
    margin: 0;
  }

  .offer-item.has-media > :not(.promo-media),
  .event-item.has-media > :not(.promo-media) {
    grid-column: 2;
  }

  .offer-item.has-media .promo-copy,
  .event-item.has-media .promo-copy {
    align-self: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .event-item.has-media .promo-media {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 979px) {
  .promo-copy-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .offer-price {
    margin-top: 0;
  }

  .featured-event-banner-slot {
    margin: calc(22px + var(--tabs-height, 0px) - var(--tabs-overlap, 1px)) 14px 0;
  }

  .featured-event-banner-content {
    padding: 1px 28px 0 0;
  }

  .featured-event-banner-kicker {
    font-size: 9.5px;
  }

  .featured-event-banner-content h3 {
    font-size: 16px;
  }

  .featured-event-banner-media-wrap {
    max-height: 104px;
  }

  .featured-event-banner {
    padding: 9px;
  }

  .featured-event-banner-main {
    grid-template-columns: minmax(102px, 40%) minmax(0, 1fr);
    gap: 9px;
  }

  .featured-event-banner-more {
    margin-top: 7px;
    padding-top: 8px;
    gap: 6px;
  }

  .featured-event-banner-more li {
    font-size: 12px;
  }

  .featured-event-banner-more-date {
    font-size: 11.5px;
  }

  .featured-event-banner-footer {
    margin-top: 9px;
    justify-content: center;
    padding-left: 0;
  }

  .featured-event-banner-link {
    min-height: 29px;
    font-size: 9.6px;
    padding: 5px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-event-banner,
  .featured-event-banner.is-entering,
  .featured-event-banner.is-closing {
    animation: none !important;
    transition: none !important;
  }
}

.empty-state {
  border: 1px solid rgba(255, 86, 176, 0.08);
  border-radius: 18px;
  padding: 20px;
  color: rgba(255, 225, 240, 0.7);
  font-size: 14px;
  line-height: 1.65;
  background: linear-gradient(180deg, rgba(22, 22, 24, 0.98) 0%, rgba(18, 18, 21, 0.98) 100%);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2300;
}

.modal-content {
  background: #111;
  border: 1px solid rgba(255, 86, 176, 0.12);
  border-radius: 20px;
  padding: 24px;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
}

.modal-content h3 {
  margin-top: 0;
  color: var(--brand-pink);
}

.modal-content button {
  margin-top: 18px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(180deg, rgba(23, 23, 26, 0.98) 0%, rgba(18, 18, 21, 0.98) 100%);
  border: 1px solid rgba(244, 31, 145, 0.18);
  color: rgba(248, 215, 233, 0.9);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
}

.modal-content button:hover {
  background: linear-gradient(180deg, rgba(28, 28, 31, 0.98) 0%, rgba(20, 20, 23, 0.98) 100%);
  border-color: rgba(244, 31, 145, 0.26);
  box-shadow: none;
}

body.modal-open {
  overflow: hidden;
}

body.intro-active {
  overflow: hidden;
}

body.modal-open main,
body.modal-open .top-menu {
  pointer-events: none;
}

body.modal-open #allergenModal {
  pointer-events: auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--bg-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
}

#bg {
  position: fixed;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65%;
  opacity: 0.08;
  z-index: -1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 700px) {
  .top-menu {
    padding: calc(10px - (3px * var(--header-shrink))) calc(10px - (3px * var(--header-shrink))) 0;
  }

  .brand {
    font-size: calc(28px - (4px * var(--header-shrink)));
  }

  /* mobiles Logo etwas kleiner, aber sichtbarer */
  .brand-logo {
    /* mobile: shrink range from ~120px down to ~44px */
    height: calc(120px - (76px * var(--header-shrink)));
    max-height: calc(140px - (88px * var(--header-shrink)));
  }

  .top-head {
    min-height: 0;
  }

  .primary-tiles {
    margin: calc(10px - (6px * var(--header-shrink))) auto 0;
    gap: calc(7px - (2px * var(--header-shrink)));
    padding: 0 calc(10px - (4px * var(--header-shrink)));
  }

  .nav-tile {
    padding: calc(10px - (4px * var(--header-shrink))) calc(6px - (2px * var(--header-shrink))) calc(9px - (4px * var(--header-shrink)));
    border-radius: calc(13px - (4px * var(--header-shrink)));
  }

  .nav-tile-icon {
    width: calc(34px - (9px * var(--header-shrink)));
    height: calc(34px - (9px * var(--header-shrink)));
    margin-bottom: calc(4px - (2px * var(--header-shrink)));
  }

  .nav-tile-label {
    font-size: calc(11.6px - (0.9px * var(--header-shrink)));
  }

  #menu-content {
    padding: calc(22px + var(--tabs-height, 0px) - var(--tabs-overlap, 1px)) 14px 24px;
    gap: 16px;
  }

  #view-menu.has-featured-banner #menu-content {
    padding-top: 14px;
  }

  .menu-item-name {
    font-size: 16px;
  }

  .hours-panel {
    margin: 18px 14px 14px;
    padding: 20px 18px;
  }

  .hours-panel h2 {
    font-size: 28px;
  }

  .hours-row {
    flex-direction: column;
    gap: 4px;
  }

  .menu-item {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .menu-item-media {
    width: 74px;
  }

  .menu-item-body {
    row-gap: 8px;
  }

  .size {
    padding: 6px 8px;
    border-radius: 12px;
  }

  .menu-item-desc {
    max-width: none;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .size-label {
    font-size: 11px;
  }

  .size-price {
    font-size: 13px;
  }

  .menu-item-image {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 701px) {
  .top-menu {
    padding: 2px 18px 0;
  }

  .top-head {
    max-width: 1120px;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .brand-logo {
    height: calc(88px - (34px * var(--header-shrink)));
    max-height: calc(100px - (38px * var(--header-shrink)));
  }

  .primary-tiles {
    max-width: 840px;
    margin: 6px auto 0;
    gap: 6px;
    padding: 0 6px;
  }

  .nav-tile {
    min-height: 62px;
    padding: 7px 10px 6px;
    border-radius: 12px;
  }

  .nav-tile-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
  }

  .nav-tile-label {
    font-size: 9.5px;
    line-height: 1.2;
  }

  .nav-toggle {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    gap: 3px;
    padding: 0 7px;
  }

  .menu-item-desc {
    max-width: 36ch;
  }

  .size-row {
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .top-head {
    gap: 8px;
  }

  .primary-tiles {
    gap: calc(7px - (2px * var(--header-shrink)));
    padding: 0 calc(9px - (2px * var(--header-shrink)));
  }

  .nav-tile {
    padding: calc(9px - (3px * var(--header-shrink))) calc(5px - (2px * var(--header-shrink)));
  }

  .nav-tile-icon {
    width: calc(30px - (6px * var(--header-shrink)));
    height: calc(30px - (6px * var(--header-shrink)));
    margin-bottom: calc(2px - (1px * var(--header-shrink)));
  }

  .nav-tile-label {
    font-size: calc(11px - (0.8px * var(--header-shrink)));
  }

  .menu-item {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 10px;
  }

  .menu-item-media {
    width: 62px;
  }

  .menu-item-name {
    font-size: 14px;
    line-height: 1.18;
  }

  .menu-item-desc {
    font-size: 11.5px;
    line-height: 1.46;
  }

  .menu-item-body {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 7px;
  }

  .size-row {
    gap: 5px;
  }

  .size {
    padding: 5px 8px;
  }

  .size-label {
    font-size: 10.5px;
  }

  .size-price {
    font-size: 12.5px;
  }

  .menu-item-image {
    width: 100%;
    height: 100%;
  }

  .promo-media {
    max-width: 360px;
  }
}

@keyframes introLogoToHeader {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.96);
  }
  16% {
    opacity: 0.98;
    transform: translate3d(0, 0, 0) scale(1);
  }
  48% {
    opacity: 0.98;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(var(--intro-shift-x), var(--intro-shift-y), 0) scale(var(--intro-scale));
  }
}

@keyframes introBackdropFade {
  0% {
    opacity: 1;
  }
  58% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-splash,
  .intro-splash.is-active,
  .intro-splash.is-hidden {
    transition: none;
  }

  .intro-splash-inner {
    animation: none;
  }
}
