/* ==========================================================================
   Like Napoli – Stylesheet
   Design-Tokens und Komponenten gemäß Design-System (Like Napoli v4)
   Mobile-first; Breakpoints: 480 / 520 / 560 / 760 / 880 / 900 px
   ========================================================================== */

/* --- Fonts (selbst gehostet, variable Fonts, Latin-Subset) --- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-italic-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Design Tokens --- */
:root {
  --color-bg: #f0ead6;
  --color-bg-alt: #eae0c4;
  --color-card: #f7f2e4;
  --color-ink: #0d151a;
  --color-body: #2a343a;
  --color-muted: #5b6469;
  --color-faint: #9aa0a3;
  --color-accent: #c8442a;
  --color-accent-hover: #a8351f;
  --color-accent-dark: #e8916f;
  --color-dark: #0d151a;
  --color-cream: #f0ead6;
  --color-diet: #2e6b3f;
  --color-success: #3f7d4e;
  --color-success-text: #2f6b3e;
  --color-error: #c0392b;
  --color-input-bg: #fffdf6;
  --border-light: rgba(13, 21, 26, .08);
  --border-mid: rgba(13, 21, 26, .14);
  --border-input: rgba(13, 21, 26, .18);
  --border-strong: rgba(13, 21, 26, .28);

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --radius-card: 20px;
  --radius-card-sm: 18px;
  --radius-media: 24px;
  --radius-input: 12px;
  --radius-pill: 999px;

  --shadow-media: 0 30px 60px -30px rgba(13, 21, 26, .5);
  --shadow-badge: 0 14px 30px -16px rgba(13, 21, 26, .5);
  --shadow-card-hover: 0 24px 44px -28px rgba(13, 21, 26, .5);

  --section-pad: clamp(56px, 8vh, 96px);
  --section-pad-lg: clamp(60px, 9vh, 104px);
}
/* Mobil deutlich kompaktere Sektionsabstände */
@media (max-width: 560px) {
  :root {
    --section-pad: 36px;
    --section-pad-lg: 40px;
  }
}

/* --- Basis --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--color-accent); color: #fff; }
a { color: inherit; }
img, video { max-width: 100%; height: auto; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
/* color:inherit – iOS Safari färbt Button-Text sonst systemblau */
button { font-family: var(--font-sans); color: inherit; }

/* Sicherheitsnetz: das hidden-Attribut muss jede display-Deklaration
   schlagen, auch wenn eine Komponente display selbst setzt (z. B. flex). */
[hidden] { display: none !important; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
  background: var(--color-ink);
  color: var(--color-cream);
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 0; top: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 56px);
  padding-right: clamp(20px, 5vw, 56px);
}

/* --- Typografie-Bausteine --- */
.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.eyebrow--on-dark { color: var(--color-accent-dark); }

.section__heading {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.02em;
}
.section__heading em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent);
}
.section__text {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-body);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, border-color .15s, transform .12s;
}
.btn--primary { background: var(--color-accent); color: #fff; }
.btn--primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }
.btn--primary:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; }
.btn--outline {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--border-strong);
}
.btn--outline:hover { border-color: var(--color-ink); background: rgba(13, 21, 26, .04); }
.btn--outline:focus-visible { outline: 3px solid rgba(13, 21, 26, .25); outline-offset: 2px; }
.btn--dark { background: var(--color-dark); color: var(--color-cream); }
.btn--dark:hover { background: var(--color-body); }
.btn--dark:focus-visible { outline: 3px solid rgba(13, 21, 26, .3); outline-offset: 2px; }
.btn--lg { padding: 17px 32px; font-size: 17px; }
.btn--xl { padding: 18px 36px; font-size: 18px; }
.btn--nav { padding: 12px 24px; }
.btn--nav-mobile { display: none; padding: 11px 20px; font-size: 14px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(240, 234, 214, 0);
  border-bottom: 1px solid rgba(13, 21, 26, 0);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.header[data-compact] {
  background: rgba(240, 234, 214, .9);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 10px 30px -22px rgba(13, 21, 26, .6);
  border-bottom-color: rgba(13, 21, 26, .1);
}
.header__inner {
  display: grid;
  /* minmax(0, …) statt 1fr: die Seitenspalten bleiben exakt gleich breit, auch
     wenn eine Seite mehr Inhalt hat – nur so steht das Logo wirklich mittig. */
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  height: 96px;
  transition: height .28s ease;
}
.header[data-compact] .header__inner { height: 72px; }
.header__logo { display: flex; align-items: center; justify-content: center; }
.header__logo img { height: 70px; width: auto; display: block; transition: height .28s ease; }
.header[data-compact] .header__logo img { height: 52px; }
.header__side { display: flex; align-items: center; gap: 14px; }
.header__side--left { justify-content: flex-start; }
.header__side--right { justify-content: flex-end; }
/* Negativer Rand gleicht das Innenpadding der Trigger aus, damit der erste
   Menüpunkt optisch bündig an der Container-Kante sitzt wie zuvor. */
.header__nav { display: none; align-items: center; gap: 4px; margin-left: -12px; }
.header__nav a {
  text-decoration: none;
  color: var(--color-body);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.header__nav a:hover, .header__nav a[aria-current] { color: var(--color-accent); }

/* Hauptmenüpunkt mit Dropdown. "Catering"/"Pizza" haben keine eigene Seite,
   sie sind reine Aufklapp-Schalter – deshalb button statt a. */
.nav-group { position: relative; }
.nav-group__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: var(--radius-input);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-body);
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.nav-group__trigger:hover,
.nav-group__trigger[aria-expanded="true"],
.nav-group__trigger.is-active { color: var(--color-accent); }
.nav-group__trigger[aria-expanded="true"] { background: rgba(13, 21, 26, .04); }
.nav-group__trigger:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; }
.nav-group__chevron { display: flex; transition: transform .2s ease; }
.nav-group__trigger[aria-expanded="true"] .nav-group__chevron { transform: rotate(180deg); }

/* Der Wrapper ist transparent und überbrückt mit seinem Padding die Lücke
   zwischen Trigger und Karte – sonst schließt das Menü beim Hinübergehen. */
