/* ============================================================
   COMPONENTS — Chrome (Header/Nav/Footer), Buttons, Hero.
   Übersetzt aus den Inline-Styles des Designs in Klassen.
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 24px; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  text-decoration: none; border: none; border-radius: var(--radius-pill);
  cursor: pointer; transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.btn--primary { background: var(--color-primary); color: var(--color-on-primary); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--color-primary-hover); }
.btn--secondary { background: var(--color-secondary); color: var(--color-on-secondary); }
.btn--ghost { background: transparent; color: currentColor; border: 1px solid color-mix(in srgb, currentColor 38%, transparent); }
.btn--ghost:hover { border-color: currentColor; }
.btn--lg { min-height: 54px; padding: 0 30px; font-size: 17px; font-weight: 800; }
.btn--sm { min-height: 44px; padding: 0 22px; font-size: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 14px;
}
.brand { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; }
.brand img { height: 56px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--color-border); border-radius: var(--radius-pill);
  color: var(--color-text); cursor: pointer; font-size: 18px;
}
.header-cta { display: none; }
.burger {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 18px;
  background: var(--color-secondary); color: var(--color-on-secondary); border: none;
  border-radius: var(--radius-pill); cursor: pointer; font-weight: 700; font-size: 15px;
}
.burger__lines { display: inline-flex; flex-direction: column; gap: 4px; width: 20px; }
.burger__lines span { height: 2px; background: currentColor; border-radius: 2px; }

@media (min-width: 861px) {
  .header-cta { display: inline-flex; }
}

/* ---------- Off-Canvas-Navigation ---------- */
.nav-scrim {
  position: fixed; inset: 0; z-index: 110; background: rgba(15,22,22,.5);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.nav-scrim.is-open { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
  width: min(380px, 88vw); background: var(--color-bg);
  border-left: 1px solid var(--color-border); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateX(105%); visibility: hidden;
  transition: transform .35s cubic-bezier(.4,0,.2,1), visibility .35s;
}
.nav-drawer.is-open { transform: translateX(0); visibility: visible; }
.nav-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; border-bottom: 1px solid var(--color-border);
}
.nav-drawer__head h2 { font-family: var(--font-heading); font-size: 24px; }
.nav-close {
  width: 44px; height: 44px; border: 1px solid var(--color-border); background: transparent;
  border-radius: var(--radius-pill); color: var(--color-text); font-size: 22px; cursor: pointer; line-height: 1;
}
.nav-list { list-style: none; margin: 0; padding: 18px 16px; display: flex; flex-direction: column; gap: 4px; }
.nav-list a {
  display: flex; align-items: center; gap: 14px; min-height: 52px; padding: 0 18px;
  border-radius: var(--radius-md); text-decoration: none; color: var(--color-text);
  font-size: 19px; font-weight: 600;
}
.nav-list a:hover { background: var(--color-primary-soft); color: var(--color-primary); }
.nav-list .num { font-family: var(--font-heading); font-size: 15px; color: var(--color-primary); width: 24px; }
.nav-drawer__foot { margin-top: auto; padding: 24px 28px; border-top: 1px solid var(--color-border); }
.nav-drawer__foot p { margin: 16px 0 0; font-size: 14px; color: var(--color-text-muted); }
.nav-drawer__foot a.tel { color: var(--color-primary); font-weight: 700; text-decoration: none; }

