/* BrotZeit by Brotfee – Landingpage V2 (Refactor nach Referenzgrafik)
   Warmes Brot-/Café-Schema: dunkles Braun, Creme, Sand, Weiß.
   Typografie-System: Fraunces (Serife) NUR für große Headlines,
   Work Sans (serifenlos) für alles andere. Selbst gehostet (kein Tracking). */

/* ---------- Selbst gehostete Schriften ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../assets/fonts/worksans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../assets/fonts/worksans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../assets/fonts/worksans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../assets/fonts/worksans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brown-900: #3a2c1c; /* Headline/Text dunkel */
  --brown-800: #4d3a26;
  --brown-700: #6b4a2b; /* Primär */
  --brown-500: #8b6b47;
  --gold-400: #b98a4e; /* Akzent */
  --sand-200: #e9ddca; /* Linien/Sand */
  --cream-100: #f3ead9; /* Sektion hell */
  --cream-50: #f5f0e8; /* Karten/Body */
  --paper: #ffffff;
  --text: #463422;

  --maxw: 1180px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 8px 24px rgba(58, 44, 28, 0.12);
  --shadow: 0 18px 44px rgba(58, 44, 28, 0.13);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Work Sans", "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--brown-700);
}
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.16;
  color: var(--brown-900);
  text-wrap: balance; /* ausgewogene Zeilen, keine Einzelwort-Enden */
}
/* Serife NUR für große Display-Headlines (klares System) */
.hero__claim,
.display {
  font-family: var(--serif);
}
/* Fließtext/Absätze: keine kurzen Waisen-Zeilen */
p {
  text-wrap: pretty;
}
.ic {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  flex: none;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 720px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--brown-700);
  color: #fff;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--brown-700);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.btn:hover {
  background: var(--brown-900);
  border-color: var(--brown-900);
}
.btn:active {
  transform: translateY(1px);
}
.hero__cta .btn:not(.btn--ghost) {
  border-color: #fff;
}
.hero__cta .btn:not(.btn--ghost):hover {
  border-color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--brown-700);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--brown-700);
  color: #fff;
}
.btn--red {
  background: #c8102e;
  border-color: #c8102e;
  color: #fff;
  box-shadow: 0 3px 10px rgba(200, 16, 46, 0.35);
}
.btn--red:hover {
  background: #a50d25;
  border-color: #a50d25;
}
.btn--small {
  padding: 10px 18px;
  font-size: 0.92rem;
}
.btn--block {
  width: 100%;
}
.btn--disabled {
  background: var(--brown-300, #c9b49a);
  border-color: var(--brown-300, #c9b49a);
  color: rgba(255,255,255,0.75);
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

/* ---------- Sticky Header ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 28px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-200);
}
.nav__brand {
  display: flex;
  align-items: center;
}
.nav__logo {
  height: 58px;
  width: auto;
  aspect-ratio: 1 / 1; /* Breite vorab reservieren -> kein Layout-Sprung beim Laden */
}
.nav__links {
  display: none;
  gap: 26px;
  margin: 0 auto;
}
.nav__links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--brown-800);
  font-size: 0.98rem;
}
.nav__links a:hover {
  color: var(--gold-400);
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.nav__social {
  display: none;
  color: var(--brown-700);
}
.nav__social:hover {
  color: var(--gold-400);
}
/* Burger (nur mobil sichtbar) */
.nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-700);
  cursor: pointer;
  padding: 4px;
}
/* Mobile: Menü als Dropdown unter dem Header, per Checkbox aufgeklappt */
.nav__toggle:checked ~ .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--sand-200);
  box-shadow: var(--shadow);
  padding: 12px 20px 16px;
  gap: 4px;
}
.nav__toggle:checked ~ .nav__links a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--sand-200);
  font-size: 1.05rem;
}
.nav__toggle:checked ~ .nav__links a:last-child {
  border-bottom: 0;
}
@media (min-width: 940px) {
  .nav__links {
    display: flex;
  }
  .nav__social {
    display: inline-flex;
  }
  .nav__right {
    margin-left: 0;
  }
  .nav__burger {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* warmer Verlauf links für Lesbarkeit der Headline (wie Referenz) */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(40, 28, 17, 0.92) 0%,
    rgba(45, 32, 20, 0.78) 34%,
    rgba(45, 32, 20, 0.32) 56%,
    rgba(45, 32, 20, 0.05) 74%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px;
  color: #fdf7ee;
}
.hero__logo {
  width: clamp(132px, 16vw, 188px);
  height: auto;
  aspect-ratio: 1 / 1; /* Höhe vorab reservieren -> kein Layout-Sprung im Hero beim Laden */
  margin: 0 0 22px;
  background: rgba(251, 247, 240, 0.94);
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}
.hero__claim {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}
.hero__sub {
  font-size: clamp(1.1rem, 2.3vw, 1.5rem);
  margin: 0 0 28px;
  font-weight: 500;
  color: #f3e6d4;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero__cta .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}
.hero__cta .btn--ghost:hover {
  background: #fff;
  color: var(--brown-900);
}
.hero__addr {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: #f3e6d4;
  max-width: 640px;
}
.hero__addr .ic {
  width: 1.5em;
  height: 1.5em;
  margin-top: 2px;
  color: var(--gold-400);
}
.hero__addr strong {
  color: #fff;
}
.hero__addr-link {
  display: block;
  color: #fff;
  text-decoration: none;
}
.hero__addr-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero__addr-note {
  display: block; /* auf Desktop einzeilig (breite Box); auf Mobile bricht es automatisch um */
}
.hero__badge {
  position: absolute;
  z-index: 3;
  right: clamp(16px, 5vw, 84px);
  top: 50%;
  transform: translateY(-50%);
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--brown-700);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.4);
  line-height: 1.25;
}
.hero__badge em {
  font-style: normal;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero__badge strong {
  font-family: var(--serif);
  font-size: 1.45rem;
}
@media (max-width: 720px) {
  /* stärkerer, vertikaler Verlauf für Lesbarkeit auf schmalen Screens */
  .hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(40, 28, 17, 0.55) 0%,
      rgba(42, 30, 18, 0.55) 45%,
      rgba(40, 28, 17, 0.82) 100%
    );
  }
  .hero__badge {
    width: 96px;
    height: 96px;
    right: 14px;
    top: 18px;
    transform: none;
  }
  .hero__badge strong {
    font-size: 1.1rem;
  }
  .hero__badge em {
    font-size: 0.72rem;
  }
}