.nav-group__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.nav-group__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}
.nav-group__list {
  list-style: none;
  margin: 0;
  padding: 8px;
  min-width: 216px;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card-sm);
  box-shadow: var(--shadow-card-hover);
}
.header__nav .nav-group__list a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-input);
  transition: background .15s ease, color .15s ease;
}
.header__nav .nav-group__list a:hover { background: rgba(13, 21, 26, .05); }
.header__nav .nav-group__list a[aria-current] { background: rgba(200, 68, 42, .09); font-weight: 600; }
.header__nav .nav-group__list a:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: -2px; }

.header__actions { display: none; align-items: center; gap: 14px; }
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--color-body);
  transition: color .15s ease, background .15s ease;
}
.icon-link:hover { color: var(--color-accent); background: rgba(13, 21, 26, .05); }
.icon-link:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; }

.header__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
}
.btn--nav-mobile { display: inline-flex; }

@media (min-width: 881px) {
  .header__inner { height: 128px; }
  .header[data-compact] .header__inner { height: 84px; }
  .header__logo img { height: 102px; }
  .header[data-compact] .header__logo img { height: 62px; }
  .header__nav { display: flex; }
  .header__actions { display: flex; }
  .header__toggle { display: none; }
  .btn--nav-mobile { display: none; }
}

/* Der Wechsel Trigger → Dropdown darf nicht animiert hinterherhinken, wenn
   Nutzer:innen reduzierte Bewegung angefordert haben. */
@media (prefers-reduced-motion: reduce) {
  .nav-group__dropdown { transition-delay: 0s !important; }
}

/* --- Mobile-Menü --- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  overflow-y: auto; /* Querformat: alle Punkte + CTA erreichbar halten */
  animation: lnFade .2s ease;
}
.menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.menu__logo { display: inline-flex; }
.menu__bar img { height: 70px; width: auto; display: block; }
.menu__close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  color: var(--color-ink);
  padding: 8px;
}
.menu__nav { display: flex; flex-direction: column; gap: 6px; margin-top: 24px; }
.menu__nav a {
  text-decoration: none;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 34px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(13, 21, 26, .1);
}

/* Aufklappbare Gruppen – gleiches Muster wie das FAQ-Accordion.
   Die Gruppe der aktiven Unterseite rendert das Snippet direkt mit [open]. */
.menu-group { border-bottom: 1px solid rgba(13, 21, 26, .1); }
.menu-group__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  cursor: pointer;
  color: var(--color-ink);
  list-style: none;
}
.menu-group__summary::-webkit-details-marker { display: none; }
.menu-group__summary:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 4px; }
.menu-group__label {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.1;
}
.menu-group__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(13, 21, 26, .22);
  transition: transform .25s ease;
}
.menu-group[open] .menu-group__icon { transform: rotate(180deg); }
.menu-group__list { list-style: none; margin: 0 0 12px; padding: 0; }
/* Überschreibt bewusst .menu__nav a – Unterpunkte sind kleiner und eingerückt */
.menu__nav .menu-group__list a {
  display: block;
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 500;
  color: var(--color-body);
  padding: 13px 0 13px 20px;
  border-bottom: none;
  border-left: 2px solid var(--border-mid);
}
.menu__nav .menu-group__list a[aria-current] {
  color: var(--color-accent);
  font-weight: 600;
  border-left-color: var(--color-accent);
}

.menu__nav .menu__social {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  color: var(--color-ink);
  padding: 18px 0;
  border-bottom: none;
}
.menu__social-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(13, 21, 26, .22);
}
.menu__cta { margin-top: 12px; padding: 18px 28px; font-size: 17px; }

/* --- Sektionen --- */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--color-bg-alt); padding: var(--section-pad-lg) 0; }
.section--dark {
  background: var(--color-dark);
  color: var(--color-cream);
  padding: var(--section-pad-lg) 0;
}
.section--dark .section__heading { color: var(--color-cream); }
.section--first { padding-top: clamp(130px, 16vh, 180px); }
.section__header { max-width: 46em; margin-bottom: 44px; }
.section__header--tight { margin-bottom: 0; max-width: 34em; }
.section__cta { margin-top: 44px; }

/* --- Hero --- */
.hero { padding-top: clamp(118px, 15vh, 152px); padding-bottom: clamp(48px, 7vh, 84px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.hero__heading {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: .97;
  letter-spacing: -.025em;
  color: var(--color-ink);
}
.hero__heading em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent);
}
.hero__text {
  margin: 28px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--color-body);
  max-width: 30em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0 0;
  color: var(--color-muted);
  font-size: 15px;
}
.hero__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}
.hero__media { position: relative; }
.hero__figure {
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-media);
  overflow: hidden;
  box-shadow: var(--shadow-media);
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__badge {
  position: absolute;
  bottom: 26px;
  left: 12px;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-badge);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__badge-icon {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  flex: 0 0 auto;
  width: 74px;
  height: 69px;
  opacity: .88;
  transition: transform .2s ease, opacity .2s ease;
}
.hero__badge-icon:hover { opacity: 1; transform: scale(1.08); }
.hero__badge-icon:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; border-radius: 6px; }
.hero__badge-icon img { width: 100%; height: 100%; display: block; }
.hero__badge-body { display: flex; flex-direction: column; }
.hero__badge-number {
  font-family: var(--font-serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  font-size: 45px;
  min-width: 2.1ch;
  color: var(--color-accent);
  line-height: 1;
}
.hero__badge-text { margin-top: 3px; font-size: 14px; line-height: 1.3; color: var(--color-body); }
/* Mobil sitzt das Badge oben links auf dem Hero-Bild – und deutlich kleiner */
@media (max-width: 880px) {
  .hero__badge { top: 25px; left: 25px; bottom: auto; padding: 9px 13px; gap: 10px; border-radius: 11px; }
  .hero__badge-icon { width: 44px; height: 41px; }
  .hero__badge-number { font-size: 26px; }
  .hero__badge-text { margin-top: 2px; font-size: 12px; }
}

@media (min-width: 881px) {
  .hero { padding-top: clamp(150px, 17vh, 196px); padding-bottom: clamp(64px, 8vh, 108px); }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .hero__badge { left: -24px; }
}

/* --- Icon-Masken (einfärbbare SVG/PNG-Icons) --- */
.anlass-card__icon, .stat__icon, .w-option__icon, .footer__logo,
.filter__chip-icon, .pizza-card__flag-icon, .detail-badge__icon, .teig__icon,
.media-badge__icon {
  display: block;
  background: var(--color-accent);
  -webkit-mask: var(--icon) left center / contain no-repeat;
  mask: var(--icon) left center / contain no-repeat;
}

/* --- Anlässe-Grid --- */
.anlass-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 521px) { .anlass-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 901px) { .anlass-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.anlass-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 34px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .18s ease, box-shadow .18s ease;
}
.anlass-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.anlass-card:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; }
.anlass-card__icon { width: 88px; height: 64px; margin-bottom: 24px; }
.anlass-card__title {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -.01em;
}
.anlass-card__text { margin: 0; font-size: 16px; line-height: 1.55; color: var(--color-body); }
.anlass-card__link {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
}

