/* ============================================================
   le'Chef Siegel — Landingpage
   CI-Basis: Haupt-Landingpage lechef.ai (Orange #FE8102, Afacad
   Flux, Light-only, mobile-first). Siegel-Farbwelt aus der App
   (SealBadge.jsx): Bronze-Kupfer · Silber · Gold · Diamant.
   ============================================================ */

/* ---------- Design-Tokens ---------- */
:root {
  color-scheme: light only;

  /* CI-Farben (tailwind.config.ts der Haupt-LP) */
  --orange: #FE8102;
  --amber: #EFA53E;
  --yellow: #EFD03E;
  --green: #84cc16;
  --red: #E76149;
  --cream: #fffbeb;

  /* Neutrale Skala */
  --ink: #111827;
  --ink-soft: #363636;
  --text: #4b5563;
  --text-muted: #6b7280;
  --text-faint: #9ca3af;
  --line: #f3f4f6;
  --line-strong: #e5e7eb;
  --bg: #ffffff;

  /* Marken-Gradient (user-bubble / payment-checkbox der Haupt-LP) */
  --grad-brand: linear-gradient(135deg, #FE8102 0%, #EFA53E 100%);

  /* Siegel-Stufen (SEAL_TIER_STYLES, App) */
  --bronze-a: #b45309;  --bronze-b: #9a3412;  --bronze-dot: #fde68a;
  --silver-a: #cbd5e1;  --silver-b: #64748b;  --silver-ink: #0f172a;
  --gold-a: #fbbf24;    --gold-m: #eab308;    --gold-b: #d97706;   --gold-ink: #78350f;
  --diamond-a: #3f3f46; --diamond-b: #18181b; --diamond-glow: #EE8533;

  /* Form & Bewegung */
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --shadow-card: 0 10px 30px -12px rgba(17, 24, 39, 0.12);
  --shadow-pop: 0 18px 40px -16px rgba(254, 129, 2, 0.35);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.2, 0.9, 0.2, 1);
}

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

html {
  font-size: 14px; /* Mobile-Basis wie Haupt-LP */
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 640px) { html { font-size: 15px; } }
@media (min-width: 768px) { html { font-size: 16px; } }

body {
  margin: 0;
  font-family: "Afacad Flux", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .15s ease-out; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0 0 .5em; color: var(--ink); line-height: 1.15; font-weight: 750; letter-spacing: -0.01em; }
ul, ol, dl, dd, figure { margin: 0; padding: 0; }
table { border-collapse: collapse; width: 100%; }

/* Sichtbarer Tastatur-Fokus (CI: Orange-Ring) */
:focus { outline: none; }
:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--orange);
  border-radius: 6px;
}

::selection { background: rgba(254, 129, 2, .22); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--orange); color: #fff; font-weight: 700;
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }

/* Touch-Targets (Haupt-LP: min 44 px mobil) */
button, a.btn, summary { min-height: 44px; }
@media (min-width: 1024px) { button, a.btn, summary { min-height: auto; } }
@media (pointer: coarse) {
  a:active, button:active, summary:active { transform: scale(.98); transition: transform .05s ease-out; }
}

.container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) { .container { padding-inline: 1.5rem; } }
@media (min-width: 768px) { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2.5rem; } }

.section { padding-block: 3rem; position: relative; }
@media (min-width: 640px) { .section { padding-block: 4rem; } }
@media (min-width: 768px) { .section { padding-block: 5rem; } }