/* ---------- Faktenleiste ---------- */
.facts-wrap {
  max-width: var(--maxw);
  margin: -42px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}
.facts {
  list-style: none;
  margin: 0;
  padding: 22px 20px;
  background: var(--paper);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.facts li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 16px 16px;
  border-right: 1px solid var(--sand-200);
}
.facts li:last-child {
  border-right: 0;
}
.facts .ic {
  width: 32px;
  height: 32px;
  color: var(--gold-400);
  margin-bottom: 4px;
}
.facts__k {
  font-weight: 700;
  color: var(--brown-900);
  font-size: 1.25rem;
}
.facts__v {
  color: var(--brown-500);
  font-size: 1.15rem;
}
@media (max-width: 600px) {
  .facts {
    grid-template-columns: 1fr;
  }
  .facts li {
    border-right: 0;
    border-bottom: 1px solid var(--sand-200);
    padding-bottom: 16px;
  }
  .facts li:last-child {
    border-bottom: 0;
  }
}

/* ---------- Sektionen ---------- */
.section {
  padding: 56px 0;
}
.section--alt {
  background: var(--cream-100);
  border-top: 1px solid var(--sand-200);
  border-bottom: 1px solid var(--sand-200);
}
.section--paper {
  background: var(--paper);
}
/* Catering + Anfrage: eine durchgehende Cream-Fläche ohne Trennlinie */
#catering.section--alt {
  border-bottom: none;
}
#anfrage.section--alt {
  border-top: none;
}
/* 2-Stufen-Textsystem: eine Größe (1.15rem) + eine Farbe (brown-800),
   bold als einzige Hervorhebung. Serife bleibt nur für große Headlines. */
.overline {
  text-align: center;
  color: var(--brown-800);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.display {
  text-align: center;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin: 0 0 36px;
}
.display--sm {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}
.section__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.15rem;
  color: var(--brown-800);
}