/* --- Prozess-Grid --- */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.proc-card {
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card-sm);
  padding: 28px;
}
.proc-card__number {
  font-family: var(--font-serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  font-size: 40px;
  color: var(--color-accent);
  line-height: 1;
}
.proc-card__title {
  margin: 16px 0 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
}
.proc-card__text { margin: 0; font-size: 15px; line-height: 1.55; color: var(--color-body); }

/* --- Split-Grid (Handwerk, Team) --- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
@media (min-width: 881px) { .split-grid { grid-template-columns: 1.05fr .95fr; } }
@media (max-width: 880px) { .split-grid__media { order: -1; } }
.split-grid__media { position: relative; }
.split-grid__text p {
  margin: 18px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--color-body);
  max-width: 32em;
}
.split-grid__text p:first-child { margin-top: 28px; }
.section--dark .split-grid__text p { color: rgba(240, 234, 214, .72); }

.media-frame {
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-media);
  overflow: hidden;
  box-shadow: var(--shadow-media);
}
.media-frame img, .media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.media-frame--video { box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); }
.media-frame--portrait { aspect-ratio: 1170 / 1413; }
.media-badge {
  position: absolute;
  bottom: 26px;
  left: 12px;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 12px 20px;
  box-shadow: var(--shadow-badge);
}
.media-badge span {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--color-ink);
  letter-spacing: -.01em;
}
@media (min-width: 881px) { .media-badge { left: -14px; } }

/* --- Handwerk-Stats --- */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px 32px;
}
@media (min-width: 481px) { .stat-grid { grid-template-columns: 1fr 1fr; } }
.stat { border-top: 2px solid rgba(240, 234, 214, .18); padding-top: 22px; }
.stat__icon { width: 80px; height: 80px; background: var(--color-cream); margin-bottom: 16px; }
.stat__number {
  font-family: var(--font-serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(42px, 5vw, 58px);
  color: var(--color-accent-dark);
  line-height: 1;
}
.stat__title {
  margin: 14px 0 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 23px;
  color: var(--color-cream);
}
.stat__text { margin: 0; font-size: 16px; line-height: 1.55; color: rgba(240, 234, 214, .72); }

/* --- Bewertungen --- */
.reviews__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 32px;
  margin-bottom: 44px;
}
.stars { display: inline-flex; gap: 3px; color: var(--color-accent); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 15px 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 14px 30px -22px rgba(13, 21, 26, .5);
  transition: transform .18s ease, box-shadow .18s ease;
}
a.google-badge:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -22px rgba(13, 21, 26, .5); }
.google-badge__body { display: flex; flex-direction: column; gap: 3px; }
.google-badge__body .stars { gap: 2px; }
.google-badge__text { font-size: 14px; color: var(--color-muted); }
.google-badge__text strong { color: var(--color-ink); }

.review-card {
  margin: 0;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card__quote { margin: 0; font-size: 16px; line-height: 1.6; color: var(--color-body); }
.review-card__caption { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.review-card__name { font-weight: 600; font-size: 15px; color: var(--color-ink); }
.review-card__tag { font-size: 14px; color: var(--color-muted); }
.reviews__more { margin-top: 32px; }

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
@media (min-width: 881px) { .faq-grid { grid-template-columns: .85fr 1.15fr; } }
.faq-grid__hint {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-body);
  max-width: 22em;
}
.faq-grid__hint a { color: var(--color-accent); font-weight: 600; text-decoration: none; }
.faq-grid__hint a:hover { text-decoration: underline; }
.faq-list { border-top: 1px solid var(--border-mid); }
.faq-item { border-bottom: 1px solid var(--border-mid); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  cursor: pointer;
  color: var(--color-ink);
  transition: color .15s ease;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--color-accent); }
.faq-item__question {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 22px);
  letter-spacing: -.01em;
}
.faq-item__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(13, 21, 26, .22);
  transition: transform .25s ease;
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  margin: 0;
  padding: 0 52px 24px 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body);
}

/* --- CTA-Band --- */
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-band__heading {
  margin: 0;
  max-width: 16em;
  font-family: var(--font-serif);
  font-weight: 600;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -.02em;
}
.cta-band__text {
  margin: 22px 0 36px;
  max-width: 32em;
  font-size: 19px;
  line-height: 1.55;
  color: var(--color-body);
}

/* --- Seitenkopf (Pizzen / Veranstaltungen, Übersicht + Detail) --- */
.page-head { padding-top: clamp(118px, 15vh, 152px); }
@media (min-width: 881px) { .page-head { padding-top: clamp(150px, 17vh, 196px); } }
.page-head__header { max-width: 46em; margin-bottom: 40px; }
.page-head__header--lg { margin-bottom: 48px; }
.page-head__heading {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: -.025em;
}
.page-head__heading em { font-style: italic; font-weight: 500; color: var(--color-accent); }
.page-head__text {
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--color-body);
  max-width: 32em;
}

/* --- Filter-Chips (Veranstaltungen) --- */
.filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter__chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: var(--color-body);
  border: 1.5px solid rgba(13, 21, 26, .25);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.filter__chip[aria-pressed="true"] {
  background: var(--color-ink);
  color: var(--color-cream);
  border-color: var(--color-ink);
}
.filter__chip:focus-visible { outline: 3px solid rgba(13, 21, 26, .25); outline-offset: 2px; }
.filter__chip-icon {
  flex: none;
  width: 27px;
  height: 19px;
  -webkit-mask-position: center;
  mask-position: center;
}
.filter__chip[aria-pressed="true"] .filter__chip-icon { background: var(--color-cream); }