/* ---------- Mobile: Öffnungszeiten-Schnellleiste ---------- */
.hours-quick {
  display: none; position: sticky; top: 85px; z-index: 80;
  align-items: center; gap: 10px; padding: 10px 18px;
  background: var(--color-surface); border-bottom: 1px solid var(--color-border); font-size: 14px;
}
.hours-quick .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.hours-quick .today { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hours-quick .all { margin-left: auto; flex-shrink: 0; color: var(--color-primary); font-weight: 700; text-decoration: none; font-size: 13px; }

/* ---------- Mobile: App-Tab-Leiste (Anker zu den Sektionen) ---------- */
.bottomnav {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent); backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-border);
  padding: 6px 6px calc(6px + env(safe-area-inset-bottom)); justify-content: space-around; align-items: stretch;
}
.bottomnav a {
  flex: 1; min-height: 56px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; text-decoration: none; color: var(--color-text-muted); font-weight: 700;
}
.bottomnav a .ic { font-size: 20px; line-height: 1; }
.bottomnav a .lb { font-size: 10.5px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-secondary); color: var(--color-on-secondary); }
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px;
  padding-block: clamp(56px, 8vw, 88px);
}
.site-footer h2 { font-family: var(--font-heading); font-size: 22px; margin-bottom: 16px; }
.site-footer img.logo { height: 48px; width: auto; background: #fff; padding: 8px 12px; border-radius: var(--radius-sm); }
.site-footer p, .site-footer address, .site-footer dl { color: color-mix(in srgb, var(--color-on-secondary) 82%, transparent); font-size: 15px; }
.site-footer address { font-style: normal; line-height: 1.8; }
.site-footer dl > div { display: flex; justify-content: space-between; gap: 10px; }
.site-footer a { color: var(--color-on-secondary); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid color-mix(in srgb, var(--color-on-secondary) 28%, transparent);
  border-radius: var(--radius-pill); text-decoration: none; font-weight: 700;
}
.footer-social a:hover { background: var(--color-primary); border-color: var(--color-primary); }
.footer-bottom {
  padding-block: 24px; border-top: 1px solid color-mix(in srgb, var(--color-on-secondary) 18%, transparent);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px;
  color: color-mix(in srgb, var(--color-on-secondary) 70%, transparent);
}
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a { text-decoration: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--color-secondary); color: var(--color-on-secondary); }
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .10; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, var(--color-primary) 0 2px, transparent 2px 22px);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 48px; align-items: center;
  padding-block: clamp(64px, 10vw, 120px);
}
.hero__content { min-width: 0; }  /* verhindert Grid-Overflow durch lange Headline */
.hero h1 { overflow-wrap: anywhere; }  /* 'anywhere' wirkt auf min-content → kein Grid-Blowout */
.hero__eyebrow {
  display: inline-block; padding: 7px 16px; border-radius: var(--radius-pill);
  border: 1px solid color-mix(in srgb, var(--color-on-secondary) 30%, transparent);
  color: var(--color-on-secondary);
}
.hero h1 {
  font-size: clamp(44px, 7vw, 84px); line-height: 1.02; margin: 22px 0 18px; color: var(--color-on-secondary);
}
.hero h1 .hl { color: var(--color-primary); font-style: italic; }
[data-theme="dark"] .hero h1 .hl { color: #E879C4; }
.hero__sub {
  font-size: clamp(17px, 2.1vw, 21px); max-width: 46ch; margin: 0 0 32px;
  color: color-mix(in srgb, var(--color-on-secondary) 82%, transparent);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media { aspect-ratio: 4/5; box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__media { display: none; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .hours-quick { display: flex; }
  .bottomnav { display: flex; }
  body { padding-bottom: 72px; }
}
@media (max-width: 520px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero h1 { font-size: clamp(32px, 9vw, 40px); }
  .hero__cta { width: 100%; flex-direction: column; align-items: stretch; }
  .footer-bottom span { overflow-wrap: anywhere; }
}

/* ============================================================
   SPEISE-/WOCHENKARTE (gastro_speisekarte)
   ============================================================ */
.sec-head { margin-bottom: 36px; }
.sec-head--center { text-align: center; margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(34px, 5vw, 52px); margin-top: 8px; }
.sec-head .eyebrow { display: block; }

/* Umschalter (Segmented control) — zentrierte Pille, die die zwei Buttons umschließt */
.seg {
  display: flex; width: max-content; max-width: 100%; margin: 28px auto 40px;
  padding: 5px; gap: 4px;
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-pill);
}
/* gilt für alle Umschalter — auch die Checkout-Buttons (data-typ/data-zahlart), die kein .seg__btn tragen */
.seg__btn,
.seg > button {
  min-height: 44px; padding: 0 26px; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  background: transparent; color: var(--color-text-muted); border-radius: var(--radius-pill);
  transition: background .2s, color .2s, box-shadow .2s; white-space: nowrap;
}
.seg__btn.is-active,
.seg > button.is-active {
  background: var(--color-primary); color: var(--color-on-primary); font-weight: 800;
  box-shadow: 0 2px 10px rgba(142, 36, 115, .35);
}

/* Wochenkarte */
.week-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.week-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 24px; }
.week-card h3 { font-size: 24px; color: var(--color-primary); margin-bottom: 4px; }
.week-card__date { margin: 0 0 16px; font-size: 13px; color: var(--color-text-muted); font-weight: 700; }
.dish-list, .item-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.dish-list { gap: 12px; }
.dish { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.dish__name { font-size: 15px; line-height: 1.4; }
.dish__codes { color: var(--color-text-muted); font-size: 13px; }
.dish__price { font-weight: 800; white-space: nowrap; }

/* Speisekarte (Kategorien) */
.menu-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.menu-cat { break-inside: avoid; }
.menu-cat__title { font-size: 30px; margin: 0 0 6px; display: flex; align-items: center; gap: 14px; }
.menu-cat__title .rule { flex: 1; height: 1px; background: var(--color-border); }
.menu-cat__desc { margin: 0 0 8px; color: var(--color-text-muted); font-size: 14px; }
.item-list { gap: 18px; margin-top: 18px; }
.item__head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.item__name { font-weight: 700; font-size: 17px; }
.item__price { font-weight: 800; font-size: 17px; white-space: nowrap; }
.item__desc { margin: 4px 0 0; color: var(--color-text-muted); font-size: 14px; line-height: 1.5; }
.item__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
/* Gericht mit Foto: Thumbnail links, Text rechts (ohne Foto unverändert). */
.item--has-media { display: flex; gap: 14px; align-items: flex-start; }
.item--has-media .item__body { flex: 1 1 auto; min-width: 0; }
.item__media { flex: 0 0 auto; width: 104px; }
.item__media img { width: 104px; height: 78px; object-fit: cover; border-radius: 12px; display: block; }
.tag {
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--radius-pill);
  background: var(--color-primary-soft); color: var(--color-primary);
}
.tag--vegan, .tag--vegetarisch, .tag--glutenfrei, .tag--laktosefrei { background: #E3F3EA; color: #1F8A5B; }
.tag--scharf { background: #FBE4E4; color: #B23A48; }
[data-theme="dark"] .tag--vegan, [data-theme="dark"] .tag--vegetarisch,
[data-theme="dark"] .tag--glutenfrei, [data-theme="dark"] .tag--laktosefrei { background: #16332540; color: #5FCB92; }
[data-theme="dark"] .tag--scharf { background: #3a1f2440; color: #E8889A; }

/* Legende + Leerzustand */
.menu-legend { margin: 36px auto 0; max-width: 70ch; text-align: center; font-size: 13px; color: var(--color-text-muted); line-height: 1.7; }
.menu-empty { text-align: center; color: var(--color-text-muted); padding: 24px 0; }

@media (max-width: 520px) {
  .menu-cats { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   AKTUELLES & TERMINE (gastro_events)
   ============================================================ */
.sec-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.sec-head--split h2 { font-size: clamp(34px, 5vw, 52px); margin-top: 8px; }
.sec-head__lead { margin: 0; max-width: 42ch; color: var(--color-text-muted); font-size: 16px; line-height: 1.6; }

.events-grid { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.event-card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-card__head { display: flex; align-items: center; gap: 12px; }
.event-date {
  flex-shrink: 0; width: 62px; height: 62px; border-radius: var(--radius-md);
  background: var(--color-primary-soft); color: var(--color-primary);
  display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;
}
.event-date .d { font-size: 22px; font-weight: 800; }
.event-date .m { font-size: 12px; font-weight: 700; text-transform: uppercase; }
.event-badge {
  font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--color-primary); background: var(--color-primary-soft);
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.event-badge.is-soldout { color: var(--color-text-muted); background: var(--color-surface-2); }
.event-card h3 { font-size: 25px; margin: 0; }
.event-card p { margin: 0; color: var(--color-text-muted); font-size: 15px; line-height: 1.6; }
.event-time { margin-top: auto; font-size: 14px; font-weight: 700; color: var(--color-text-muted); }

/* ============================================================
   ONLINE-BESTELLUNG / RESERVIERUNG (Website, shop.js)
   ============================================================ */
.shop__loading { color: color-mix(in srgb, var(--color-on-secondary) 75%, transparent); padding: 20px 0; }
.shop-cats { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 18px; }
.shop-cats button { flex: 0 0 auto; min-height: 38px; padding: 0 16px; border-radius: var(--radius-pill); cursor: pointer; font-weight: 700; font-size: 14px; white-space: nowrap;
  background: transparent; color: var(--color-on-secondary); border: 1px solid color-mix(in srgb, var(--color-on-secondary) 35%, transparent); }
.shop-cats button.is-active { background: var(--color-primary); color: var(--color-on-primary); border-color: var(--color-primary); }

/* Produkt-Swiper: max. 3 nebeneinander; mehr → horizontal swipen (mobil 1, Tablet 2) */
.shop-carousel { position: relative; }
.shop-grid {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding-bottom: 10px;
  scrollbar-width: thin; scrollbar-color: color-mix(in srgb, var(--color-on-secondary) 35%, transparent) transparent;
}
.shop-grid > .shop-card { flex: 0 0 calc((100% - 2 * 18px) / 3); scroll-snap-align: start; }
.shop-card { background: var(--color-bg); color: var(--color-text); border-radius: var(--radius-lg); padding: 20px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-md); }
.shop-nav {
  position: absolute; top: calc(50% - 5px); transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center;
  background: var(--color-primary); color: var(--color-on-primary); box-shadow: var(--shadow-md);
}
.shop-nav--prev { left: -8px; }
.shop-nav--next { right: -8px; }
@media (max-width: 900px) { .shop-grid > .shop-card { flex-basis: calc((100% - 18px) / 2); } }
@media (max-width: 600px) {
  .shop-grid > .shop-card { flex-basis: 100%; }
  .shop-nav { display: none; }
}
.shop-card__top h3 { font-size: 19px; }
.shop-card__top p { margin: 6px 0 0; color: var(--color-text-muted); font-size: 14px; line-height: 1.5; }
.shop-card__bot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.shop-card__price { font-weight: 800; font-size: 19px; display: block; }
.shop-card__gp { display: block; font-size: 11px; color: var(--color-text-muted); }

.shop-bar { position: sticky; bottom: 16px; margin-top: 24px; z-index: 5; }
.shop-bar .btn { box-shadow: var(--shadow-lg); }

/* Checkout */
.co-card { background: var(--color-bg); color: var(--color-text); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-md); }
.co-row { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--color-border); }
.co-qty { display: inline-flex; align-items: center; gap: 8px; }
.co-qty button { width: 30px; height: 30px; border-radius: var(--radius-pill); border: 1px solid var(--color-border); background: var(--color-bg); font-size: 16px; cursor: pointer; }
.co-sum { font-weight: 800; white-space: nowrap; }
.co-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 18px; padding-top: 12px; margin-top: 6px; border-top: 1px solid var(--color-border); }
.co-check { display: flex; gap: 10px; align-items: flex-start; margin-top: 12px; font-size: 13px; color: var(--color-text-muted); cursor: pointer; }
.co-check input { margin-top: 2px; width: 20px; height: 20px; flex-shrink: 0; }
.co-check a { color: var(--color-primary); font-weight: 700; }

/* Reservierung */
.reservierung .res-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.res-contact { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.res-contact li { display: flex; gap: 14px; align-items: center; font-size: 16px; }
.res-contact .ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius-pill); background: var(--color-primary-soft); color: var(--color-primary); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.res-contact a { color: var(--color-text); font-weight: 700; text-decoration: none; }
.res-card { background: var(--color-surface); }
.res-ok, .res-no { width: 60px; height: 60px; margin: 0 auto 14px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 30px; }
.res-ok { background: var(--ok, #1F8A5B); } .res-no { background: var(--warn, #B23A48); }

/* Modal (Stripe-Rücksprung) */
.egw-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(15,22,22,.55); display: flex; align-items: center; justify-content: center; padding: 20px; }
.egw-modal { background: var(--color-bg); color: var(--color-text); border-radius: var(--radius-lg); padding: 28px; max-width: 420px; width: 100%; box-shadow: var(--shadow-lg); }
.egw-modal .spinner { width: 34px; height: 34px; border: 3px solid var(--color-border); border-top-color: var(--color-primary); border-radius: 50%; animation: egw-spin .8s linear infinite; margin: 12px auto 16px; }
@keyframes egw-spin { to { transform: rotate(360deg); } }

@media (max-width: 860px) { .reservierung .res-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FORMULARE (Reservierung etc. auf der Website)
   ============================================================ */
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.input, .select, textarea.input {
  width: 100%; min-height: 48px; padding: 12px 14px; font-family: var(--font-body); font-size: 16px;
  color: var(--color-text); background: var(--color-bg); border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
}
.input:focus, .select:focus, textarea.input:focus { outline: none; border-color: var(--color-primary); }
textarea.input { min-height: auto; line-height: 1.5; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.req { color: var(--color-primary); font-weight: 800; }
@media (max-width: 520px) { .row2 { grid-template-columns: 1fr; } }

/* ============================================================
   ANFAHRT & ÖFFNUNGSZEITEN (gastro_anfahrt) + OSM-Karte
   ============================================================ */
.anfahrt-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: stretch; }
.anfahrt-map { display: flex; flex-direction: column; gap: 10px; }
.mapbox { position: relative; min-height: 340px; flex: 1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border);
  background: var(--color-surface-2); background-image: repeating-linear-gradient(45deg, rgba(142,36,115,.12) 0 12px, transparent 12px 24px); }
.mapbox iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.mapbox__prompt { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px; }
.map-hint { margin: 0; font-size: 12px; color: var(--color-text-muted); }
.map-link { font-size: 14px; font-weight: 700; color: var(--color-primary); text-decoration: none; }
.anfahrt-info { display: flex; flex-direction: column; gap: 16px; }
.anfahrt-info .card h3 { font-size: 22px; margin-bottom: 10px; }
.anfahrt-info address { font-style: normal; line-height: 1.8; font-size: 16px; }
.anfahrt-info address a { color: var(--color-primary); font-weight: 700; text-decoration: none; }
.hours-dl { margin: 0; }
.hours-dl > div { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px solid var(--color-border); }
.hours-dl > div:last-child { border-bottom: none; }
.hours-dl dt { color: var(--color-text-muted); }
.hours-dl dd { margin: 0; font-weight: 700; }
.hours-dl dd.closed { color: var(--warn, #B23A48); font-weight: 600; }
@media (max-width: 860px) { .anfahrt-grid { grid-template-columns: 1fr; } }

/* ============================================================
   STANDORTE-ÜBERSICHT (gastro_standorte)
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.loc-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.loc-card__map { min-height: 200px; border: 0; border-radius: 0; }
.loc-card__map.ph { min-height: 200px; }
.loc-card__map iframe { min-height: 200px; }
.loc-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.loc-card__body h3 { font-size: 20px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.loc-card__body address { font-style: normal; line-height: 1.6; color: var(--color-text); }
.loc-card__contact { display: flex; flex-direction: column; gap: 4px; margin: 4px 0; }
.loc-card__contact a { color: var(--color-primary); font-weight: 700; text-decoration: none; font-size: 15px; }
.loc-card__hours { list-style: none; margin: 4px 0; padding: 0; font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }
.loc-card .map-link { font-size: 14px; font-weight: 700; color: var(--color-primary); text-decoration: none; margin-top: 4px; }

/* ============================================================
   NAVIGATION: immer Burger / Off-Canvas — auch auf dem Desktop (Wunsch + Design-Vorlage).
   Kein horizontales Desktop-Menü; der Burger ist auf allen Breiten sichtbar.
   ============================================================ */

/* ============================================================
   GALERIE (gastro_galerie) — „Einblicke / Galerie" aus dem Design
   ============================================================ */
.galerie { background: var(--color-surface); }
.gallery-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.gallery-item { aspect-ratio: 4 / 3; border-radius: var(--radius-md); overflow: hidden; background: var(--color-surface-2); }
.gallery-item figure, .gallery-item picture, .gallery-item img { margin: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item.ph { display: flex; align-items: center; justify-content: center; }

/* ============================================================
   HERO — Variante B: Vollbild (durchgehender Header), aus dem Design
   ============================================================ */
.hero--full { min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero--full::before { content: none; }                    /* Basis-.hero::before deaktivieren */
.hero__media-full { position: absolute; inset: 0; z-index: 0; }
.hero__media-full img, .hero__media-full figure, .hero__media-full picture { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__media-full .ph { width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; }
.hero--full::after {                                       /* Verdunkelung für Lesbarkeit (WCAG AA) */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,22,22,.45) 0%, rgba(15,22,22,.62) 100%);
}
.hero__content--full { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.hero--full h1 { color: #fff; }
.hero--full h1 .hl { color: #E879C4; }
.hero--full .hero__sub { color: rgba(255,255,255,.9); margin-inline: auto; }
.hero__eyebrow--full {
  display: inline-block; margin-bottom: 18px; padding: 7px 16px;
  border: 1px solid rgba(255,255,255,.5); border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff;
}
.hero__cta--center { justify-content: center; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-decoration: none;
}
.hero__scroll span { font-size: 20px; }

/* ============================================================
   HERO-SLIDER (gastro_hero_slider) — Vollbild: rotierende Bilder ODER Video
   ============================================================ */
.hero--slider .hero-slider,
.hero--slider .hero__video,
.hero--slider .hero__media-full { position: absolute; inset: 0; z-index: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slider { overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide figure, .hero-slide picture, .hero-slide img { margin: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   FIXE SOCIAL-LEISTE rechts (Startseite, Desktop) — wie Design (socialPosition: side)
   ============================================================ */
.social-fixed {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%); z-index: 70;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: opacity .4s ease, visibility .4s ease;
}
.social-fixed.is-hidden { opacity: 0; visibility: hidden; }
.social-fixed__label {
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
  font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.social-fixed__line { width: 1px; height: 44px; background: rgba(255,255,255,.4); }
.social-fixed a {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.4); border-radius: 50%;
  transition: background .2s, border-color .2s, color .2s;
}
.social-fixed a:hover { background: var(--color-primary); border-color: var(--color-primary); }
@media (max-width: 1100px) { .social-fixed { display: none; } }

/* ============================================================
   NEUIGKEITEN (gastro_news)
   ============================================================ */
.news-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.news-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card__media { aspect-ratio: 16 / 10; background: var(--color-surface-2); }
.news-card__media figure, .news-card__media picture, .news-card__media img, .news-card__media .ph { margin: 0; width: 100%; height: 100%; object-fit: cover; aspect-ratio: auto; }
.news-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.news-card__body time { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--color-primary); }
.news-card__body h3 { font-size: 20px; }
.news-card__body p { color: var(--color-text-muted); font-size: 15px; line-height: 1.55; }