/* ---------- Grids / Karten ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Info-Bereich: Karten (Vorbeikommen / Specials / Öffnungszeiten) */
.info-cards {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Special-Karte (rot) */
.info-card--special {
  position: relative;
}
/* Höhere Spezifität nötig, weil .info-card border shorthand nachfolgt */
.info-card.info-card--special {
  border-color: #c8102e;
  box-shadow: 0 0 0 2px #c8102e, 0 6px 28px rgba(200,16,46,.15), var(--shadow);
}
.info-card.info-card--special .info-card__title {
  color: #c8102e;
}
.info-card__icon--special svg path {
  fill: #c8102e;
  stroke: none;
}
.info-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #c8102e;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(200,16,46,.4);
}
.info-card__icon--special {
  background: #fff0f2;
  color: #c8102e;
}
.specials-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 10px;
  text-align: left;
  width: 100%;
}
.specials-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-weight: 700;
  color: var(--brown-900);
  font-size: 1.25rem;
}
.specials-list .ic {
  color: #c8102e;
  flex-shrink: 0;
}
.info-card {
  background: var(--paper);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.info-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--brown-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.info-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-card__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--brown-900);
  margin: 0 0 14px;
}
.info-card__lead {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--brown-900);
}
.info-card .muted {
  margin-top: 52px;
  margin-bottom: 16px;
}
.info-card--special .muted {
  margin-top: 67px;
}
.info-card .info-card__btn {
  margin-top: auto;
}
.info-card--special .info-card__btn {
  margin-top: 8px;
}
.countdown__wrap {
  width: 100%;
}
.countdown__wrap .info-card__btn {
  margin-top: 12px;
}
/* Öffnungszeiten */
.hours__days {
  margin: 0;
  color: var(--brown-500);
}
.hours__time {
  margin: 2px 0 16px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brown-900);
}
/* Hinweis im freien Block der Öffnungszeiten-Karte – zentriert, gleiche Schrift */
.hours-note {
  margin-top: 52px;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--brown-800);
}
.info-card__spacer {
  flex: 1;
}
.hours-note--highlight {
  font-weight: 700;
  color: var(--gold-600, var(--gold-400));
  background: var(--cream-100);
  border: 1.5px solid var(--gold-400);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 12px;
  margin-bottom: 16px;
  width: 100%;
}
.period-btn {
  margin-top: 8px !important;
  cursor: default;
  opacity: 1 !important;
  pointer-events: none;
}
.hours-note a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hours-note a:hover {
  color: var(--gold-400);
}
.info-card .dates {
  width: 100%;
  text-align: left;
  border-top: 1px solid var(--sand-200);
  margin: 0;
  padding-top: 6px;
}
.period {
  width: 100%;
  margin-top: auto; /* unten bündig – auf einer Linie mit den Buttons der anderen Karten */
  padding-top: 16px;
  border-top: 1px dashed var(--sand-200);
}
.period__range {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 2px;
  font-weight: 700;
  color: var(--brown-900);
}
.period__range .ic {
  color: var(--gold-400);
}
.period__label {
  margin: 0;
  color: var(--gold-400);
  font-weight: 600;
}
/* Abschlusszeile unter den Info-Karten */
.infos__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 36px auto 0;
  color: var(--brown-500);
  font-size: 1.1rem;
  text-align: center;
}
.infos__tagline .ic {
  width: 1.35em;
  height: 1.35em;
  color: var(--gold-400);
  flex: none;
}
.card {
  background: var(--paper);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 1.45rem;
}
.card h3 .ic {
  color: var(--gold-400);
}
.lead {
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--brown-900);
}
.addr-link {
  color: var(--brown-900);
  text-decoration: none;
}
.addr-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--brown-700);
}
.muted {
  color: var(--brown-800);
  font-size: 1.15rem;
  margin-top: 0;
}
.btn--block {
  margin-top: 16px;
}

.dates {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.dates li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--sand-200);
}
.dates li:last-child {
  border-bottom: 0;
}
.dates span {
  color: var(--brown-500);
}
.dates strong {
  color: var(--brown-900);
}

.map-preview {
  display: block;
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--sand-200);
  line-height: 0;
}
.map-preview svg {
  width: 100%;
  height: 120px;
}