/* --- Veranstaltungs-Karten --- */
.event-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
@media (min-width: 561px) { .event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 901px) { .event-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.event-card {
  text-decoration: none;
  color: inherit;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.event-card:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; }
.event-card__media { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-bg);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
}
.event-card__body { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px 24px; flex: 1; }
.event-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.event-card__meta { font-size: 14px; color: var(--color-muted); }
.event-card__facts { font-size: 15px; color: var(--color-body); }
.event-card__link {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
}

/* --- Pizza-Karten --- */
.pizza-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
@media (min-width: 481px) { .pizza-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 781px) { .pizza-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1021px) { .pizza-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.pizza-card {
  text-decoration: none;
  color: inherit;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pizza-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pizza-card:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; }
.pizza-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 26px;
}
.pizza-card__media img {
  /* iOS Safari löst height:100% in aspect-ratio-Flexboxen nicht auf und fällt
     auf die intrinsische Bildbreite zurück – daher feste Ratio statt %-Höhe */
  min-width: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 22px rgba(13, 21, 26, .3));
}
.pizza-card__flag {
  position: absolute;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--color-bg);
  border: 1px solid rgba(13, 21, 26, .1);
  border-radius: var(--radius-pill);
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 600;
}
.pizza-card__flag--diet { left: 14px; color: var(--color-diet); }
.pizza-card__flag--hot { right: 14px; color: var(--color-accent); }
.pizza-card__flag-icon {
  flex: none;
  width: 15px;
  height: 15px;
  background: var(--color-diet);
  -webkit-mask-position: center;
  mask-position: center;
}
.pizza-card__body { display: flex; flex-direction: column; gap: 6px; padding: 0 22px 22px; flex: 1; }
.pizza-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.pizza-card__sub { font-size: 14px; line-height: 1.5; color: var(--color-muted); }
.pizza-card__link {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
}

/* --- Wunschsorten-Banner --- */
.wunsch-banner {
  margin-top: 24px;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: clamp(26px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}
.wunsch-banner__body { max-width: 34em; }
.wunsch-banner__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -.01em;
}
.wunsch-banner__text { margin: 10px 0 0; font-size: 16px; line-height: 1.55; color: var(--color-body); }
.btn--md { padding: 14px 28px; font-size: 16px; }

/* --- Teig-Sektion (Pizzen) --- */
.teig { padding-bottom: var(--section-pad-lg); }
.teig-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 781px) { .teig-grid { grid-template-columns: .8fr 1.2fr; } }
.media-frame--landscape { aspect-ratio: 4 / 3; }
.teig__image { display: block; width: 100%; height: auto; }
.teig__icon { width: 64px; height: 64px; margin-bottom: 18px; }
.teig__heading {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.teig__text {
  margin: 20px 0 0;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--color-body);
  max-width: 34em;
}
.teig__text a { color: var(--color-accent); font-weight: 600; text-decoration: none; }
.teig__text a:hover { text-decoration: underline; }
.teig__links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 24px; }
.teig__link { margin-top: 0; }

/* --- Detailseiten (Veranstaltung / Pizza) --- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-body);
  text-decoration: none;
}
.back-link:hover { color: var(--color-accent); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}
@media (max-width: 880px) { .detail-grid__media { order: -1; } }
@media (min-width: 881px) {
  .detail-grid--event { grid-template-columns: 1.05fr .95fr; }
  .detail-grid--pizza { grid-template-columns: .95fr 1.05fr; }
  .detail-grid__media--sticky { position: sticky; top: 120px; }
}
/* Split-Variante (Event-Detail): mobil Headline → Bild → Inhalte,
   Desktop zweispaltig wie gehabt (Bild links über beide Zeilen) */
.detail-grid--split .detail-grid__media { order: 0; }
@media (max-width: 880px) {
  .detail-grid--split { gap: 24px; }
}
@media (min-width: 881px) {
  .detail-grid--split { grid-template-rows: auto 1fr; row-gap: 0; }
  .detail-grid--split .detail-grid__media { grid-column: 1; grid-row: 1 / span 2; }
  .detail-grid--split .detail-grid__head { grid-column: 2; grid-row: 1; }
  .detail-grid--split .detail-grid__rest { grid-column: 2; grid-row: 2; align-self: start; }
}
.detail-grid__media { position: relative; }
.detail__heading {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: -.025em;
}
.detail__meta { margin: 14px 0 0; font-size: 16px; color: var(--color-muted); }
.detail__text {
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.6;
  color: var(--color-body);
  max-width: 32em;
}
.detail__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-card);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}
.detail-badge--diet { border: 1px solid rgba(46, 107, 63, .35); color: var(--color-diet); }
.detail-badge--hot { border: 1px solid rgba(200, 68, 42, .35); color: var(--color-accent); }
.detail-badge__icon {
  flex: none;
  width: 17px;
  height: 17px;
  background: var(--color-diet);
  -webkit-mask-position: center;
  mask-position: center;
}
.detail-block { margin-top: 34px; }
.detail-block__label {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.detail-block__text { margin: 0; font-size: 16px; line-height: 1.6; color: var(--color-body); }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  background: var(--color-card);
  border: 1px solid rgba(13, 21, 26, .12);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ink);
}
a.chip { text-decoration: none; transition: border-color .15s, color .15s; }
a.chip:hover { border-color: var(--color-accent); color: var(--color-accent); }
a.chip:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; }
.chip--pizza { padding: 6px 18px 6px 8px; gap: 10px; }
.chip__img {
  flex: none;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(13, 21, 26, .25));
}

/* Anlass-Icon im Overlay-Badge (Veranstaltung-Detail) */
.media-badge--event { display: flex; align-items: center; gap: 12px; }
/* Mobil ist die Art bereits in der Headline sichtbar – Badge ausblenden */
@media (max-width: 880px) {
  .media-badge--event { display: none; }
}
.media-badge__icon { flex: none; width: 34px; height: 24px; }