.section--cream { background: var(--cream); }
.section--ink { background: #1c1917; }

/* Sektions-Kopf mit Perforations-Motiv (Stempel-Sprache des Siegels) */
.section-head { max-width: 46rem; margin: 0 auto 2.25rem; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: .9rem;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 1.6rem; height: 0;
  border-top: 2px dashed rgba(254, 129, 2, .5);
}
.section-title { font-size: clamp(1.7rem, 4.2vw, 2.6rem); }
.section-lead { font-size: 1.06rem; color: var(--text); margin: 0 auto; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 999;
  background: rgba(255, 255, 255, .96);
  transition: box-shadow .3s ease, padding .3s ease, background .3s ease;
  padding-block: .8rem;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px -12px rgba(17, 24, 39, .18);
  padding-block: .5rem;
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 3.5rem; }

.brand { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.brand img { width: 2.75rem; height: 2.75rem; border-radius: .65rem; }
.brand-name { font-size: 1.25rem; font-weight: 800; color: var(--ink); white-space: nowrap; }
.brand-name .accent { color: var(--orange); }
.brand-claim {
  font-size: .72rem; font-style: italic; color: var(--text-muted);
  border-left: 1px solid var(--line-strong); padding-left: .7rem;
  line-height: 1.25; white-space: nowrap;
}
@media (max-width: 419px) { .brand-claim { display: none; } }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a { font-weight: 600; font-size: .95rem; color: var(--ink-soft); }
.nav-desktop a:hover { color: var(--orange); }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.header-cta { display: none; }
@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--orange); color: #fff; font-weight: 700; font-size: .9rem;
    padding: .65rem 1.3rem; border-radius: 999px;
    transition: transform .2s var(--ease-out), box-shadow .2s ease, background .2s ease;
  }
  .header-cta:hover { background: #e97501; box-shadow: 0 10px 22px -10px rgba(254, 129, 2, .55); transform: translateY(-2px); }
}

/* Sprachumschalter (EN/DE) */
.lang-switch { display: none; align-items: center; gap: .1rem; font-size: .85rem; font-weight: 800; }
.lang-switch span { color: var(--text-faint); }
.lang-switch a { padding: .3rem .45rem; border-radius: .5rem; color: var(--text-muted); min-height: auto; }
.lang-switch a:hover { color: var(--orange); background: rgba(254, 129, 2, .08); }
.lang-switch a.active { color: var(--orange); }
@media (min-width: 1024px) { .lang-switch { display: inline-flex; } }
.lang-switch--mobile { display: flex; justify-content: center; gap: .8rem; margin-bottom: 1rem; font-size: 1rem; }
.lang-switch--mobile a { min-height: 44px; display: inline-flex; align-items: center; padding-inline: .9rem; }

