@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/outfit-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("../fonts/syne-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("../fonts/syne-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --red: #e10613;
  --red-dark: #b80510;
  --black: #0a0a0a;
  --white: #fff;
  --cream: #f7f1ee;
  --ink: #161616;
  --muted: #5c5c5c;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  --radius-pill: 999px;
  --header-h: 72px;
  --font-display: "Syne", system-ui, sans-serif;
  --font: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--red);
  color: #fff;
  padding: 8px 14px;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  max-width: 100%;
  margin-inline: auto;
}

/* Top info bar */
.info-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 0.92rem;
  position: sticky;
  top: 0;
  z-index: 40;
}

.info-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  min-height: 52px;
  flex-wrap: wrap;
}

.info-bar strong {
  color: var(--red);
  font-weight: 700;
}

.info-bar p {
  margin: 0;
}

.info-bar .hours {
  text-align: right;
}

/* Header / nav */
.site-header {
  background: var(--black);
  color: #fff;
  position: relative;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(0.92rem, 3.4vw, 1.05rem);
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

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

.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  white-space: nowrap;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: #fff;
  color: #000;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
}

/* Hero */
.hero {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 12px 0 56px;
}

.hero-mascot {
  display: block;
  width: 148px;
  height: 148px;
  object-fit: contain;
  margin: 0 auto 4px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 520px) 1fr;
  align-items: center;
  gap: 12px;
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

.hero-shot {
  margin: 0;
  display: grid;
  justify-items: center;
}