/* Galerie (Veranstaltung-Detail) */
.detail-gallery { margin-top: clamp(48px, 7vh, 72px); }
.gallery-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
@media (min-width: 561px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 901px) { .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.gallery-item {
  display: block;
  margin: 0;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-light);
  cursor: zoom-in;
}
.gallery-item:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 56px);
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 21, 26, .85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: lnFade .2s ease;
}
.lightbox__figure { position: relative; z-index: 1; margin: 0; animation: lnPop .25s cubic-bezier(.2, .7, .2, 1); }
.lightbox__img {
  display: block;
  max-width: min(1200px, 100%);
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-media);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7);
}
.lightbox__close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  color: var(--color-cream);
  padding: 8px;
}
.lightbox__close:hover { color: #fff; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(240, 234, 214, .35);
  background: rgba(240, 234, 214, .12);
  color: var(--color-cream);
  cursor: pointer;
  transition: background .15s;
}
.lightbox__nav:hover { background: rgba(240, 234, 214, .25); }
.lightbox__nav--prev { left: clamp(10px, 2vw, 24px); }
.lightbox__nav--next { right: clamp(10px, 2vw, 24px); }
.lightbox__close:focus-visible, .lightbox__nav:focus-visible { outline: 3px solid rgba(240, 234, 214, .6); outline-offset: 2px; }

/* Facts-Grid (Veranstaltung-Detail) */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 38px;
}
@media (min-width: 481px) { .facts-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 481px) and (max-width: 880px) { .facts-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 881px) { .facts-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.fact { border-top: 2px solid var(--border-mid); padding-top: 16px; }
.fact__value {
  display: block;
  font-family: var(--font-serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(34px, 4vw, 34px);
  color: var(--color-accent);
  line-height: 1;
}
.fact__label { display: block; margin-top: 8px; font-size: 15px; font-weight: 500; color: var(--color-body); }

/* Google-Rezension (Veranstaltung-Detail) */
.review-quote {
  margin: 34px 0 0;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 34em;
}
.review-quote__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.review-quote__text { margin: 0; font-size: 16px; line-height: 1.6; color: var(--color-body); }
.review-quote__caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
}
.review-quote__meta { display: flex; flex-direction: column; gap: 2px; }
.review-quote__name { font-weight: 600; font-size: 15px; color: var(--color-ink); }
.review-quote__source { font-size: 14px; color: var(--color-muted); }
.review-quote__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}
.review-quote__link:hover { text-decoration: underline; }

/* Pizza-Detail */
.pizza-hero {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 34px 40px rgba(13, 21, 26, .35));
}
.detail-block--nutrition { max-width: 30em; }
.detail-block--nutrition .detail-block__label { margin-bottom: 14px; }
.nutrition {
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 8px 24px;
}
.nutrition__list { margin: 0; }
.nutrition__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
}
.nutrition__label { margin: 0; font-size: 15px; color: var(--color-body); font-weight: 400; }
.nutrition__row--sub .nutrition__label { color: var(--color-muted); padding-left: 16px; }
.nutrition__value { margin: 0; font-size: 15px; font-weight: 600; color: var(--color-ink); white-space: nowrap; }
.nutrition__note { margin: 0; padding: 12px 0 14px; font-size: 13px; line-height: 1.5; color: var(--color-muted); }

/* --- Kontakt-Seite --- */
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}
@media (min-width: 881px) { .kontakt__grid { grid-template-columns: 1.15fr .85fr; } }
.kontakt__text { max-width: 30em; }
.kontakt__actions { margin-top: 34px; }
.kontakt__card {
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 34px 30px;
}
.kontakt__card .footer__heading { color: var(--color-accent); }
.kontakt__address { margin: 0 0 14px; font-size: 16px; line-height: 1.6; color: var(--color-body); }
.kontakt__mail { margin: 0; }

/* --- Prose (Impressum, Datenschutz, Fehlerseite) --- */
.prose { max-width: 46em; }
.prose .section__heading { margin-bottom: 24px; }
.prose p { font-size: 17px; line-height: 1.6; color: var(--color-body); }
.prose a { color: var(--color-accent); }

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  color: rgba(240, 234, 214, .82);
  padding: clamp(56px, 8vh, 88px) 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 761px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; } }
.footer__logo { width: 220px; height: 96px; background: var(--color-cream); }
.footer__about { margin: 22px 0 0; font-size: 16px; line-height: 1.6; max-width: 26em; }
.footer__heading {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}
.footer__address { margin: 0 0 14px; font-size: 16px; line-height: 1.6; }
.footer__links { margin: 0; font-size: 16px; line-height: 1.9; }
.footer__links a { text-decoration: none; color: rgba(240, 234, 214, .82); }
.footer__links a:hover { color: #fff; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; font-size: 16px; align-items: flex-start; }
.footer__nav a { text-decoration: none; color: rgba(240, 234, 214, .82); }
.footer__nav a:hover { color: #fff; }
.footer__wizard-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  color: rgba(240, 234, 214, .82);
  cursor: pointer;
  font-family: var(--font-sans);
}
.footer__wizard-link:hover { color: #fff; }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(240, 234, 214, .14);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(240, 234, 214, .6);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { text-decoration: none; color: rgba(240, 234, 214, .6); }
.footer__legal a:hover { color: #fff; }

/* --- Allergenübersicht --- */
.allergen-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 52em;
  margin-bottom: 40px;
  padding: 18px 22px;
  background: var(--color-card);
  border: 1px solid rgba(200, 68, 42, .35);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-card-sm);
}
.allergen-notice__icon { flex: none; margin-top: 2px; color: var(--color-accent); }
.allergen-notice__text { margin: 0; font-size: 16px; line-height: 1.6; color: var(--color-body); }

.allergen-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.allergen-controls__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-body);
}
.allergen-controls__search { width: min(360px, 100%); }
.allergen-controls__input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-ink);
  background: var(--color-input-bg);
  border: 1.5px solid var(--border-input);
  border-radius: var(--radius-input);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.allergen-controls__input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 68, 42, .15);
}
.allergen-controls__filter { margin-bottom: 0; }
.allergen-controls__reset {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
  cursor: pointer;
}
.allergen-controls__reset:hover { text-decoration: underline; }
.allergen-controls__reset:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; }

.allergen-count { margin: 0 0 16px; font-size: 14px; color: var(--color-muted); }

