/* =========================================================================
   GustoGang · Static-Track TEMPLATE — styles.css
   -------------------------------------------------------------------------
   Design-Tokens sind PLATZHALTER und werden pro Kunde aus DESIGN.md gesetzt.
   Flach, keine Schatten (sofern DESIGN.md nichts anderes sagt). Radius/Farben/
   Fonts unten ersetzen. Grüner Status-Punkt #6FA86B ist die einzige erlaubte
   funktionale Ausnahme (Live-Banner).
   ========================================================================= */

:root {
  /* ---- FARBEN — aus DESIGN.md (Live: pizzeria-primavera-kleve.de) ---- */
  --primary: #b5442f;          /* Terrakotta — Haupt-CTA / Markenfarbe */
  --primary-hover: #98371f;    /* Hover-Zustand Primary (abgeleitet) */
  --secondary: #1d1a15;        /* Espresso — Band-/Akzentton */
  --near-white: #f2efe8;       /* creme Seitenhintergrund */
  --near-black: #1d1a15;       /* Text / dunkler Anker */
  --light-surface: #e7e0d4;    /* creme Flächen-/Card-Ton */
  --dark-surface: #1d1a15;     /* dunkler Flächen-Ton (Bänder) */
  --line: #ddd3c2;             /* abgeleitete Trennlinie */
  --muted: #6e6459;            /* abgeleiteter gedämpfter Text */
  --status-green: #6fa86b;     /* FIX — nur Live-Banner */

  /* ---- GustoGang Brand (FIX, nicht ersetzen) ---- */
  --gg-blue: #201bde;
  --gg-cream: #efe7d9;

  /* ---- Typografie — aus DESIGN.md ---- */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;                    /* Header-Font */
  --font-body: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; /* Body-Font */

  /* ---- Form & Layout — aus DESIGN.md ---- */
  --radius: 14px;              /* Border-Radius (Live: Cards 14 / Ambiente 16) */
  --shadow: 0 22px 46px -30px rgba(0,0,0,.25); /* weicher Bild-Schatten wie Live */
  --hairline: 1px solid rgba(0,0,0,.06);       /* zarte Bildrahmen-Linie wie Live */
  --content-max: 1200px;
  --section-pad: 90px;
}

/* ---- Dark-Mode optional: nur aktivieren, wenn DESIGN.md eine Dark-Palette vorgibt.
   Dann Tokens hier setzen. Standard: single-theme laut DESIGN.md. ---- */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--near-black);
  background: var(--near-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 500; line-height: 1.08; margin: 0; text-wrap: balance; }
a { color: inherit; }
.container { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 24px; }
[id] { scroll-margin-top: 140px; } /* Brand-Band + Sticky-Header Offset */

/* ---- Buttons (flach, Radius aus Token) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .92rem; line-height: 1.2;
  text-transform: uppercase; letter-spacing: .14em;
  text-decoration: none; padding: 16px 30px; border-radius: 6px;
  border: 2px solid transparent; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-secondary { background: transparent; color: currentColor; border-color: currentColor; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* =========================================================================
   GUSTOGANG BRAND-BAND (eigenständig, ganz oben) — FIX
   ========================================================================= */
.gg-band {
  background: var(--gg-blue);
  display: block;
}
.gg-band__inner {
  max-width: var(--content-max); margin: 0 auto; padding: 25px 24px;
  display: flex; align-items: center; justify-content: center;
}
.gg-band__logo { height: 46px; width: auto; display: block; }
@media (max-width: 640px) { .gg-band__logo { height: 34px; } .gg-band__inner { padding: 18px 24px; } }

/* =========================================================================
   HEADER / NAVIGATION (sticky, flach)
   ========================================================================= */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--near-white); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 16px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; color: var(--near-black); text-decoration: none; white-space: nowrap; }