.hero-shot figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.blob {
  width: min(100%, 430px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 62% 38% 42% 58% / 48% 42% 58% 52%;
  justify-self: center;
}

.blob-right {
  border-radius: 38% 62% 58% 42% / 42% 58% 42% 58%;
}

.hero-copy {
  text-align: center;
  z-index: 1;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 8px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-light {
  background: #fff;
  color: #111;
}

.btn-light:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-ghost:hover,
.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-outline-red {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

.btn-outline-red:hover {
  background: var(--red);
  color: #fff;
}

/* Ticker */
.ticker {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 10px 0;
}

.ticker-track {
  display: inline-flex;
  gap: 28px;
  animation: marquee 22s linear infinite;
}

.ticker span::after {
  content: " ★ ";
  margin-left: 28px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 84px 0;
}

.section h2,
.page-hero h1,
.menu-head h1 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.framed {
  border: 6px solid var(--red);
  overflow: hidden;
  background: #111;
  border-radius: 28px;
}

.framed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.menu-teaser {
  background: var(--cream);
  color: var(--red);
}

.menu-teaser p {
  font-size: 1.12rem;
  max-width: 42ch;
}

.order {
  background: var(--black);
  color: #fff;
}

.order .blob {
  width: min(100%, 520px);
}

.reviews {
  background: #fff8f6;
  color: var(--red);
  text-align: center;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 200px;
  gap: 28px;
  align-items: center;
}

.reviews-photo {
  width: 200px;
  height: 200px;
  border: 5px solid var(--red);
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  justify-self: center;
}

.reviews-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-copy {
  min-width: 0;
}

.quote {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.35;
  max-width: 38ch;
  min-height: calc(1.35em * 3);
  margin: 0 auto 10px;
  font-weight: 600;
}

.reviewer {
  margin: 0 0 8px;
  font-weight: 700;
  min-height: 1.6em;
}

.stars {
  color: var(--red);
  letter-spacing: 4px;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  cursor: pointer;
}

.gallery {
  background: var(--black);
  color: #fff;
}

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

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.thumbs button {
  padding: 0;
  border: 2px solid transparent;
  background: #111;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.thumbs button[aria-current="true"],
.thumbs button:hover {
  border-color: var(--red);
}

.thumbs img,
.gallery-main img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.gallery-main {
  border: 5px solid var(--red);
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.gallery-main img {
  height: min(52vh, 480px);
}

.gallery-main .icon-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  background: #fff;
  border-color: #fff;
  color: #111;
  pointer-events: auto;
}

.gallery-main .prev { left: 10px; }
.gallery-main .next { right: 10px; }

.gallery-caption {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.photo-credit {
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band {
  background: var(--red);
  color: #fff;
  padding: 28px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-band img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin: 0;
}

.map-wrap {
  position: relative;
  margin-top: 18px;
  min-height: 220px;
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}

.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  position: relative;
  z-index: 0;
}

.map-wrap iframe[hidden] {
  display: none !important;
}

.consent-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 28px 20px;
  text-align: center;
  color: #ddd;
  background: #1b1b1b;
}

.consent-placeholder[hidden] {
  display: none !important;
}

.consent-placeholder p {
  margin: 0;
}

.consent-alt {
  font-size: 0.85rem;
  color: #bdbdbd;
}

.consent-alt a,
.consent-alt .linkish {
  color: #fff;
  text-decoration: underline;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background: #111;
  color: #f3f3f3;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr minmax(17rem, 1.4fr) 0.9fr;
  gap: 28px;
}

.footer-hours span {
  white-space: nowrap;
}

@media (max-width: 420px) {
  .footer-hours span {
    white-space: normal;
  }
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li,
.site-footer p {
  margin: 0 0 8px;
  color: #cfcfcf;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #9a9a9a;
  font-size: 0.9rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 10px;
}

.socials a {
  color: #cfcfcf;
}

.site-footer button.linkish {
  background: none;
  border: 0;
  padding: 0;
  color: #cfcfcf;
  cursor: pointer;
  font: inherit;
}

.site-footer button.linkish:hover {
  color: #fff;
}

/* WhatsApp – immer sichtbar */
.wa {
  position: fixed;
  right: max(14px, env(safe-area-inset-right, 0px));
  bottom: max(14px, env(safe-area-inset-bottom, 0px));
  z-index: 70;
  background: #25d366;
  color: #083b1e;
  border-radius: var(--radius-pill);
  padding: 8px 12px 8px 8px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: opacity 0.35s ease;
  will-change: opacity;
  touch-action: manipulation;
}

.wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wa:hover {
  background: #1ebe5d;
}

/* Cookie-Banner */
.cp-cookie-root {
  position: relative;
  z-index: 10040;
  pointer-events: none;
}

.cp-cookie-root .cookie-reopen,
.cp-cookie-root .cp-cookie-dialog,
.cp-cookie-root .cp-cookie-backdrop {
  pointer-events: auto;
}

.cp-cookie-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10040;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.35s ease;
  overscroll-behavior: none;
  touch-action: none;
}

.cp-cookie-dialog[hidden],
.cp-cookie-backdrop[hidden] {
  display: none !important;
}

.cp-cookie-dialog {
  position: fixed;
  left: max(0.75rem, env(safe-area-inset-left));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  z-index: 10050;
  transform: translateZ(0);
  width: min(36rem, calc(100% - 1.5rem));
  max-width: calc(100% - 1.5rem);
  max-height: min(82dvh, 40rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: opacity 0.35s ease;
  overscroll-behavior: contain;
}

.cp-cookie-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 1.15rem 1.25rem 0.85rem;
  touch-action: pan-y;
}

html.cp-cookie-lock,
body.cp-cookie-lock {
  overflow: hidden !important;
  overscroll-behavior: none;
}

body.cp-cookie-lock {
  position: fixed;
  left: 0;
  width: 100%;
}

.cp-cookie-logo {
  height: 42px;
  width: auto;
  margin: 0 0 0.7rem;
}

.cp-cookie-dialog h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.cp-cookie-intro {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cp-cookie-intro a {
  color: var(--red);
  text-decoration: underline;
}

.cp-cookie-cats {
  display: grid;
  gap: 0.75rem;
}

.cp-cookie-cat {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
}

.cp-cookie-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem 0.7rem;
  cursor: pointer;
}

.cp-cookie-row-text {
  display: grid;
  gap: 0.25rem;
}

.cp-cookie-row-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.cp-cookie-row input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--red);
}

.cp-cookie-details {
  border-top: 1px solid #eee;
  padding: 0 0.95rem 0.85rem;
}

.cp-cookie-details summary {
  list-style: none;
  cursor: pointer;
  padding: 0.55rem 0 0.15rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
}

.cp-cookie-details summary::-webkit-details-marker {
  display: none;
}

.cp-cookie-details summary::before {
  content: "+ ";
}

.cp-cookie-details[open] summary::before {
  content: "– ";
}

.cp-cookie-empty {
  margin: 0;
  padding: 0.55rem 0.95rem 0.85rem;
  border-top: 1px solid #eee;
  color: var(--muted);
  font-size: 0.78rem;
}

.cp-cookie-services {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.55rem;
}

.cp-cookie-service {
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  background: #f7f1ee;
  border: 1px solid #eee;
}

.cp-cookie-service-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.cp-cookie-service-status {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}

.cp-cookie-service-status.is-active {
  color: #0d6b32;
  background: #d9f5e4;
}

.cp-cookie-service-status.is-blocked {
  color: #8a5a00;
  background: #f8e7c0;
}

.cp-cookie-service-meta {
  display: grid;
  grid-template-columns: minmax(5.2rem, 7rem) minmax(0, 1fr);
  gap: 0.25rem 0.65rem;
  margin: 0;
  font-size: 0.76rem;
}

.cp-cookie-service-meta dt {
  color: var(--muted);
  margin: 0;
}

.cp-cookie-service-meta dd {
  margin: 0;
}

.cp-cookie-service-links {
  margin: 0.55rem 0 0;
  font-size: 0.76rem;
}

.cp-cookie-service-links a {
  color: var(--red);
  text-decoration: underline;
}

.cp-cookie-actions {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid #eee;
  background: #fafafa;
}

.cp-cookie-actions .btn {
  width: 100%;
  margin: 0;
}

.cp-cookie-actions .btn-ghost {
  color: var(--ink);
  border-color: #ccc;
}

.cp-cookie-actions .btn-ghost:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.cookie-reopen {
  position: fixed;
  left: max(1rem, env(safe-area-inset-left, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 10030;
  height: 48px;
  min-width: 48px;
  padding: 0 0.85rem 0 0.65rem;
  border: 2px solid var(--red);
  background: #111;
  color: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: opacity 0.35s ease;
  will-change: opacity;
  touch-action: manipulation;
}

.cookie-reopen-label {
  font-size: 0.85rem;
  font-weight: 700;
}

.cookie-reopen:hover {
  background: var(--red);
}

.cp-cookie-root.is-open .cookie-reopen {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden;
}

@media (max-width: 900px) {
  .cp-cookie-dialog {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: min(88dvh, 100%);
    max-width: 100%;
    border-radius: 14px 14px 0 0;
  }

  .wa span {
    display: none;
  }

  .wa {
    padding: 14px;
    border-radius: 50%;
  }
}

/* Pages */
.page-hero {
  background: var(--black);
  color: #fff;
  padding: 40px 0 32px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  background: radial-gradient(circle, rgba(225, 6, 19, 0.35), transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.page-hero h1 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0;
  line-height: 1.1;
}

.page-hero-lead {
  margin: 12px 0 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.legal {
  padding: 40px 0 48px;
  background:
    linear-gradient(180deg, #faf7f6 0%, #fff 28%, #fff 100%);
}

.legal-body {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  color: var(--ink);
}

.legal-body > h1 {
  display: none;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  letter-spacing: -0.02em;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ece7e5;
  color: var(--ink);
}

.legal-body h2:first-of-type {
  margin-top: 0;
}

.legal-body h3 {
  font-size: 1.05rem;
  margin: 26px 0 8px;
  color: var(--ink);
}

.legal-body p,
.legal-body li {
  color: #3a3a3a;
}

.legal-body a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body a:hover {
  color: var(--red);
}

.legal-body ul {
  padding-left: 1.2rem;
  margin: 0 0 14px;
}

.legal-body li {
  margin-bottom: 6px;
}

.legal-stand {
  margin: 40px 0 0;
  padding-top: 18px;
  border-top: 1px solid #ece7e5;
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--red);
  background: #f7f1ee;
  color: #4a4a4a;
  font-size: 0.92rem;
}

.legal-note em {
  font-style: normal;
  font-weight: 600;
}

.legal-body .hint {
  margin: 28px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: normal;
}

/* Menu */
.menu-page {
  background: var(--black);
  color: #fff;
  padding: 28px 0 80px;
}

.menu-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 18px 0 36px;
  font-weight: 700;
}

.menu-nav a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.menu-nav a.is-active,
.menu-nav a:hover {
  border-bottom-color: var(--red);
}

.cat-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 28px;
  width: min(760px, calc(100% - 32px));
}

.cat-nav a {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
}

.cat-nav a:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.menu-panel {
  display: none;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}

.menu-panel.is-active {
  display: block;
}

.menu-panel h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 8px 0 8px;
}

.hint {
  color: #f3c4c4;
  margin: 0 0 28px;
}

.menu-group {
  margin: 0 0 34px;
  scroll-margin-top: 90px;
}

.menu-group h3 {
  color: var(--red);
  font-size: 1.35rem;
  margin: 0 0 6px;
}

.badge {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--red);
  color: var(--red);
  padding: 2px 8px;
  margin-bottom: 10px;
}

.item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.item p {
  margin: 4px 0 0;
  color: #bdbdbd;
  font-size: 0.95rem;
}

.price {
  font-weight: 800;
  white-space: nowrap;
}

.allergen-tags {
  font-weight: 700;
  font-size: 0.82em;
  color: #f3c4c4;
  letter-spacing: 0.02em;
}

.allergen-code {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: help;
  text-decoration: underline dotted;
  text-underline-offset: 2px;
  position: relative;
}

.allergen-code:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}

.allergen-tip {
  position: fixed;
  z-index: 1200;
  width: max-content;
  max-width: min(220px, 70vw);
  padding: 7px 10px;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  pointer-events: none;
}

.item-nr {
  font-weight: 800;
  color: var(--red);
  margin-right: 6px;
}

.legend {
  color: #ddd;
  line-height: 1.7;
}

.allergen-legend {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.allergen-legend h4 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 1.05rem;
}

.legend-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  gap: 8px 18px;
  color: #ddd;
  font-size: 0.95rem;
}