.allergen-table-wrap {
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow-x: auto;
}
.allergen-table { width: 100%; border-collapse: collapse; }
.allergen-table__caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.allergen-table thead th {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border-mid);
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.allergen-table tbody th,
.allergen-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  color: var(--color-body);
}
.allergen-table tbody tr:last-child th,
.allergen-table tbody tr:last-child td { border-bottom: none; }
.allergen-table__name a {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--color-ink);
  text-decoration: none;
}
.allergen-table__name a:hover { color: var(--color-accent); }
.allergen-table__name a:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; }
.allergen-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.allergen-list__item {
  display: inline-flex;
  align-items: center;
  background: var(--color-bg);
  border: 1px solid rgba(13, 21, 26, .12);
  border-radius: var(--radius-pill);
  padding: 5px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
}
.allergen-table__none { font-size: 15px; font-style: italic; color: var(--color-muted); }
.allergen-table__diet { font-weight: 600; color: var(--color-diet); }
.allergen-table__link { font-size: 15px; white-space: nowrap; }
.allergen-table__link:focus-visible { outline: 3px solid rgba(200, 68, 42, .4); outline-offset: 2px; }
/* Der Pizzaname im CTA-Link ist nur für Screenreader – Links bleiben so
   auch aus der Linkliste heraus unterscheidbar */
.allergen-table__link-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Mobil wird jede Tabellenzeile zur Karte – gleiche Daten, gleiches Markup */
@media screen and (max-width: 759px) {
  .allergen-table thead { display: none; }
  .allergen-table, .allergen-table tbody, .allergen-table tr,
  .allergen-table tbody th, .allergen-table tbody td { display: block; }
  .allergen-table-wrap { background: none; border: none; border-radius: 0; overflow: visible; }
  .allergen-table tr {
    background: var(--color-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card-sm);
    padding: 20px 22px;
  }
  .allergen-table tr + tr { margin-top: 14px; }
  .allergen-table tbody th, .allergen-table tbody td { padding: 0; border-bottom: none; }
  .allergen-table__name { margin-bottom: 12px; }
  .allergen-table__name a { font-size: 21px; }
  .allergen-table tbody td[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-muted);
  }
  .allergen-table tbody td + td { margin-top: 14px; }
  .allergen-table__cell--empty { display: none !important; }
  .allergen-table__details { margin-top: 16px; }
}

.allergen-empty {
  padding: 40px 24px;
  background: var(--color-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  text-align: center;
}
.allergen-empty__text { margin: 0 0 20px; font-size: 17px; color: var(--color-body); }

.allergen-stand { margin: 20px 0 0; font-size: 14px; color: var(--color-muted); }

.detail-block__more { margin-top: 12px; font-size: 15px; }

/* ==========================================================================
   Anfrage-Wizard (Modal)
   ========================================================================== */
.wizard { position: fixed; inset: 0; z-index: 100; }
.wizard__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 21, 26, .55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: lnFade .2s ease;
}
.wizard__card {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  background: var(--color-card);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: lnUp .3s cubic-bezier(.2, .7, .2, 1);
  width: 100%;
  /* vh-Fallback für Browser ohne dvh (z. B. iOS < 15.4) */
  height: 100vh;
  max-height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  border-radius: 0;
}
@media (min-width: 561px) {
  .wizard { display: flex; align-items: center; justify-content: center; padding: 20px; }
  .wizard__card {
    width: min(680px, 100%);
    height: auto;
    max-height: 92vh;
    border-radius: var(--radius-media);
  }
}

.wizard__head { padding: 22px 26px 18px; border-bottom: 1px solid var(--border-light); }
.wizard__head-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.wizard__step-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.wizard__done-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-success);
}
.wizard__close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: var(--color-muted);
  padding: 4px 8px;
}
.wizard__close:hover { color: var(--color-ink); }
.wizard__progress {
  margin-top: 14px;
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(13, 21, 26, .1);
  overflow: hidden;
}
.wizard__progress-bar {
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  transition: width .3s ease;
}

.wizard__scroll {
  padding: 30px 30px 8px;
  overflow-y: auto;
  flex: 1;
  overscroll-behavior: contain;
  margin: 0;
}
.wizard__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.wizard__step { animation: lnFade .25s ease; }
.wizard__step--done { text-align: center; padding: 14px 0 24px; }
.wizard__title {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -.01em;
}
.wizard__intro { margin: 0 0 26px; font-size: 16px; color: var(--color-muted); line-height: 1.5; }

.wizard__options { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 521px) { .wizard__options { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.w-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  padding: 22px 20px 20px;
  border-radius: 16px;
  border: 1.5px solid var(--border-input);
  background: var(--color-input-bg);
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.w-option[aria-pressed="true"] {
  border-color: var(--color-success);
  background: rgba(63, 125, 78, .06);
  box-shadow: 0 0 0 3px rgba(63, 125, 78, .16);
}
.w-option__iconwrap {
  flex: none;
  width: 92px;
  height: 92px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.w-option__icon {
  flex: none;
  width: 92px;
  height: 92px;
  -webkit-mask-position: center;
  mask-position: center;
}
.w-option__body { flex: 1; }
.w-option__label {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
}
.w-option__text { display: block; margin-top: 6px; font-size: 15px; color: var(--color-muted); }
.w-option__check {
  position: absolute;
  top: 18px;
  right: 18px;
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-success);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
}
.w-option[aria-pressed="true"] .w-option__check { display: flex; }

/* Mobil (Einspaltenlayout): Icon und Text nebeneinander statt gestapelt.
   Ab 521px (zweispaltiges Grid) bleibt die gestapelte Card-Optik erhalten. */
@media (max-width: 520px) {
  .w-option { flex-direction: row; align-items: center; padding: 14px 44px 14px 14px; }
  .w-option__iconwrap { width: 56px; height: 56px; margin-bottom: 0; margin-right: 14px; }
  .w-option__icon { width: 56px; height: 56px; }
  .w-option__check { top: 50%; transform: translateY(-50%); }
}

/* Felder */
.field-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 561px) { .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.w-stack { display: flex; flex-direction: column; gap: 18px; }
.w-field { margin-bottom: 18px; }
.w-stack .w-field, .field-row .w-field { margin-bottom: 0; }
.w-field label, .w-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-body);
}
.w-optional { color: var(--color-faint); font-weight: 400; }
.w-hint { margin: -4px 0 12px; font-size: 13px; color: var(--color-faint); }
.w-hint--warning {
  margin: 10px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fdf3f1;
  border: 1px solid rgba(200, 68, 42, .3);
  color: var(--color-error);
  font-size: 13px;
  line-height: 1.5;
}
.w-location-hint { margin: 4px 0 0; font-size: 13px; color: var(--color-faint); line-height: 1.5; }