/* Karte C – Vorbestellen */
.card--order {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card--order h3 {
  justify-content: center;
}
.order__qr {
  border: 1px solid var(--sand-200);
  border-radius: 12px;
  padding: 8px;
  background: #fff;
  margin: 6px auto 20px;
}
.order__link {
  margin-top: 12px;
  font-weight: 600;
  color: var(--brown-500);
  text-decoration: none;
  font-size: 0.95rem;
}
.order__link:hover {
  color: var(--brown-700);
}

/* ---------- Story / Konzept ---------- */
.story {
  text-align: left;
}
.story__text {
  margin: 0 0 14px;
  font-size: 1.15rem;
  color: var(--brown-800);
}
.story__lead {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown-800);
}

/* ---------- Produkte (3 große Karten) ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.products--4 {
  grid-template-columns: repeat(4, 1fr);
}
.product-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-card__media {
  width: 100%;
  aspect-ratio: 2 / 1; /* Landscape – zeigt das ganze belegte Brot */
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}
.product-card__cap {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown-800);
  text-align: center;
  padding: 18px 12px 22px;
}
.gallery__caption {
  text-align: center;
  margin: 32px auto 0;
  font-size: 1.15rem;
  color: var(--brown-800);
  max-width: 820px; /* breit genug für eine Zeile auf Desktop; Mobile bricht automatisch um */
}
@media (max-width: 880px) {
  .products {
    grid-template-columns: repeat(2, 1fr); /* Tablet: Umbruch erlaubt */
  }
}
@media (max-width: 560px) {
  .products {
    grid-template-columns: 1fr; /* Mobile: untereinander */
  }
  .product-card__media {
    aspect-ratio: 2 / 1;
  }
}

/* ---------- Über die Brotfee (zweispaltig) ---------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.about__text .overline,
.about__text .display {
  text-align: left;
}
.about__text .display {
  margin-bottom: 18px;
}
.about__text p {
  margin: 0 0 14px;
  font-size: 1.15rem;
  color: var(--brown-800);
}
.about__text .btn {
  margin-top: 10px;
}
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 760px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about__media {
    order: -1; /* auf Mobile Porträt zuerst – persönlicher Einstieg */
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ---------- Catering (kompakt, Prio 2) ---------- */
.catering-compact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 30px;
  background: var(--paper);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px 30px;
}
.catering-compact__body {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.catering-compact__icon {
  width: 40px;
  height: 40px;
  color: var(--gold-400);
  flex: none;
  margin-top: 2px;
}
.catering-compact__title {
  margin: 0 0 6px;
  font-size: 1.55rem;
}
.catering-compact__text {
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--brown-800);
}
.catering-compact__body .btn {
  margin-top: 14px;
}
.catering-compact__media {
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 220px;
}
.catering-compact__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 760px) {
  .catering-compact {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .catering-compact__media {
    max-height: 180px;
  }
  .catering-compact__media img {
    height: 180px;
  }
}

/* ---------- Formular ---------- */
.form {
  background: var(--paper);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.form__row {
  margin-bottom: 16px;
}
.form__grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 560px) {
  .form__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--brown-800);
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sand-200);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: var(--text);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--gold-400);
  outline-offset: 1px;
}
.form textarea {
  resize: vertical;
}
.form__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 20px;
  font-size: 0.95rem;
}
.form__check input {
  width: auto;
  margin-top: 4px;
}
.form__status {
  margin: 14px 0 0;
  font-weight: 600;
  min-height: 1.2em;
}
.form__status.is-ok {
  color: #2e7d32;
}
.form__status.is-error {
  color: #b3261e;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--brown-900);
  color: #e9ddca;
  padding: 44px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(233, 221, 202, 0.18);
}
.footer__col p {
  margin: 0;
  line-height: 1.7;
}
.footer__logo {
  height: 56px;
  width: auto;
  background: var(--paper);
  border-radius: 50%;
  padding: 7px;
  margin-bottom: 10px;
}
.footer__brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.footer__h {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold-400);
}
.footer__muted {
  color: #e9ddca; /* gleiche volle Footer-Textfarbe wie Adresse/Öffnungszeiten – Inhaltszeilen einheitlich */
}
/* Footer-Adresse als echter Link – verhindert iOS-Auto-Linkifizierung (Springen) */
.footer__addr {
  color: inherit;
  text-decoration: none;
}
.footer__addr:hover {
  color: var(--gold-400);
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e9ddca;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
}
.footer__social a:hover {
  color: var(--gold-400);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  color: #e9ddca;
  text-decoration: none;
  font-weight: 600;
}
.footer__legal a:hover {
  color: var(--gold-400);
}
.footer__copy {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(233, 221, 202, 0.7);
}
@media (max-width: 820px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Speisekarte – aktiver Nav-Link ---------- */
.nav__links a.is-active {
  color: var(--gold-400);
  font-weight: 700;
}

/* ---------- Speisekarte – Hero (vollflächig, Brot zentral) ---------- */
.menu-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0;
}
.menu-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.menu-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.menu-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(40, 28, 17, 0.92) 0%,
    rgba(45, 32, 20, 0.78) 34%,
    rgba(45, 32, 20, 0.32) 56%,
    rgba(45, 32, 20, 0.05) 74%
  );
}
.menu-hero__inner {
  position: relative;
  z-index: 2;
}
.menu-hero__headline {
  text-align: left;
  color: #fff;
  margin-bottom: 18px;
}
.menu-hero__lead {
  font-size: 1.15rem;
  color: #f0e4d0;
  margin: 0 0 20px;
  line-height: 1.65;
  max-width: 540px;
}
.menu-hero__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(240, 228, 208, 0.9);
  margin: 0;
  font-size: 1rem;
}
.menu-hero__note .ic {
  color: var(--gold-400);
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linejoin: round;
}
@media (max-width: 600px) {
  .menu-hero {
    min-height: 480px;
    padding: 52px 0;
  }
  .menu-hero__media::after {
    background: linear-gradient(
      180deg,
      rgba(35, 24, 14, 0.70) 0%,
      rgba(35, 24, 14, 0.30) 50%,
      rgba(35, 24, 14, 0.55) 100%
    );
  }
  .menu-hero__headline {
    text-align: left;
  }
  .menu-hero__lead {
    text-align: left;
    max-width: 100%;
  }
  .menu-hero__note {
    display: flex;
    justify-content: flex-start;
  }
}