/* Oben nach unten in der linken Spalte, dann rechts weiterzählen */
.legend-list--allergens {
  grid-template-rows: repeat(7, auto);
}

.legend-list--additives {
  grid-template-rows: repeat(6, auto);
}

.legend-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.legend-code {
  flex: 0 0 1.6rem;
  font-weight: 800;
  color: var(--red);
}

@media (max-width: 600px) {
  .legend-list {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: none;
  }
}

@media (max-width: 900px) {
  .split,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 10px;
  }

  .hero-grid .blob {
    width: min(100%, 280px);
  }

  .hero-mascot {
    width: 120px;
    height: 120px;
  }

  .reviews-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "quote quote"
      "photo-a photo-b";
    gap: 18px;
  }

  .reviews-layout > .reviews-copy {
    grid-area: quote;
  }

  .reviews-photo:first-child {
    grid-area: photo-a;
  }

  .reviews-photo:last-child {
    grid-area: photo-b;
  }

  .info-bar {
    position: static;
  }

  .info-bar .hours,
  .info-bar-inner {
    text-align: left;
  }

  .cta-band-inner {
    justify-content: center;
    text-align: center;
  }

  .cta-band h2 {
    flex: 1 1 220px;
  }

  .framed img,
  .gallery-main img {
    min-height: 240px;
    height: 280px;
  }

  .thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer,
  .menu-page {
    padding-bottom: 96px;
  }

  .cookie-reopen-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .cookie-reopen {
    width: 48px;
    min-width: 48px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    inset: var(--header-h) 12px auto;
    background: #161616;
    flex-direction: column;
    padding: 12px;
    border: 1px solid #333;
    z-index: 20;
  }

  .nav.is-open {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "copy copy"
      "left right";
    gap: 16px 12px;
  }

  .hero-copy {
    grid-area: copy;
  }

  .hero-grid > .hero-shot:first-of-type {
    grid-area: left;
  }

  .hero-grid > .hero-shot:last-of-type {
    grid-area: right;
  }

  .hero-grid .blob {
    width: min(100%, 200px);
  }

  .hero {
    padding: 8px 0 28px;
  }

  .section {
    padding: 52px 0;
  }

  .info-bar {
    font-size: 0.82rem;
  }

  .info-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-height: 0;
    padding: 10px 0;
  }

  .reviews-photo {
    display: none;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .item {
    gap: 6px 12px;
  }

  .price {
    font-size: 0.95rem;
  }
}