.w-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 18px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-body);
  cursor: pointer;
}
.w-checkbox input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

/* ?-Hint hinter Labels: Erklärtext bei Hover/Fokus, Tap togglet (site.js) */
.w-labelrow { position: relative; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.w-labelrow label, .w-labelrow .w-label { margin-bottom: 0; }
.hint { display: inline-flex; }
.hint__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 1.5px solid rgba(13, 21, 26, .3);
  border-radius: 50%;
  background: transparent;
  color: var(--color-faint);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: help;
  transition: border-color .15s, color .15s;
}
.hint__trigger:hover,
.hint__trigger:focus-visible,
[data-hint].is-open .hint__trigger {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.hint__bubble {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: max-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--color-ink);
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  box-shadow: 0 12px 28px rgba(13, 21, 26, .28);
  pointer-events: none;
}
.hint__trigger:hover + .hint__bubble,
.hint__trigger:focus-visible + .hint__bubble,
[data-hint].is-open .hint__bubble { display: block; }
.w-field input, .w-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-ink);
  background: var(--color-input-bg);
  border: 1.5px solid var(--border-input);
  border-radius: var(--radius-input);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.w-field textarea { resize: vertical; }
.w-field input:focus, .w-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(200, 68, 42, .14);
}
.w-field input[aria-invalid="true"] {
  border-color: var(--color-error);
  background: #fdf3f1;
}
/* iOS Safari rendert Date-/Time-Inputs mit eigener Optik und intrinsischer
   Breite, die width:100% übersteuert – appearance:none erzwingt unser Layout */
.w-field input[type="date"],
.w-field input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  min-width: 0;
  max-width: 100%;
  min-height: 50px; /* leere Inputs kollabieren auf iOS sonst in der Höhe */
}
.w-field input::-webkit-date-and-time-value { text-align: left; }
.w-error { margin: 8px 0 0; font-size: 13px; color: var(--color-error); }

/* stretch statt center: Date-Input und Button bleiben gleich hoch */
.w-dayrow { display: flex; gap: 10px; flex-wrap: wrap; align-items: stretch; }
.w-dayrow input[type="date"] { flex: 1; min-width: 170px; width: auto; }
.w-dayrow .btn { border-radius: var(--radius-input); padding: 14px 20px; }
.w-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.w-daychip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(63, 125, 78, .1);
  border: 1.5px solid var(--color-success);
  color: var(--color-success-text);
  font-size: 14px;
  font-weight: 600;
}
.w-daychip button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(47, 107, 62, .15);
  color: var(--color-success-text);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.w-choices { display: flex; flex-wrap: wrap; gap: 10px; }
.w-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(13, 21, 26, .2);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.w-chip[aria-pressed="true"] {
  border-color: var(--color-success);
  background: rgba(63, 125, 78, .1);
  color: var(--color-success-text);
}
.w-chip[disabled] { opacity: .4; cursor: not-allowed; }
.w-chip__check {
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-success);
  color: #fff;
}
.w-chip[aria-pressed="true"] .w-chip__check { display: inline-flex; }
.w-chip--pizza { padding: 6px 16px 6px 8px; gap: 10px; }
.w-chip__img {
  flex: none;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(13, 21, 26, .25));
}
.w-chip[disabled] .w-chip__img { filter: grayscale(1) drop-shadow(0 4px 6px rgba(13, 21, 26, .25)); }

.w-choice-group { border: none;  padding: 0; }
.w-choice-group legend {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-body);
}
.w-choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-input);
  border: 1.5px solid rgba(13, 21, 26, .2);
  background: var(--color-input-bg);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.w-choice[aria-pressed="true"] {
  border-color: var(--color-success);
  background: rgba(63, 125, 78, .1);
  color: var(--color-success-text);
}
.w-choice[aria-pressed="true"]::before { content: "✓ "; }

.w-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(13, 21, 26, .2);
  border-radius: var(--radius-input);
  overflow: hidden;
}
.w-stepper button {
  width: 48px;
  height: 48px;
  border: none;
  background: var(--color-input-bg);
  font-size: 22px;
  line-height: 1;
  color: var(--color-ink);
  cursor: pointer;
}
.w-stepper button:hover { background: rgba(13, 21, 26, .05); }
.w-stepper span {
  min-width: 54px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-ink);
}

.w-legend {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-muted);
}
.w-legend span { display: inline-flex; align-items: center; gap: 7px; }

.w-address { margin-top: 6px; padding-top: 18px; border-top: 1px solid rgba(13, 21, 26, .1); }
.w-address__label {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.w-summary {
  background: var(--color-input-bg);
  border: 1px solid rgba(13, 21, 26, .1);
  border-radius: 16px;
  overflow: hidden;
}
.w-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-light);
}
.w-summary__row:last-child { border-bottom: none; }
.w-summary__label { color: var(--color-muted); font-size: 15px; }
.w-summary__value { font-weight: 600; font-size: 15px; text-align: right; }

.w-done__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: lnPop .35s cubic-bezier(.2, .7, .2, 1);
}
.w-done__text {
  margin: 0 auto 28px;
  max-width: 30em;
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-body);
}
.w-done__steps {
  text-align: left;
  max-width: 30em;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.w-done__steps > div { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--color-body); }
.w-done__num {
  flex: none;
  font-family: var(--font-serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  font-size: 22px;
  color: var(--color-accent);
}

.wizard__footer {
  padding: 18px 26px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--color-card);
}
.wizard__footer--done { justify-content: center; }
.wizard__footer .btn--primary { padding: 14px 28px; }
.wizard__footer .btn--outline { padding: 13px 24px; }

/* Kein Scrollen im Hintergrund, solange Modal/Menü offen ist */
body.is-locked { overflow: hidden; }

/* --- Animationen --- */
@keyframes lnFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lnUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lnPop { from { opacity: 0; transform: scale(.8); } to { opacity: 1; transform: scale(1); } }

/* ==========================================================================
   Leoparding-Effekt (Design-Handoff "Leoparding v2")
   Tintenfleck-Cluster: Buttons/Cards per Hover (rein CSS), Hero/Handwerk/Team
   scrollgetriggert (site.js setzt --corner-step und .leo-play).
   ========================================================================== */