/* ---------- Speisekarte – Kategorie-Reihen (stacked: Bild oben, Text unten) ---------- */
.menu {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.menu-row {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.menu-row__img {
  width: 100%;
  flex-shrink: 0;
}
.menu-row__img img {
  width: 100%;
  height: auto;
  display: block;
}
.menu-cat {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.menu-cat__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.menu-cat__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.menu-cat__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-cat__icon--meat {
  background: #f5e6d8;
  color: var(--brown-700);
}
.menu-cat__icon--veg {
  background: #e8f0e4;
  color: #4a7c48;
}
.menu-cat__icon--sweet {
  background: #faecd4;
  color: var(--gold-400);
}
.menu-cat__icon--specials {
  background: #f0eadd;
  color: var(--gold-400);
}
.menu-cat__title {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--brown-900);
  margin: 0 0 4px;
}
.menu-cat__sub {
  color: var(--brown-500);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--sand-200);
}
.menu-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.menu-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.menu-list li strong {
  color: var(--brown-900);
  font-weight: 700;
  font-size: 1.02rem;
}
.menu-list li span {
  color: var(--brown-500);
  font-size: 0.93rem;
}
.menu-badge--soon {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 9px;
  border: 1px solid var(--gold-400);
  border-radius: 999px;
  background: var(--cream-100);
  color: var(--gold-600, var(--gold-400));
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  vertical-align: middle;
}
.menu-price {
  display: block;
  margin-top: 5px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown-700, #6b4c2a);
  letter-spacing: 0.01em;
}
@media (max-width: 560px) {
  .menu-cat {
    padding: 24px 20px;
  }
}

/* ---------- Speisekarte – Kacheln (Getränke / Specials / Wunsch) ---------- */
.menu-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.menu-tiles--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.tile {
  background: var(--paper);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tile__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--brown-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex: none;
}
.tile__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tile__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--brown-900);
  margin: 0 0 10px;
}
.tile__text {
  color: var(--brown-800);
  font-size: 1rem;
  margin: 0;
  line-height: 1.55;
  flex: 1;
}
.tile .btn {
  margin-top: 20px;
  width: 100%;
}
@media (min-width: 500px) and (max-width: 820px) {
  .menu-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 499px) {
  .menu-tiles {
    grid-template-columns: 1fr;
  }
}