/* Mobiler Menü-Button — runder Playful-Burger der Haupt-LP */
.menu-toggle {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .32rem;
  width: 3rem; height: 3rem; border: 0; border-radius: 999px;
  background: rgba(254, 129, 2, .1); color: var(--orange); cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.menu-toggle:active { transform: scale(.9); }
.menu-toggle .bar {
  width: 1.4rem; height: 2px; border-radius: 999px; background: currentColor;
  transition: transform .3s var(--ease-out), opacity .2s ease;
}
.menu-open .menu-toggle .bar:nth-child(1) { transform: translateY(.42rem) rotate(45deg); }
.menu-open .menu-toggle .bar:nth-child(2) { opacity: 0; transform: translateX(-.6rem); }
.menu-open .menu-toggle .bar:nth-child(3) { transform: translateY(-.42rem) rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobiles Panel — Circle-Expand wie Haupt-LP */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1001;
  background: #fff;
  clip-path: circle(0% at calc(100% - 2.4rem) 2.4rem);
  transition: clip-path .5s var(--ease-out), visibility 0s linear .5s;
  visibility: hidden;
  overflow-y: auto;
}
.menu-open .mobile-menu {
  clip-path: circle(150% at calc(100% - 2.4rem) 2.4rem);
  visibility: visible;
  transition: clip-path .5s var(--ease-out);
}
.mobile-menu .blob { position: absolute; border-radius: 999px; filter: blur(60px); pointer-events: none; }
.mobile-menu .blob--a { top: -6rem; right: -6rem; width: 16rem; height: 16rem; background: rgba(254, 129, 2, .07); }
.mobile-menu .blob--b { bottom: -6rem; left: -6rem; width: 16rem; height: 16rem; background: rgba(239, 208, 62, .08); }
.mobile-menu-inner { position: relative; padding: 1.25rem 1.5rem 3rem; display: flex; flex-direction: column; min-height: 100%; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.menu-close {
  width: 2.9rem; height: 2.9rem; border: 0; border-radius: 999px;
  background: var(--orange); color: #fff; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px -6px rgba(254, 129, 2, .5);
}
.mobile-nav { display: flex; flex-direction: column; gap: .25rem; padding-block: 1.5rem; }
.mobile-nav a {
  font-size: 1.25rem; font-weight: 700; color: var(--ink);
  padding: .85rem 1rem; border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: .8rem;
}
.mobile-nav a:hover { background: rgba(254, 129, 2, .08); color: var(--orange); }
.mobile-nav .nav-ico { color: var(--orange); flex: 0 0 auto; }
.mobile-menu-cta {
  margin-top: auto; display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--orange); color: #fff; font-size: 1.1rem; font-weight: 800;
  min-height: 3.5rem; border-radius: var(--radius-xl);
  box-shadow: 0 12px 24px -10px rgba(254, 129, 2, .45);
}

/* ============================================================
   Buttons (PlayfulButton-Stil der Haupt-LP)
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem; border: 0; border-radius: var(--radius-lg);
  font: inherit; font-size: 1.05rem; font-weight: 750; cursor: pointer;
  transition: transform .25s var(--ease-bounce), box-shadow .25s ease, background .2s ease, border-color .2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px) rotate(-1.5deg) scale(1.03); }
.btn:active { transform: scale(.94); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 12px 26px -12px rgba(254, 129, 2, .6); }
.btn--primary:hover { box-shadow: var(--shadow-pop); }
.btn--primary::after {
  content: ""; position: absolute; top: .55rem; right: 1rem;
  width: .4rem; height: .4rem; border-radius: 999px; background: #fff; opacity: .4;
}
.btn--secondary { background: #fff; color: #1f2937; border: 2px solid var(--line); box-shadow: 0 10px 24px -14px rgba(107, 114, 128, .45); }
.btn--secondary:hover { border-color: rgba(254, 129, 2, .4); color: var(--orange); }
.btn--ghost-dark { background: rgba(255, 255, 255, .12); color: #fff; border: 2px solid rgba(255, 255, 255, .35); }
.btn--ghost-dark:hover { background: rgba(255, 255, 255, .2); }

.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(254, 129, 2, .1); color: var(--orange);
  font-size: .88rem; font-weight: 700;
  padding: .45rem 1rem; border-radius: 999px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-block: 7rem 3.5rem; }
@media (min-width: 1024px) { .hero { padding-block: 9rem 5.5rem; } }

.hero-blobs { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero-blobs .blob { position: absolute; border-radius: 999px; filter: blur(90px); }
.hero-blobs .blob--orange { top: -18%; left: -12%; width: 62vw; height: 62vw; background: rgba(254, 129, 2, .10); animation: blob-drift 22s ease-in-out infinite; }
.hero-blobs .blob--yellow { top: 22%; right: -14%; width: 52vw; height: 52vw; background: rgba(239, 208, 62, .12); animation: blob-drift 18s ease-in-out infinite reverse; }
.hero-blobs .blob--green { bottom: -22%; left: 18%; width: 44vw; height: 44vw; background: rgba(132, 204, 22, .09); animation: blob-drift 26s ease-in-out infinite; }

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -4%) scale(1.08); }
  66% { transform: translate(-2%, 3%) scale(.95); }
}

.hero-grid { display: grid; gap: 2.75rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 3rem; } }

.hero-copy { text-align: center; }
@media (min-width: 1024px) { .hero-copy { text-align: left; } }

.hero-title { font-size: clamp(2.15rem, 6vw, 3.6rem); font-weight: 800; margin-block: 1.1rem .9rem; }
.hero-title .accent { color: var(--orange); }
.hero-lead { font-size: 1.12rem; max-width: 34rem; margin-inline: auto; }
@media (min-width: 1024px) { .hero-lead { margin-inline: 0; font-size: 1.2rem; } }

.hero-ctas { display: flex; flex-direction: column; align-items: center; gap: .9rem; margin-top: 1.9rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; justify-content: center; } }
@media (min-width: 1024px) { .hero-ctas { justify-content: flex-start; } }
.hero-ctas .btn { width: 100%; max-width: 20rem; }
@media (min-width: 640px) { .hero-ctas .btn { width: auto; } }

.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.3rem;
  margin-top: 1.4rem; font-size: .9rem; font-weight: 600; color: var(--text-muted);
}
@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }
.hero-trust li { display: inline-flex; align-items: center; gap: .4rem; list-style: none; }
.hero-trust svg { color: var(--green); flex: 0 0 auto; }

/* Hero-Visual: Venue-Karte mit aufgestempeltem Emblem */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual::before {
  content: ""; position: absolute; inset: -12%;
  background: linear-gradient(135deg, rgba(254, 129, 2, .3), rgba(239, 208, 62, .3));
  border-radius: 999px; filter: blur(46px); z-index: -1;
  animation: glow-pulse 7s ease-in-out infinite;
}
@keyframes glow-pulse { 0%, 100% { opacity: .55; } 50% { opacity: .95; } }

.venue-card {
  width: min(21rem, 88vw);
  background: #fff; border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px -22px rgba(17, 24, 39, .28);
  padding: 1.3rem; rotate: -2deg;
  transition: rotate .5s ease;
}
.venue-card:hover { rotate: 0deg; }
.venue-photo {
  height: 7.5rem; border-radius: var(--radius-lg);
  background:
    radial-gradient(1.4rem 1.4rem at 78% 30%, rgba(255, 255, 255, .5), transparent 60%),
    linear-gradient(135deg, var(--amber), var(--red));
  display: grid; place-items: center; color: rgba(255, 255, 255, .95);
}
.venue-body { padding-top: 1rem; }
.venue-name-row { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.venue-name { font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.venue-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin-top: .55rem; font-size: .82rem; font-weight: 600; color: var(--text-muted); }
.venue-chip { background: var(--line); border-radius: 999px; padding: .2rem .6rem; }
.venue-score-row { display: flex; align-items: center; gap: .55rem; margin-top: .8rem; }
.stars { display: inline-flex; gap: .12rem; color: var(--amber); }
.venue-score { font-size: .85rem; font-weight: 700; color: var(--ink-soft); }

/* Aufgestempeltes Emblem auf der Karte */
.venue-stamp { position: absolute; top: -1.6rem; right: -1.1rem; rotate: 6deg; }
@media (min-width: 640px) { .venue-stamp { top: -2rem; right: -1.8rem; } }
.stamp-in { animation: stamp-in .7s var(--ease-bounce) .35s backwards; }
@keyframes stamp-in {
  0% { transform: scale(2.1) rotate(-16deg); opacity: 0; }
  62% { transform: scale(.94) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ============================================================
   Siegel-Embleme (SealEmblem der App, in CSS übersetzt)
   ============================================================ */
.seal-emblem {
  --size: 3.5rem;
  position: relative;
  width: var(--size); height: var(--size);
  border-radius: 999px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: calc(var(--size) * .02);
  box-shadow: 0 6px 16px -6px rgba(17, 24, 39, .35), inset 0 0 0 2px rgba(255, 255, 255, .7);
  flex: 0 0 auto;
}
.seal-emblem svg.toque { width: calc(var(--size) * .5); height: calc(var(--size) * .5); }
.seal-emblem .perforation { position: absolute; inset: 0; width: 100%; height: 100%; }
.seal-emblem .dots { display: flex; gap: calc(var(--size) * .055); }
.seal-emblem .dots span {
  width: calc(var(--size) * .085); height: calc(var(--size) * .085);
  border-radius: 999px; background: var(--dot, #fff);
}

.seal-emblem--bronze  { background: linear-gradient(135deg, var(--bronze-a), var(--bronze-b)); color: #fff; --dot: var(--bronze-dot); }
.seal-emblem--silver  { background: linear-gradient(135deg, var(--silver-a), var(--silver-b)); color: var(--silver-ink); --dot: #ffffff; }
.seal-emblem--gold    { background: linear-gradient(135deg, var(--gold-a), var(--gold-m) 50%, var(--gold-b)); color: var(--gold-ink); --dot: rgba(120, 53, 15, .7); }
.seal-emblem--diamond { background: linear-gradient(135deg, var(--diamond-a), var(--diamond-b)); color: #fff; --dot: var(--diamond-glow); box-shadow: 0 0 18px rgba(238, 133, 51, .55), inset 0 0 0 2px rgba(255, 255, 255, .55); }

/* ============================================================
   Fakten-Leiste („Auf einen Blick")
   ============================================================ */
.facts { margin-top: -1rem; }
.facts-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-2xl); box-shadow: var(--shadow-card);
  padding: 1.25rem;
}
@media (min-width: 768px) { .facts-grid { grid-template-columns: repeat(4, 1fr); padding: 1.6rem; } }
.fact { text-align: center; padding: .6rem .4rem; }
.fact + .fact { border-left: 1px dashed var(--line-strong); }
.fact-number { display: block; font-size: 1.9rem; font-weight: 800; color: var(--orange); line-height: 1.1; font-variant-numeric: tabular-nums; }
.fact-label { font-size: .85rem; font-weight: 600; color: var(--text-muted); }

/* ============================================================
   Zwei Säulen (Qualität / Ernährung & Transparenz)
   ============================================================ */
.pillars { display: grid; gap: 1.25rem; margin-top: 2.25rem; }
@media (min-width: 768px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillar {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-2xl); box-shadow: var(--shadow-card);
  padding: 1.6rem;
}
.pillar-head { display: flex; align-items: center; gap: .9rem; margin-bottom: .8rem; }
.pillar-ico {
  width: 3rem; height: 3rem; border-radius: var(--radius-lg);
  display: grid; place-items: center; color: #fff; background: var(--grad-brand);
  box-shadow: 0 8px 18px -8px rgba(254, 129, 2, .55);
  flex: 0 0 auto;
}
.pillar--balance .pillar-ico { background: linear-gradient(135deg, var(--green), #65a30d); box-shadow: 0 8px 18px -8px rgba(132, 204, 22, .55); }
.pillar h3 { margin: 0; font-size: 1.25rem; }
.pillar .weight { font-size: .82rem; font-weight: 800; color: var(--orange); letter-spacing: .06em; }
.pillar--balance .weight { color: #65a30d; }
.pillar ul { list-style: none; display: grid; gap: .45rem; margin-top: .9rem; }
.pillar li { display: flex; gap: .55rem; align-items: baseline; font-size: .98rem; }
.pillar li::before { content: ""; width: .45rem; height: .45rem; border-radius: 999px; background: var(--amber); flex: 0 0 auto; transform: translateY(-.1rem); }
.pillar--balance li::before { background: var(--green); }

/* ============================================================
   Stufen-Karten
   ============================================================ */
.tiers-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .tiers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tiers-grid { grid-template-columns: repeat(4, 1fr); } }

.tier-card {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-2xl); box-shadow: var(--shadow-card);
  padding: 1.5rem 1.3rem 1.4rem; text-align: center;
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
@media (min-width: 1024px) {
  .tier-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -18px rgba(17, 24, 39, .22); }
}
.tier-card .seal-emblem { --size: 4.5rem; margin: 0 auto .9rem; }
.tier-name { font-size: 1.3rem; margin-bottom: .15rem; }
.tier-threshold { font-size: .92rem; font-weight: 800; color: var(--orange); }
.tier-req { font-size: .88rem; color: var(--text-muted); margin-top: .55rem; min-height: 2.5em; }
.tier-desc { font-size: .92rem; margin-top: .6rem; }
.tier-card--diamond { border-color: rgba(238, 133, 51, .35); }
.tier-note {
  margin-top: 1.5rem; text-align: center; font-size: .92rem; color: var(--text-muted);
  max-width: 44rem; margin-inline: auto;
}

/* ============================================================
   Kriterien
   ============================================================ */
.crit-groups { display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .crit-groups { grid-template-columns: 1fr 1fr; } }
.crit-group {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-2xl); box-shadow: var(--shadow-card); padding: 1.5rem;
}
.crit-group > h3 {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.1rem;
}
.crit-group--balance > h3 { color: #65a30d; }
.crit-list { list-style: none; display: grid; gap: 1rem; }
.crit { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; }
.crit-ico {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-md);
  background: rgba(254, 129, 2, .1); color: var(--orange);
  display: grid; place-items: center; flex: 0 0 auto;
}
.crit-group--balance .crit-ico { background: rgba(132, 204, 22, .12); color: #4d7c0f; }
.crit-top { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.crit-name { font-weight: 750; color: var(--ink); font-size: .99rem; }
.crit-weight { font-weight: 800; color: var(--ink-soft); font-size: .92rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.crit-sub { font-size: .85rem; color: var(--text-muted); margin-top: .1rem; }
.crit-bar { height: .42rem; border-radius: 999px; background: var(--line); margin-top: .45rem; overflow: hidden; }
.crit-bar i { display: block; height: 100%; border-radius: 999px; background: var(--grad-brand); }
.crit-group--balance .crit-bar i { background: linear-gradient(90deg, var(--green), #a3e635); }
.gate-badge {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .68rem; font-weight: 800; color: #dc2626;
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 999px;
  padding: .12rem .5rem; margin-left: .45rem; vertical-align: middle; white-space: nowrap;
}
.crit-foot { text-align: center; margin-top: 1.5rem; font-size: .95rem; }
.crit-foot a { color: var(--orange); font-weight: 700; }
.crit-foot a:hover { text-decoration: underline; }

/* ============================================================
   Ablauf (4 Schritte)
   ============================================================ */
.steps { list-style: none; counter-reset: step; display: grid; gap: 1.1rem; max-width: 46rem; margin-inline: auto; }
.step {
  counter-increment: step;
  position: relative;
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-card);
  padding: 1.3rem 1.4rem;
}
.step-num {
  width: 3rem; height: 3rem; border-radius: 999px;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 8px 18px -8px rgba(254, 129, 2, .6);
}
.step-num::before { content: counter(step); }
.step h3 { font-size: 1.12rem; margin-bottom: .25rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.step p { margin: 0; font-size: .97rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; left: 2.85rem; top: 100%;
  height: 1.1rem; border-left: 2px dashed rgba(254, 129, 2, .45);
}

/* Vertrauens-/Manipulationsschutz-Box */
.trust-box {
  max-width: 46rem; margin: 2.25rem auto 0;
  background: linear-gradient(135deg, #fff7ed, var(--cream));
  border: 1.5px dashed rgba(254, 129, 2, .45);
  border-radius: var(--radius-2xl);
  padding: 1.6rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
}
.trust-box .pillar-ico { border-radius: 999px; }
.trust-box h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.trust-box p { margin: 0; font-size: .97rem; }
@media (max-width: 480px) { .trust-box, .step { grid-template-columns: 1fr; } .step:not(:last-child)::after { display: none; } }

/* ============================================================
   Zielgruppen (Gäste / Restaurants)
   ============================================================ */
.audience-grid { display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
.audience {
  border-radius: var(--radius-2xl); padding: 1.9rem 1.6rem;
  display: flex; flex-direction: column; gap: .9rem;
  box-shadow: var(--shadow-card);
}
.audience--guests { background: var(--grad-brand); color: #fff; }
.audience--owners { background: #fff; border: 1px solid var(--line); }
.audience h3 { font-size: 1.45rem; display: flex; align-items: center; gap: .7rem; margin: 0; }
.audience--guests h3 { color: #fff; }
.audience ul { list-style: none; display: grid; gap: .6rem; }
.audience li { display: flex; gap: .6rem; align-items: baseline; font-size: 1rem; }
.audience li svg { flex: 0 0 auto; transform: translateY(.2rem); }
.audience--guests li svg { color: var(--yellow); }
.audience--owners li svg { color: var(--green); }
.audience .btn { align-self: flex-start; margin-top: .4rem; }
.audience--guests .btn { background: #fff; color: var(--orange); }
.audience-note { font-size: .85rem; opacity: .85; margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 46rem; margin-inline: auto; display: grid; gap: .8rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-weight: 750; font-size: 1.05rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex: 0 0 auto; width: 2rem; height: 2rem; border-radius: 999px;
  background: rgba(254, 129, 2, .1); color: var(--orange);
  display: grid; place-items: center;
  transition: transform .3s var(--ease-bounce), background .2s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq-body { padding: 0 1.3rem 1.2rem; font-size: .98rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ============================================================
   Abschluss-CTA
   ============================================================ */
.cta-final { position: relative; overflow: hidden; }
.cta-panel {
  position: relative;
  background: var(--grad-brand);
  border-radius: var(--radius-2xl);
  padding: 3rem 1.5rem;
  text-align: center; color: #fff;
  box-shadow: 0 24px 60px -22px rgba(254, 129, 2, .55);
  overflow: hidden;
}
@media (min-width: 768px) { .cta-panel { padding: 4rem 3rem; } }
.cta-panel::before {
  content: ""; position: absolute; inset: .8rem;
  border: 2px dashed rgba(255, 255, 255, .4);
  border-radius: calc(var(--radius-2xl) - .5rem);
  pointer-events: none;
}
.cta-panel h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.cta-panel p { max-width: 34rem; margin-inline: auto; font-size: 1.08rem; color: rgba(255, 255, 255, .92); }
.cta-panel .hero-ctas { justify-content: center; margin-top: 1.6rem; }
.cta-panel .btn--primary { background: #fff; color: var(--orange); }
.cta-panel .toque-bg { position: absolute; right: -2.5rem; bottom: -2.5rem; width: 13rem; height: 13rem; color: rgba(255, 255, 255, .14); pointer-events: none; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--cream); border-top: 1px solid #fde8c8; padding-block: 3rem 2rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand p { font-size: .93rem; max-width: 22rem; }
.footer-col h4 { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .8rem; }
.footer-col ul { list-style: none; display: grid; gap: .5rem; }
.footer-col a { font-size: .95rem; color: var(--text); }
.footer-col a:hover { color: var(--orange); }
.footer-legal {
  margin-top: 2.25rem; padding-top: 1.4rem;
  border-top: 1px dashed rgba(254, 129, 2, .35);
  font-size: .8rem; color: var(--text-faint); text-align: center;
}
.footer-legal p { max-width: 52rem; margin: 0 auto .5em; }

/* ============================================================
   Unterseite „Kriterien & Vergabeverfahren"
   ============================================================ */
.page-plain { padding-top: 7.5rem; }
.page-plain .container { max-width: 46rem; }
.breadcrumb { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; }
.breadcrumb li + li::before { content: "›"; margin-right: .35rem; color: var(--text-faint); }
.breadcrumb a { color: var(--orange); font-weight: 600; }
.page-plain h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
.page-intro { font-size: 1.08rem; }
.page-meta { font-size: .85rem; color: var(--text-faint); margin-bottom: 2rem; }

.doc-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-2xl); box-shadow: var(--shadow-card);
  padding: 1.6rem; margin-bottom: 1.4rem;
}
.doc-card > h2 { display: flex; align-items: center; gap: .7rem; font-size: 1.3rem; margin-bottom: .9rem; }
.doc-card > h2 .pillar-ico { width: 2.4rem; height: 2.4rem; border-radius: var(--radius-md); }
.doc-card ul { padding-left: 1.1rem; display: grid; gap: .55rem; }
.doc-card li { font-size: .98rem; }
.doc-card p { font-size: .98rem; }

.data-table { font-size: .95rem; }
@media (max-width: 480px) {
  .data-table { font-size: .85rem; }
  .data-table th, .data-table td { padding: .5rem .45rem; }
}
.data-table caption { text-align: left; font-size: .85rem; color: var(--text-muted); padding-bottom: .6rem; }
.data-table th, .data-table td { text-align: left; padding: .65rem .6rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table thead th { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); border-bottom: 2px solid var(--line-strong); }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table .num { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--ink-soft); white-space: nowrap; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.disclaimer { font-size: .85rem; color: var(--text-faint); text-align: center; max-width: 40rem; margin: 2rem auto 0; }

/* ============================================================
   Scroll-Reveal (nur mit JS aktiv — ohne JS alles sichtbar)
   ============================================================ */
html.js .reveal { opacity: 0; transform: translateY(22px); }
html.js .reveal.is-visible { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s var(--ease-out); }
html.js .reveal:nth-child(2) { transition-delay: .07s; }
html.js .reveal:nth-child(3) { transition-delay: .14s; }
html.js .reveal:nth-child(4) { transition-delay: .21s; }

/* ============================================================
   Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .site-header, .mobile-menu, .menu-toggle, .cta-final, .hero-blobs { display: none !important; }
  body { color: #000; }
  .page-plain { padding-top: 1rem; }
  html.js .reveal { opacity: 1 !important; transform: none !important; }
}