/* Wrapper um Buttons/Links; Anlässe- und Event-Cards sind selbst der Wrapper */
.leo-btn { position: relative; display: inline-flex; }
.anlass-card.leo-btn, .event-card.leo-btn { display: flex; }
/* Event-Card: Flecken dürfen überstehen – Rundung übernimmt das Media-Element */
.event-card.leo-btn { overflow: visible; }
.event-card.leo-btn .event-card__media { border-radius: var(--radius-card) var(--radius-card) 0 0; }
/* Pizza-Card: gleiche Behandlung, das Motiv sitzt ohnehin mit Innenabstand */
.pizza-card.leo-btn { overflow: visible; }
/* Karten-Cluster (Anlässe, Pizzen, Veranstaltungen): nur die Breite wird
   gesetzt, die Höhe folgt dem Seitenverhältnis. Schmale Karten im
   4-spaltigen Grid vertragen breitere Prozente als breite Karten –
   der Umbruch liegt dort, wo das jeweilige Grid vierspaltig wird. */
.leo-card-tr { width: 39%; }
.leo-card-bl { width: 34%; }
@media (min-width: 901px) {
  .anlass-card .leo-card-tr { width: 54%; }
  .anlass-card .leo-card-bl { width: 48%; }
}
@media (min-width: 1021px) {
  .pizza-card .leo-card-tr { width: 54%; }
  .pizza-card .leo-card-bl { width: 48%; }
}

/* Fleck-Cluster: Position/Breite kommt inline aus den leo/-Snippets.
   Die Höhe folgt zwingend dem Seitenverhältnis der jeweiligen Grafik
   (--leo-ratio aus deren viewBox) – sonst zentriert das SVG sich per
   preserveAspectRatio im Container und rutscht von der Ecke weg. */
.leo-corner { position: absolute; pointer-events: none; aspect-ratio: var(--leo-ratio); }
.leo-corner svg { display: block; width: 100%; height: 100%; overflow: visible; }
.leo-corner path {
  fill: #1c1712;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(.25);
  transition: opacity .38s ease, transform .55s cubic-bezier(.3, 1.4, .4, 1);
  transition-delay: calc(var(--i, 0) * var(--corner-step, 20ms));
}
.leo-corner.leo-play path,
.leo-btn:hover .leo-corner path,
.leo-btn:focus-within .leo-corner path { opacity: 1; transform: scale(1); }
.leo-corner-light path { fill: var(--color-cream); }

/* Hero-Bild: organische Maske + Schatten der Maskenform (statt Box-Schatten) */
.hero__figure--leo {
  aspect-ratio: .806871;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  filter: drop-shadow(0 24px 26px rgba(13, 21, 26, .3));
}
.hero__figure--leo img {
  clip-path: url(#leoImgMask);
  -webkit-clip-path: url(#leoImgMask);
  border-radius: 6px;
}

/* Maskierte Media-Frames (Handwerk-Video, Veranstaltungs-Detailbild):
   gleiche organische Maske wie der Hero, Schatten je nach Hintergrund */
.media-frame--leo {
  aspect-ratio: .806871;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  filter: drop-shadow(0 24px 26px rgba(13, 21, 26, .3));
}
.section--dark .media-frame--leo { filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .4)); }
.media-frame--leo img,
.media-frame--leo video {
  clip-path: url(#leoImgMask);
  -webkit-clip-path: url(#leoImgMask);
  border-radius: 6px;
}

/* Teamfoto: Kreis (86 % Breite) mit Fleckring drumherum */
.team-figure { margin: 0 auto; position: relative; width: 86%; }
.team-figure__circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(13, 21, 26, .5);
}
.team-figure__circle img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Idle-Wiggle der Hero-Stoppuhr (lädt zum Klick/Replay ein) */
@keyframes leoWiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  15% { transform: rotate(-11deg) scale(1.06); }
  30% { transform: rotate(9deg) scale(1.06); }
  45% { transform: rotate(-7deg) scale(1.04); }
  60% { transform: rotate(6deg) scale(1.04); }
  75% { transform: rotate(-3deg) scale(1.02); }
}
.hero__badge-icon.leo-wiggle { animation: leoWiggle .65s ease; }

@media (prefers-reduced-motion: reduce) {
  .leo-corner path { transition: opacity .2s ease; transform: none !important; }
  .hero__badge-icon.leo-wiggle { animation: none; }
}

/* ==========================================================================
   Druck – die Allergenübersicht dient ausgedruckt als Aushang beim Catering
   ========================================================================== */
@media print {
  body { background: #fff; color: #000; }
  .header, .menu, .wizard, .footer, .skip-link, .cta-band,
  .allergen-controls, .allergen-empty, .back-link { display: none !important; }
  .page-head { padding-top: 0; }
  /* Reveal-Animationen setzen Inline-Opacity – im Druck immer sichtbar */
  [data-reveal] { opacity: 1 !important; transform: none !important; }

  /* Gedruckt wird immer die komplette Übersicht, unabhängig vom Browserfilter */
  .allergen-table-wrap[hidden] { display: block !important; }
  .allergen-table tr[hidden] { display: table-row !important; }

  .allergen-notice { background: none; border: 1.5px solid #000; border-radius: 8px; }
  .allergen-notice__icon { color: #000; }
  .allergen-count { display: none; }
  .allergen-table-wrap { background: none; border: none; border-radius: 0; overflow: visible; }
  .allergen-table thead th,
  .allergen-table tbody th,
  .allergen-table tbody td { border-color: #999; padding: 10px 12px 10px 0; }
  .allergen-table tbody tr:last-child th,
  .allergen-table tbody tr:last-child td { border-bottom: 1px solid #999; }
  .allergen-table tr { break-inside: avoid; page-break-inside: avoid; }
  .allergen-table__name a { color: #000; text-decoration: none; }
  /* Chips werden zur schlichten, gut lesbaren Aufzählung */
  .allergen-list { display: inline; }
  .allergen-list__item { display: inline; background: none; border: none; padding: 0; font-size: inherit; color: #000; }
  .allergen-list__item:not(:last-child)::after { content: ", "; }
  /* Die Details-Spalte hat auf Papier keine Funktion */
  .allergen-table thead th:last-child, .allergen-table__details { display: none; }
}