/* ---------- Speisekarte – Fisch-Icon, Nusskrokant, Reverse-Row, Footnote ---------- */
.menu-cat__icon--fish {
  background: #dceef0;
  color: #2e6e6e;
}
.menu-row--reverse {
  direction: rtl;
}
.menu-row--reverse > * {
  direction: ltr;
}
.nut-badge {
  display: inline-block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  background: #f5e8c0;
  color: #7a5c1e;
  border-radius: 4px;
  padding: 1px 6px;
  vertical-align: middle;
  margin-left: 4px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.menu-cat__footnote {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--brown-500);
  line-height: 1.5;
}
@media (max-width: 820px) {
  .menu-row--reverse {
    direction: ltr;
  }
}

/* ---------- Startseite – Produkte CTA-Link ---------- */
.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.products__cta {
  text-align: center;
  margin-top: 28px;
}

/* ---------- Legal-Seiten ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.legal h1 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}
.legal h2 {
  font-size: 1.25rem;
  margin-top: 32px;
}
.legal a.back {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 600;
}

/* ---------- Vorbestellen – Countdown bis Eröffnung ---------- */
.countdown__intro {
  margin: 53px 0 0;
  font-weight: 600;
  color: var(--brown-700);
}
.countdown {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  width: 100%;
  margin: 10px 0 10px;
}
.countdown--days {
  justify-content: center;
}
.countdown--days .countdown__item {
  flex: 0 0 auto;
  min-width: 120px;
  padding: 14px 24px;
}
.countdown--days .countdown__num {
  font-size: 2.4rem;
}
.countdown__item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 9px 6px;
  background: var(--cream-100);
  border: 1px solid var(--sand-200);
  border-radius: 12px;
}
.countdown__num {
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brown-900);
  font-variant-numeric: tabular-nums;
}
.countdown__lbl {
  margin-top: 5px;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-500);
}
.countdown__cap {
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: var(--brown-500);
}
.countdown.is-live .countdown__num {
  color: var(--gold-400);
}

/* ---------- Brot-Story (NICHT VERÖFFENTLICHT – wartet auf Foto) ---------- */
.brot-story__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  margin-top: 32px;
}
.brot-story__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brot-story__media img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.brot-story__media img:first-child {
  aspect-ratio: 4 / 3;
}
.brot-story__media-second {
  aspect-ratio: 3 / 4;
}
.brot-story__text p {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: var(--brown-800);
}
.brot-story__sub {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--brown-700);
  margin: 28px 0 10px;
}
.brot-story__sub:first-child {
  margin-top: 0;
}
.brot-story__beat {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown-900);
  padding: 4px 0 4px 14px;
  border-left: 3px solid var(--gold-400);
  margin: 18px 0 18px !important;
}
@media (max-width: 760px) {
  .brot-story__layout {
    grid-template-columns: 1fr;
  }
  .brot-story__media {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Specials: Hinweis auf weitere Specials + Wunsch-Aufruf */
.menu-cat__more {
  margin: 16px 0 0;
  font-weight: 600;
  color: var(--gold-400);
}

/* ── Specials Sub-Sektionen (Aktuell / In Planung) ── */
.specials-sub {
  padding: 20px 0;
  border-top: 1px solid var(--sand-200);
}
.specials-sub:first-of-type {
  border-top: none;
  padding-top: 0;
}
.specials-sub__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.specials-sub__title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown-900);
  margin: 0;
}
.specials-sub__badge {
  display: inline-block;
  background: #c8102e;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(200,16,46,.3);
}
.specials-sub__badge--muted {
  background: var(--sand-200);
  color: var(--brown-500);
  box-shadow: none;
}
.specials-sub__badge--soon {
  background: #e08a1e;
  color: #fff;
  box-shadow: 0 2px 8px rgba(224,138,30,.35);
}
.specials-sub__note {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: #c8102e;
  font-weight: 600;
}
.menu-list--planned {
  opacity: 0.5;
}
.menu-list--current li strong {
  color: var(--brown-900);
}