.brand__name { font-family: var(--font-head); font-style: italic; font-weight: 600; font-size: 1.6rem; letter-spacing: -.01em; }
.brand__sub { font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.primary-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.primary-nav > a { text-decoration: none; color: var(--near-black); padding: 8px 12px; border-radius: var(--radius); white-space: nowrap; }
.primary-nav > a:hover { color: var(--primary); }
.primary-nav__cta { color: #fff; padding: 10px 18px; }
.primary-nav__cta:hover { color: #fff; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: transparent; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; }
.nav-toggle__bar { width: 22px; height: 2px; background: var(--near-black); margin: 0 auto; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-header__inner { position: relative; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; background: var(--near-white); border-bottom: 1px solid var(--line); padding: 8px 24px 18px; display: none; }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .primary-nav__cta { text-align: center; margin-top: 10px; border-bottom: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero__media { position: absolute; left: 0; right: 0; top: -20%; height: 140%; z-index: 0; will-change: transform; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,16,12,.78) 0%, rgba(20,16,12,.6) 45%, rgba(20,16,12,.28) 100%); }
.hero__inner { position: relative; z-index: 1; padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.hero__content { max-width: 640px; }
.hero__eyebrow { font-size: .95rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; }
.hero__title { font-size: clamp(2.4rem, 5.2vw, 4rem); margin: 0 0 18px; }
.hero__subline { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,.92); margin: 0 0 32px; max-width: 34em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 640px) { .hero__cta .btn { width: 100%; } }

/* Live-Öffnungs-Banner */
.open-status { display: inline-flex; align-items: center; gap: 10px; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 8px 16px; font-size: .95rem; font-weight: 700; color: #fff; margin: 0 0 22px; }
.open-status__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.55); flex: 0 0 auto; }
.open-status.is-open .open-status__dot { background: var(--status-green); box-shadow: 0 0 0 4px rgba(111,168,107,.25); }
.open-status:empty { display: none; }

/* =========================================================================
   SEKTIONEN (alternierend), Bänder, Cards, Galerie, Reviews, Über uns,
   Öffnungszeiten, Anfahrt, CTA — generalisiert
   ========================================================================= */
.section { padding: var(--section-pad) 0; }
.section--light { background: var(--near-white); }
.section--surface { background: var(--light-surface); }
.section__head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.eyebrow { font-family: var(--font-body); font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); margin: 0 0 14px; }
.band .eyebrow { color: #d98a76; }
.section__title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 0 0 12px; }
.section__lead { font-size: 1.1rem; color: var(--muted); margin: 0; }
.section__actions { text-align: center; margin-top: 40px; }

.band { background: var(--secondary); color: var(--near-white); padding: var(--section-pad) 0; }
.band .section__title { color: var(--near-white); }

.usp__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.usp__item { text-align: center; }
.usp__title { font-size: 1.2rem; margin: 0 0 8px; color: #fff; }
.usp__item p { margin: 0; color: rgba(255,255,255,.9); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: var(--light-surface); border: var(--hairline); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.section--light .card { background: var(--light-surface); }
.card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media--placeholder { display: flex; align-items: center; justify-content: center; background: var(--light-surface); color: var(--muted); font-size: .95rem; }
.card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__title { font-size: 1.25rem; }
.card__desc { margin: 0; color: var(--muted); }
.card__price { margin: 8px 0 0; font-weight: 700; color: var(--primary); font-size: 1.1rem; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery__item { margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; border: var(--hairline); box-shadow: 0 26px 55px -30px rgba(0,0,0,.25); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review { margin: 0; background: var(--near-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow); }
.review__head { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; background: var(--secondary); flex: 0 0 auto; }
.review__stars { margin: 0; color: #FBBC04; letter-spacing: 2px; }
.review__text { margin: 0; }
.review__author { font-weight: 700; }
.reviews__source { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 26px; color: var(--muted); }

.ueber { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: center; }
.ueber__portrait { width: 240px; height: 240px; border-radius: 50%; overflow: hidden; margin: 0 auto; }
.ueber__portrait img { width: 100%; height: 100%; object-fit: cover; }
.ueber__portrait--placeholder { display: flex; align-items: center; justify-content: center; background: var(--light-surface); color: var(--muted); text-align: center; font-size: .95rem; padding: 12px; }
.ueber__text .section__title { text-align: left; }
.ueber__text p { margin: 0 0 14px; font-size: 1.08rem; }
.ueber__motto { font-family: var(--font-head); font-style: italic; color: var(--secondary); font-size: 1.3rem; }

.oeff { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.oeff__tile { background: var(--light-surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: 12px 8px; text-align: left; border-bottom: 1px solid var(--line); }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.is-today { font-weight: 700; color: var(--primary); }
.hours__closed { color: var(--muted); }
.hours__note { text-align: center; margin: 22px auto 0; color: var(--muted); font-weight: 700; }
@media (max-width: 640px) { .oeff { grid-template-columns: 1fr; } }

.anfahrt { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; max-width: 820px; margin: 0 auto; }
.anfahrt__address { font-style: normal; font-size: 1.15rem; line-height: 1.7; }
.anfahrt__address a { color: var(--primary); text-decoration: none; }
.anfahrt__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.anfahrt__pay { text-align: center; margin: 28px auto 0; color: var(--muted); }

.cta__inner { text-align: center; }
.cta__title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 0 0 10px; color: #fff; }
.cta__text { margin: 0 0 28px; color: rgba(255,255,255,.9); }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   ANZEIGEN-SLOTS (Netzwerk) — in der Vorschau ausgeblendet.
   Go-Live: `hidden` entfernen + data-gg-* mit Partnerwerten füllen (siehe PROCESS.md §7).
   ========================================================================= */
.gg-ad-slot { display: block; }
.gg-ad-slot[hidden] { display: none; }
.gg-ad-slot__inner { max-width: var(--content-max); margin: 0 auto; padding: 24px; }
.gg-ad-slot__ph { border: 1px dashed var(--line); border-radius: var(--radius); padding: 28px; text-align: center; color: var(--muted); }
/* GustoGang Partner-Platzierung — hochwertige Netzwerk-Platzierung (hebt sich ab, keine Werbe-Optik) */
.gg-partner { padding: 76px 0; background: linear-gradient(180deg, var(--near-white) 0%, #edeff6 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gg-partner__card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  max-width: 640px; margin: 0 auto; padding: 46px 40px 40px;
  text-decoration: none; color: var(--near-black);
  background: linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
  border: 1px solid rgba(32,27,222,.16); border-radius: 22px;
  box-shadow: 0 26px 60px -34px rgba(32,27,222,.35), 0 1px 0 rgba(255,255,255,.7) inset;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gg-partner__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gg-blue), #6f6bff); }
.gg-partner__card:hover { transform: translateY(-4px); border-color: rgba(32,27,222,.34); box-shadow: 0 34px 72px -32px rgba(32,27,222,.46); }
.gg-partner__kicker { display: inline-block; font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gg-blue); background: #ece9ff; border-radius: 999px; padding: 6px 14px; }
.gg-partner__logo { height: 30px; width: auto; margin: 4px 0 0; }
.gg-partner__title { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--near-black); margin: 0; }
.gg-partner__text { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.gg-partner__cta { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; background: var(--gg-blue); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; padding: 15px 28px; border-radius: 6px; }
.gg-partner__arrow { transition: transform .2s ease; }
.gg-partner__card:hover .gg-partner__arrow { transform: translateX(4px); }
.gg-partner__cta::after { content: ""; position: absolute; top: 0; left: -120%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg); animation: gg-sheen 4.5s ease-in-out infinite; }
@keyframes gg-sheen { 0%, 62% { left: -120%; } 88%, 100% { left: 150%; } }
@media (prefers-reduced-motion: reduce) {
  .gg-partner__cta::after { display: none; }
  .gg-partner__card, .gg-partner__arrow { transition: none; }
}
@media (max-width: 640px) { .gg-partner { padding: 56px 0; } .gg-partner__card { padding: 38px 24px 32px; } }

/* =========================================================================
   GUSTOGANG-FOOTER (über Gastro-Footer) — FIX, ganzer Abschnitt klickbar
   ========================================================================= */
.gg-footer { background: var(--gg-blue); color: var(--gg-cream); text-decoration: none; display: block; }
.gg-footer__inner { max-width: var(--content-max); margin: 0 auto; padding: 40px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.gg-footer__kick { display: block; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: #bdb8ff; margin: 0 0 14px; }
.gg-footer__logo { height: 39px; width: auto; margin: 0 0 14px; display: block; }
.gg-footer__claim { display: block; margin: 0 0 10px; color: var(--gg-cream); }
.gg-footer__link { display: block; color: #fff; font-weight: 700; animation: gg-glow 2.4s ease-in-out infinite; }
@keyframes gg-glow { 0%,100% { opacity: .65; } 50% { opacity: 1; text-shadow: 0 0 10px rgba(255,255,255,.55); } }
@media (prefers-reduced-motion: reduce) { .gg-footer__link { animation: none; opacity: 1; } }

/* Gastro-Footer-Streifen (weiß, schwarze Schrift) */
.gastro-footer { background: #fff; color: #111; padding: 26px 24px; text-align: center; }
.gastro-footer__copy { margin: 0 0 6px; font-weight: 700; }
.gastro-footer__legal { margin: 0; font-size: .85rem; }
.gastro-footer__legal button { background: none; border: none; color: #888; cursor: pointer; font: inherit; padding: 0 4px; text-decoration: underline; }
.gastro-footer__legal button:hover { color: #555; }

/* =========================================================================
   RECHTS-MODAL (Impressum & Datenschutz)
   ========================================================================= */
.legal-modal[hidden] { display: none; }
.legal-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.legal-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.legal-modal__panel { position: relative; background: var(--near-white); color: var(--near-black); max-width: 760px; width: 100%; max-height: 86vh; overflow-y: auto; border-radius: var(--radius); padding: 32px 34px; }
.legal-modal__close { position: sticky; top: 0; float: right; margin: -8px -8px 0 0; width: 40px; height: 40px; border: 1px solid var(--line); background: var(--near-white); border-radius: var(--radius); font-size: 1.2rem; cursor: pointer; }
.legal-modal h2 { font-size: 1.6rem; margin: 0 0 6px; }
.legal-modal h3 { font-size: 1.15rem; margin: 22px 0 6px; }
.legal-modal p, .legal-modal li { color: var(--near-black); font-size: .95rem; }
.legal-modal__stand { color: var(--muted); font-size: .85rem; margin-top: 4px; }

/* =========================================================================
   SCROLL-REVEAL (armiert nur mit JS via html.reveal)
   ========================================================================= */
html.reveal .section__head,
html.reveal .usp__item,
html.reveal .card,
html.reveal .gallery__item,
html.reveal .review,
html.reveal .ueber__media,
html.reveal .ueber__text,
html.reveal .oeff,
html.reveal .anfahrt,
html.reveal .anfahrt__pay,
html.reveal .cta__inner,
html.reveal .menu-block__head,
html.reveal .menu-item {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease-out, transform .55s ease-out; will-change: opacity, transform;
}
html.reveal .is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.reveal [class].is-revealed, html.reveal .card, html.reveal .section__head { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================================
   SPEISEKARTE (menu.html)
   ========================================================================= */
.menu-head { padding: 56px 0 24px; text-align: center; }
.menu-block__head { text-align: center; margin-bottom: 36px; }
.menu-block__time { margin: 6px 0 0; color: var(--secondary); font-weight: 700; letter-spacing: .04em; }
.menu-list { list-style: none; margin: 0 auto; padding: 0; max-width: 820px; }
.menu-item { display: flex; align-items: baseline; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item__info { flex: 1; }
.menu-item__name { font-size: 1.2rem; margin: 0 0 4px; }
.menu-item__desc { margin: 0; color: var(--muted); }
.menu-item__variant { margin: 6px 0 0; color: var(--muted); font-size: .95rem; }
.menu-item__tag { display: inline-block; font-family: var(--font-body); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); border: 1px solid var(--primary); border-radius: 999px; padding: 2px 9px; vertical-align: middle; margin-left: 6px; }
.menu-item__price { flex: 0 0 auto; font-weight: 700; color: var(--primary); font-size: 1.1rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-notes { max-width: 820px; margin: 0 auto; }

/* Akkordeon (Allergene) */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); background: var(--near-white); }
.accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; background: transparent; border: none; cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--near-black); text-align: left; }
.accordion__icon { position: relative; width: 14px; height: 14px; flex: 0 0 auto; }
.accordion__icon::before, .accordion__icon::after { content: ""; position: absolute; background: var(--primary); }
.accordion__icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.accordion__icon::after { top: 0; left: 6px; width: 2px; height: 14px; transition: transform .2s ease; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: rotate(90deg); }
.accordion__panel[hidden] { display: none; }
.accordion__panel { padding: 0 20px 20px; color: var(--muted); }

/* =========================================================================
   KUNDENSPEZIFISCH — Pizzeria Primavera
   ========================================================================= */
/* USP: heller Streifen, 3 Merkmale, dunkler Text */
.usp { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.usp__grid--3 { grid-template-columns: repeat(3, 1fr); }
.usp .usp__item { text-align: center; }
.usp__num { display: block; font-family: var(--font-body); font-weight: 700; font-size: .95rem; letter-spacing: .14em; color: var(--primary); margin-bottom: 12px; }
.usp .usp__title { color: var(--near-black); font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* Ambiente: 2 Fotos nebeneinander */
.gallery--2 { grid-template-columns: repeat(2, 1fr); }

/* Bewertungen: Google-Logo in der Quelle */
.reviews__google { display: inline-block; vertical-align: middle; }

/* Über uns: Porträtfoto + Zitat */
.ueber__portrait img { width: 100%; height: 100%; object-fit: cover; }
.ueber__quote { margin: 0 0 20px; padding: 0; border: 0; font-family: var(--font-head); font-style: italic; font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.4; color: var(--near-black); }
.ueber__sign { margin: 0; font-size: 1.05rem; }
.ueber__role { color: var(--muted); }

/* Party & Catering */
.party__intro { max-width: 760px; margin: 0 auto 40px; text-align: center; color: var(--muted); font-size: 1.1rem; }
.party__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.party__card { background: var(--near-white); border: var(--hairline); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); text-align: center; }
.party__title { font-size: 1.3rem; margin: 0 0 8px; }
.party__card p { margin: 0; color: var(--muted); }
.party__badges { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin: 34px 0 0; padding: 0; }
.party__badges li { position: relative; padding-left: 22px; font-weight: 600; color: var(--near-black); }
.party__badges li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.party__note { margin: 14px 0 0; color: var(--muted); }

/* Zahlarten (auf dunklem CTA-Band) */
.pay { margin-top: 34px; }
.pay__label { display: block; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.pay__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0; padding: 0; }
.pay__list li { border: 1px solid rgba(255,255,255,.35); border-radius: 6px; padding: 6px 14px; font-size: .85rem; font-weight: 600; letter-spacing: .03em; }
.cta__note { margin: 26px 0 0; color: rgba(255,255,255,.75); font-size: .95rem; }

/* Foto-Hintergrund-Sektionen (Bild + Overlay, Inhalt bleibt lesbar) */
.section--photo { position: relative; isolation: isolate; }
.section--photo > .container { position: relative; z-index: 1; }
.section--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--sec-overlay), var(--sec-bg);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}

/* Öffnungszeiten: Pizza-Foto + warm-helles Overlay; Kacheln opak für Lesbarkeit */
#oeffnungszeiten.section--photo { --sec-bg: url("assets/Pizza%20Ruco-Parma.jpeg"); --sec-overlay: linear-gradient(180deg, rgba(242,239,232,.82), rgba(242,239,232,.9)); }
.section--photo-light .oeff__tile { background: rgba(255,255,255,.96); border-color: rgba(0,0,0,.06); box-shadow: var(--shadow); }
.section--photo-light .hours { background: rgba(255,255,255,.96); border: var(--hairline); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.section--photo-light .hours th, .section--photo-light .hours td { padding-left: 20px; padding-right: 20px; }

/* Party & Catering: Pizza-Foto + dunkles Overlay, hebt sich ab; helle Schrift */
#party.section--photo { --sec-bg: url("assets/Pizza%20Prosciutto.jpeg"); --sec-overlay: linear-gradient(180deg, rgba(20,16,12,.84), rgba(20,16,12,.76)); }
.section--dark .section__head .section__title { color: var(--near-white); }
.section--dark .section__head .eyebrow { color: #e0a08d; }
.section--dark .section__head .section__lead { color: rgba(255,255,255,.85); }
.section--dark .party__intro { color: rgba(255,255,255,.85); }
.section--dark .party__badges li { color: var(--near-white); }
.section--dark .party__note { color: rgba(255,255,255,.78); }

/* Live-Öffnungs-Banner: klarer Grün-Zustand, wenn geöffnet */
.open-status.is-open { border-color: rgba(111,168,107,.6); }
.oeff__tile .open-status.is-open { color: #2f6b2b !important; background: rgba(111,168,107,.16) !important; border-color: rgba(111,168,107,.55) !important; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 860px) {
  .usp__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .party__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --section-pad: 64px; }
  .usp__grid, .cards, .gallery, .gallery--2, .party__grid { grid-template-columns: 1fr; }
  .ueber { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .ueber__text .section__title { text-align: center; }
  .anfahrt { flex-direction: column; text-align: center; }
  .anfahrt__actions { width: 100%; }
  .anfahrt__actions .btn { flex: 1; }
  .section__actions .btn, .cta__actions .btn { width: 100%; }
}

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