/* Schmale Phones + Cover-Displays (z. B. Z Flip Cover) */
@media (max-width: 380px) {
  .container {
    width: calc(100% - 24px);
  }

  .hero-grid {
    width: calc(100% - 20px);
    gap: 12px 8px;
  }

  .hero-grid .blob {
    width: min(100%, 150px);
  }

  .hero-copy h1 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .hero-mascot {
    width: 96px;
    height: 96px;
  }

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

  .wa,
  .cookie-reopen {
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
  }
}

/* Extrem schmal / Cover-Screen */
@media (max-width: 300px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "left"
      "right";
  }

  .hero-grid .blob {
    width: min(100%, 180px);
  }

  .cat-nav {
    gap: 6px;
  }

  .cat-nav a {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}

/* Unfolded Foldables: breit, aber niedrig */
@media (min-width: 540px) and (max-width: 920px) and (max-height: 520px) {
  .info-bar {
    position: static;
  }

  .hero {
    padding: 4px 0 20px;
  }

  .hero-mascot {
    width: 88px;
    height: 88px;
  }

  .hero-copy h1 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin: 4px 0 14px;
  }

  .section {
    padding: 36px 0;
  }

  .cp-cookie-dialog {
    max-height: min(92dvh, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }

  .wa,
  .cookie-reopen,
  .cp-cookie-dialog,
  .cp-cookie-backdrop {
    transition: none;
  }
}

@media print {
  .info-bar,
  .site-header,
  .ticker,
  .wa,
  .cookie-reopen,
  .cp-cookie-root,
  .cta-band,
  .map-wrap,
  .menu-toggle,
  .thumbs,
  .gallery-main .icon-btn,
  .carousel-nav,
  .cat-nav,
  .menu-nav,
  .skip-link {
    display: none !important;
  }

  body,
  .hero,
  .order,
  .gallery,
  .menu-page,
  .site-footer,
  .menu-teaser,
  .reviews,
  .legal {
    background: #fff !important;
    color: #000 !important;
  }

  a {
    color: #000 !important;
    text-decoration: none;
  }

  .menu-panel {
    display: block !important;
  }

  .site-footer button.linkish,
  .hero-mascot,
  .cta-band {
    display: none !important;
  }

  .footer-hours span {
    white-space: normal !important;
  }

  h1, h2, h3, .item {
    break-inside: avoid;
  }

  .blob,
  .framed,
  .reviews-photo,
  .gallery-main {
    break-inside: avoid;
  }
}