/* ===================== KÜCHE-GESCHLOSSEN-POPUP ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--cream-50, #fdf8f3);
  border-radius: 14px;
  padding: 40px 28px 28px;
  max-width: 400px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 48px rgba(0, 0, 0, 0.22);
}
.news-popup__badge {
  position: absolute;
  top: -18px;
  left: -14px;
  background: #c8102e;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 8px 16px 10px;
  border-radius: 10px 10px 10px 0;
  transform: rotate(-9deg);
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.4);
  letter-spacing: 0.02em;
}
.modal__body.news-popup__body .news-popup__label {
  color: #c8102e;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown-400, #a07850);
  padding: 4px;
  line-height: 1;
}
.modal__close:hover { color: var(--brown-900, #2d1a0a); }
.modal__icon {
  color: var(--gold-400, #c8813a);
  margin-bottom: 14px;
}
.modal__title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brown-900, #2d1a0a);
}
.modal__body {
  color: var(--brown-700, #6b4a2b);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.97rem;
}
.modal__body strong { color: var(--brown-900, #2d1a0a); }
.modal__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================================
   INSTAGRAM CAROUSEL (.iz-*)
   ===================================================================== */
.iz-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.iz-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.iz-head__left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.iz-ig-icon {
  color: var(--brown-700);
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.iz-overline {
  font-size: 0.8rem;
  color: var(--brown-500);
  margin: 0 0 2px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.iz-title {
  font-size: 1.35rem;
  color: var(--brown-900);
  margin: 0;
  font-weight: 600;
}
.iz-follow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brown-700);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.18s;
}
.iz-follow:hover { background: var(--brown-900); color: #fff; }
.iz-head__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.iz-nav {
  display: flex;
  gap: 8px;
}
.iz-nav__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--brown-300);
  background: var(--paper);
  color: var(--brown-700);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, opacity 0.15s;
  flex-shrink: 0;
}
.iz-nav__btn:hover:not(:disabled) { background: var(--sand-200); }
.iz-nav__btn:disabled { opacity: 0.3; cursor: default; }
.iz-scroll-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 24px;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  max-width: var(--maxw);
  margin-inline: auto;
  scrollbar-width: none;            /* native Scrollbar aus – eigener Indikator unten */
}
.iz-scroll-wrap::-webkit-scrollbar { display: none; }
/* Eigener Positions-Indikator: volle (zentrierte) Breite, wandernder Balken */
.iz-progress {
  max-width: var(--maxw);
  margin: 10px auto 0;
  padding: 9px 24px;            /* vertikaler Klick-/Greifbereich */
  cursor: pointer;
  touch-action: none;          /* horizontales Ziehen ohne Seiten-Scroll */
  user-select: none;
}
.iz-progress__bar {
  position: relative;
  height: 5px;
  border-radius: 999px;
  background: var(--sand-200);
}
.iz-progress__thumb {
  position: absolute;
  top: 0;
  height: 100%;
  min-width: 32px;
  border-radius: 999px;
  background: var(--brown-500);
  transition: left 0.05s linear;
}
.iz-track {
  display: flex;
  gap: 24px;
  padding-inline: 24px;
  width: max-content;
  padding-bottom: 4px;
}
.iz-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  width: 228px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  /* Fallback-Breite: exakt 4 Kacheln ins sichtbare Fenster.
     Fenster = min(100vw, --maxw); minus 2×24px Innenabstand + 3×24px Gap = 120px.
     JS verfeinert das live aus der echten Containerbreite (ohne Scrollbar). */
  .iz-card {
    width: calc((min(100vw, var(--maxw)) - 120px) / 4);
  }
}
.iz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.iz-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand-200);
}
.iz-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.iz-card:hover .iz-thumb img {
  transform: scale(1.04);
}
/* Einheitlicher Video-Play-Button (nur Video-Kacheln; überdeckt die
   uneinheitlich eingebrannten Instagram-Buttons) */
.iz-card--video .iz-thumb::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: rgba(20, 14, 8, 0.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 55% center;
  background-size: 44%;
  pointer-events: none;
}
.iz-meta {
  padding: 10px 14px 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--brown-500);
  min-height: 36px;
}
.iz-label {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--brown-800);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Unsere-Story-Teaser (Startseite, über dem Instagram-Slider) ---------- */
.story-teaser { text-align: center; }
.story-teaser__lead {
  max-width: 58ch;
  margin: 12px auto 26px;
  color: var(--brown-700);
  font-size: 1.05rem;
}
