/* =========================================================
   DAS FROSTWERK – Stylesheet
   Farben & Schriften zentral hier oben anpassen.
   ========================================================= */

:root {
  /* --- Markenfarben (hier anpassen) --- */
  --cream:      #FFF8F1;
  --cream-2:    #FFF0E2;
  --ink:        #16323F;
  --ink-soft:   #4A626E;

  --pink:       #F48DA7;
  --brand:      #0E70AA;
  --brand-2:    #3FB3E3;
  --mango:      #F4DB71;
  --pistachio:  #7ED0A3;
  --blue:       #3FB3E3;
  --berry:      #0E70AA;

  /* --- Layout --- */
  --maxw: 1180px;
  --radius: 28px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --shadow: 0 18px 40px -18px rgba(22, 50, 63, .35);
  --shadow-sm: 0 8px 20px -10px rgba(22, 50, 63, .35);
  --border: 2px solid var(--ink);

  /* --- Typografie (System-Fonts: DSGVO-sicher, kein Google-Fonts-Request) --- */
  --font-display: "Trebuchet MS", "Segoe UI", Verdana, system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(244, 219, 113, .35), transparent 42%),
    radial-gradient(circle at 88% 4%, rgba(244, 141, 167, .28), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(63, 179, 227, .22), transparent 45%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1em; }

.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 62ch; }
.center .lead { margin-inline: auto; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: .75rem 1.25rem; z-index: 999; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Kicker / Badges ---------- */
.kicker {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  padding: .45rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--cream);
  margin-bottom: 1rem;
}
.kicker.pink { background: var(--pink); color: var(--ink); }
.kicker.mango { background: var(--mango); color: var(--ink); }
.kicker.pistachio { background: var(--pistachio); color: var(--ink); }
.kicker.blue { background: var(--brand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: 1rem;
  padding: .95rem 1.7rem;
  border-radius: var(--radius-pill);
  border: var(--border);
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease, background .2s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn.mango { background: var(--mango); color: var(--ink); }
.btn.pink { background: var(--pink); color: var(--ink); }
.btn.pistachio { background: var(--pistachio); color: var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); box-shadow: none; }
.btn.ghost:hover { background: #fff; box-shadow: 5px 5px 0 var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.center .btn-row { justify-content: center; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 241, .88);
  border-bottom: 2px solid rgba(22, 50, 63, .12);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.brand img { height: 48px; width: auto; }
.brand .brand-text {
  display: flex; flex-direction: column; line-height: 1.05;
  color: var(--brand); font-family: var(--font-display); font-weight: 800;
  font-size: 1.2rem; letter-spacing: -.01em; text-transform: uppercase;
}
.brand .brand-text small {
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; color: var(--brand-2); margin-top: .28rem;
}
@media (max-width: 520px) {
  .brand img { height: 40px; }
  .brand .brand-text { font-size: 1rem; }
  .brand .brand-text small { display: none; }
}
.hero-logo { max-width: min(380px, 78%); height: auto; margin-bottom: 1.4rem; }
@media (max-width: 900px) { .hero-logo { max-width: 300px; } }
.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; font-weight: 700; font-size: .97rem;
  padding: .55rem .9rem; border-radius: var(--radius-pill);
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { background: var(--ink); color: var(--cream); }
.nav-links a.active { background: var(--brand); color: #fff; }
.nav-toggle {
  display: none; background: var(--cream); border: var(--border);
  border-radius: var(--radius-pill); padding: .5rem .9rem; font-size: 1.2rem;
  font-weight: 800; cursor: pointer; line-height: 1;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; inset: 100% .75rem auto .75rem;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: var(--cream); border: var(--border); border-radius: var(--radius);
    padding: .75rem; box-shadow: var(--shadow); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: .8rem 1rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 7vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 span { color: var(--brand); }
.hero-art {
  position: relative; border: var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); background: #fff;
  rotate: -1.5deg;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; pointer-events: none; z-index: -1; }
.blob.b1 { width: 320px; height: 320px; background: var(--mango); top: -80px; right: 10%; }
.blob.b2 { width: 260px; height: 260px; background: var(--blue); bottom: -100px; left: -60px; }

.hero-facts { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; list-style: none; padding: 0; }
.hero-facts li {
  background: #fff; border: var(--border); border-radius: var(--radius-pill);
  padding: .45rem 1rem; font-weight: 700; font-size: .9rem; box-shadow: var(--shadow-sm);
}

/* ---------- Laufband ---------- */
.ticker {
  background: var(--ink); color: var(--cream); overflow: hidden;
  border-block: var(--border); padding: .8rem 0;
}
.ticker-track {
  display: flex; gap: 2.5rem; white-space: nowrap; width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--font-display); font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 2.5rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: var(--border); border-radius: var(--radius);
  padding: 1.9rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .emoji { font-size: 2.4rem; line-height: 1; display: block; margin-bottom: .6rem; }
.card.pink { background: #FDEFF3; }
.card.mango { background: #FDF8E6; }
.card.pistachio { background: #ECF9F2; }
.card.blue { background: #E8F6FD; }
.card h3 { margin-bottom: .35rem; }
.card p:last-child { margin-bottom: 0; }

/* ---------- Speisekarte ---------- */
.menu-block { margin-bottom: 3rem; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item {
  display: flex; align-items: baseline; gap: .75rem;
  padding: .85rem 0; border-bottom: 2px dotted rgba(22, 50, 63, .22);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .name { font-weight: 800; }
.menu-item .dots { flex: 1; border-bottom: 2px dotted rgba(22, 50, 63, .25); translate: 0 -.25rem; }
.menu-item .price { font-weight: 800; white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item .desc { display: block; font-weight: 400; font-size: .92rem; color: var(--ink-soft); }
.menu-note { font-size: .88rem; color: var(--ink-soft); }

.flavours { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 0; }
.flavours li {
  border: var(--border); border-radius: var(--radius-pill);
  padding: .45rem 1rem; font-weight: 700; font-size: .92rem; background: #fff;
}
.flavours li:nth-child(4n+1) { background: #FDEFF3; }
.flavours li:nth-child(4n+2) { background: #FDF8E6; }
.flavours li:nth-child(4n+3) { background: #ECF9F2; }
.flavours li:nth-child(4n+4) { background: #E8F6FD; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }
.gallery figure {
  margin: 0; border: var(--border); border-radius: var(--radius-sm); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
}
.gallery img { aspect-ratio: 1/1; object-fit: cover; width: 100%; transition: transform .3s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { padding: .7rem 1rem; font-weight: 700; font-size: .9rem; }

/* ---------- Öffnungszeiten ---------- */
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 2px dotted rgba(22, 50, 63, .2); }
.hours li:last-child { border-bottom: 0; }
.hours .day { font-weight: 800; }

/* ---------- Karte (2-Klick-Lösung) ---------- */
.map-box {
  border: var(--border); border-radius: var(--radius); overflow: hidden;
  background: #fff; min-height: 320px; display: grid; place-items: center; text-align: center; padding: 2rem;
}
.map-box iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Formular ---------- */
.form { display: grid; gap: 1rem; }
.form label { font-weight: 800; font-size: .92rem; display: grid; gap: .4rem; }
.form input, .form textarea, .form select {
  font: inherit; padding: .8rem 1rem; border: var(--border); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); width: 100%;
}
.form textarea { min-height: 140px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 700px) { .form .row { grid-template-columns: 1fr; } }
.form .check { display: flex; align-items: flex-start; gap: .6rem; font-weight: 400; font-size: .9rem; }
.form .check input { width: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; margin-top: 4rem;
}
.site-footer a { color: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; color: var(--mango); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 248, 241, .2);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .88rem; opacity: .85;
}

/* ---------- Rechtstexte ---------- */
.legal { max-width: 76ch; }
.legal h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 2.4rem; }
.legal h3 { font-size: 1.15rem; margin-top: 1.6rem; }
.legal p, .legal li { font-size: 1rem; }
.legal ul { padding-left: 1.2rem; }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; z-index: 200; inset: auto 1rem 1rem 1rem;
  max-width: 620px; margin-inline: auto;
  background: var(--cream); border: var(--border); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .5);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { font-size: 1.3rem; margin-bottom: .4rem; }
.cookie-banner p { font-size: .93rem; margin-bottom: 1rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.cookie-actions .btn { padding: .75rem 1.3rem; font-size: .95rem; }
.cookie-settings { margin: 0 0 1rem; display: grid; gap: .6rem; }
/* Ausgeblendete Elemente bleiben ausgeblendet, auch wenn sie eine eigene Anzeigeart haben. */
[hidden] { display: none !important; }
.cookie-settings label { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; }
.cookie-link-btn {
  background: none; border: 0; padding: 0; font: inherit; font-size: .88rem;
  text-decoration: underline; cursor: pointer; color: var(--ink-soft);
}

/* ---------- Diverses ---------- */
.badge-strip { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
:focus-visible { outline: 3px solid var(--berry); outline-offset: 3px; }


/* ---------- Treuekarte ---------- */
.loyalty {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center; background: #fff; border: var(--border);
  border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-sm);
}
.loyalty h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
.loyalty p:last-child { margin-bottom: 0; }
.stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(.5rem, 1.6vw, .9rem); }
.stamp {
  aspect-ratio: 1; border-radius: 50%; border: 2px dashed var(--brand-2);
  background: var(--cream); display: grid; place-items: center; font-size: 1.5rem;
}
.stamp.gift {
  border: var(--border); background: var(--mango);
  box-shadow: 4px 4px 0 var(--ink);
}
@media (max-width: 900px) { .loyalty { grid-template-columns: 1fr; } }

/* ---------- Feinschliff für Handys ---------- */
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .wrap { width: min(100% - 1.6rem, var(--maxw)); }
  .section { padding: 2.6rem 0; }
  .card { padding: 1.35rem; border-radius: var(--radius-sm); }
  .btn { width: 100%; justify-content: center; padding: .9rem 1.2rem; }
  .btn-row { gap: .7rem; }
  .hero { padding-top: 2rem; }
  .hero-logo { max-width: 80%; margin-inline: auto; }
  .hero-facts li { font-size: .84rem; padding: .4rem .8rem; }
  .ticker-track { font-size: .82rem; gap: 1.4rem; }
  .ticker-track span { gap: 1.4rem; }
  .menu-item { flex-wrap: wrap; }
  .menu-item .dots { display: none; }
  .menu-item .name { flex: 1 1 70%; }
  .menu-item .price { margin-left: auto; }
  .hours li { font-size: .95rem; }
  .site-footer { padding-top: 2.5rem; }
  .stamps { grid-template-columns: repeat(5, 1fr); }
  .stamp { font-size: 1.1rem; }
  .cookie-banner {
    inset: auto .5rem .5rem .5rem; padding: 1.2rem;
    border-radius: var(--radius-sm);
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
    max-height: 82vh; overflow-y: auto;
  }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; }
  .map-box { min-height: 240px; padding: 1.2rem; }
  .map-box iframe { height: 300px; }
}

@media (max-width: 380px) {
  .brand .brand-text { font-size: .92rem; }
  .brand img { height: 36px; }
}

/* Sprungziele nicht unter den Header schieben */
[id] { scroll-margin-top: 90px; }

/* =========================================================
   REZENSIONEN
   ========================================================= */
:root { --stern: #E8A22A; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.stars { color: var(--stern); letter-spacing: .08em; font-size: 1.15rem; line-height: 1; }

/* ---------- Blickfang auf der Startseite ---------- */
.review-band {
  position: relative; overflow: hidden; display: grid;
  grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  background: var(--ink); color: var(--cream);
  border: var(--border); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow); text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.review-band:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -18px rgba(22, 50, 63, .55); }
.review-band::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: var(--brand); opacity: .28; top: -140px; right: -80px; pointer-events: none;
}
.review-band > * { position: relative; z-index: 1; }
.review-band .stars { font-size: clamp(1.4rem, 3vw, 1.9rem); display: block; }
.review-band-score { text-align: center; line-height: 1.15; }
.review-band-score b {
  font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 3.8rem);
  display: block; letter-spacing: -.03em;
}
.review-band-score small { font-size: .85rem; opacity: .8; display: block; margin-top: .3rem; }
.review-band-quotes { min-height: 6.5em; display: grid; }
.review-band-quotes .rq {
  grid-area: 1 / 1; margin: 0; opacity: 0; visibility: hidden;
  transition: opacity .5s ease; align-self: center;
}
.review-band-quotes .rq.is-on { opacity: 1; visibility: visible; }
.review-band-quotes p { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; margin: 0 0 .5rem; }
.review-band-quotes footer { font-size: .9rem; opacity: .85; }
.review-band-cta { white-space: nowrap; }
@media (max-width: 900px) {
  .review-band { grid-template-columns: 1fr; text-align: center; }
  .review-band-quotes { min-height: 8.5em; }
  .review-band-cta .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .review-band-quotes .rq { transition: none; }
}

/* ---------- Übersicht auf der Rezensionsseite ---------- */
.rating-box {
  display: grid; grid-template-columns: minmax(180px, 240px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background: #fff; border: var(--border); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm);
}
.rating-score { text-align: center; background: var(--cream-2); border: var(--border); border-radius: var(--radius-sm); padding: 1.2rem; }
.rating-number { font-family: var(--font-display); font-size: clamp(2.8rem, 8vw, 4rem); font-weight: 800; display: block; line-height: 1; }
.rating-score .stars { display: block; margin: .5rem 0 .3rem; font-size: 1.4rem; }
.rating-score .muted { font-size: .9rem; }
.rating-box h2 { margin-bottom: .4rem; }
@media (max-width: 700px) { .rating-box { grid-template-columns: 1fr; } }

/* ---------- Einzelne Rezensionen ---------- */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 800px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff; border: var(--border); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review-card:nth-child(4n+2) { background: #FDF8E6; }
.review-card:nth-child(4n+3) { background: #ECF9F2; }
.review-card:nth-child(4n+4) { background: #E8F6FD; }
.review-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.review-date { font-size: .85rem; color: var(--ink-soft); }
.review-card h3 { margin-bottom: .4rem; }
.review-text { margin-bottom: 1rem; }
.review-name { font-weight: 800; margin: auto 0 0; }
.review-answer {
  margin-top: 1rem; padding: .9rem 1.1rem; border-left: 4px solid var(--brand);
  background: rgba(14, 112, 170, .07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.review-answer strong { display: block; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); }
.review-answer p { margin: .3rem 0 0; font-size: .95rem; }

/* ---------- Formular ---------- */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hinweis-box { border: var(--border); border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1.2rem; font-weight: 700; }
.hinweis-box.ok { background: #ECF9F2; }
.hinweis-box.fehler { background: #FDEFF3; font-weight: 400; }
.hinweis-box.fehler strong { font-weight: 800; }

.stars-input { border: 0; padding: 0; margin: 0; }
.stars-input legend { font-weight: 800; font-size: .92rem; padding: 0; margin-bottom: .3rem; }
.stars-row { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: .15rem; }
.stars-row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.stars-row label {
  font-size: 2.1rem; line-height: 1; color: rgba(22, 50, 63, .22); cursor: pointer;
  padding: .1rem .05rem; margin: 0; display: block; transition: color .15s ease, transform .15s ease;
}
.stars-row input:checked ~ label,
.stars-row label:hover,
.stars-row label:hover ~ label { color: var(--stern); }
.stars-row label:hover { transform: scale(1.12); }
.stars-row input:focus-visible + label { outline: 3px solid var(--berry); outline-offset: 2px; border-radius: 6px; }

/* =========================================================
   ÖFFNUNGS-SCHILD IM KOPFBEREICH
   Wird auf dem Server aus den Öffnungszeiten berechnet.
   ========================================================= */
.status-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-right: auto;
  padding: .34rem .85rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--ink);
  background: #fff;
  font-size: .86rem; font-weight: 800; line-height: 1.2;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.status-badge .punkt {
  width: .62rem; height: .62rem; border-radius: 50%;
  background: var(--ink-soft); flex: none;
}
.status-badge.is-offen      { background: #E8F8EF; border-color: #2C8257; color: #1C5A3B; }
.status-badge.is-offen .punkt { background: #2C8257; box-shadow: 0 0 0 4px rgba(44,130,87,.18); animation: fw-puls 2.4s ease-in-out infinite; }
.status-badge.is-bald       { background: #FFF6DC; border-color: #A9770A; color: #7A5605; }
.status-badge.is-bald .punkt  { background: #C9900C; box-shadow: 0 0 0 4px rgba(201,144,12,.2); }
.status-badge.is-zu         { background: #FFF0F3; border-color: #B34F67; color: #8A2F47; }
.status-badge.is-zu .punkt    { background: #B34F67; }
.status-badge.is-eroeffnung { background: #E9F4FB; border-color: var(--brand); color: var(--brand); }
.status-badge.is-eroeffnung .punkt { background: var(--brand); box-shadow: 0 0 0 4px rgba(14,112,170,.18); }

@keyframes fw-puls {
  0%, 100% { box-shadow: 0 0 0 3px rgba(44,130,87,.16); }
  50%      { box-shadow: 0 0 0 6px rgba(44,130,87,.06); }
}
@media (prefers-reduced-motion: reduce) {
  .status-badge .punkt { animation: none; }
}

@media (max-width: 900px) {
  .status-badge { font-size: .78rem; padding: .28rem .65rem; }
  .status-badge .punkt { width: .55rem; height: .55rem; }
}
@media (max-width: 620px) {
  .nav { flex-wrap: wrap; }
  .status-badge {
    order: 3; flex-basis: 100%;
    margin: .55rem 0 0; justify-content: center;
  }
}
