/* =====================================================================
   SPICY – GLUT & ZUCKER
   Ein Designsystem, zwei Welten:
   .theme-glut   = Restaurants (dunkel, Glut, Rauch)
   .theme-zucker = Spicy Sweets (hell, Candy, verspielt)
   ===================================================================== */

/* ---------- Fonts (selbst gehostet, kein externer Request) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  /* Glut-Welt (Restaurants) */
  --rauch:        #100d0b;
  --kohle:        #1b1512;
  --kohle-hell:   #27201b;
  --creme:        #f2e9dc;
  --creme-60:     rgba(242, 233, 220, .6);
  --glut:         #cc1522;
  --glut-hell:    #f0453b;
  --chili:        #7d0f14;

  /* Zucker-Welt (Sweets) */
  --vanille:      #fff6ec;
  --sahne:        #ffffff;
  --kakao:        #3d2a26;
  --kakao-60:     rgba(61, 42, 38, .62);
  --bubblegum:    #ff8fb2;
  --himbeere:     #e6395f;
  --pistazie:     #7fc8a9;
  --zitrone:      #ffd166;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Archivo", "Helvetica Neue", Arial, sans-serif;

  --max-w: 1180px;
  --radius: 22px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--glut-hell);
  outline-offset: 3px;
  border-radius: 4px;
}
.theme-zucker :focus-visible { outline-color: var(--himbeere); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--glut); color: #fff; padding: .7rem 1.2rem;
  border-radius: 0 0 12px 0; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Themes ---------- */
.theme-glut {
  background: var(--rauch);
  color: var(--creme);
}
.theme-zucker {
  background: var(--vanille);
  color: var(--kakao);
}

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.06; }
h1 { font-size: clamp(2.6rem, 8vw, 5.6rem); font-weight: 620; letter-spacing: -.015em; }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.2rem); font-weight: 560; letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); font-weight: 600; }
.theme-zucker h1, .theme-zucker h2 { font-weight: 680; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.theme-glut .eyebrow { color: var(--glut-hell); }
.theme-zucker .eyebrow { color: var(--himbeere); }
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 46ch; }
.theme-glut .lead { color: var(--creme-60); }
.theme-zucker .lead { color: var(--kakao-60); }

/* ---------- Layout ---------- */
.wrap { width: min(var(--max-w), 92vw); margin-inline: auto; }
section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; position: relative; }
.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); max-width: 62ch; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, box-shadow .35s, transform .35s;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1rem;
}
.theme-glut .site-header.is-scrolled {
  background: rgba(16, 13, 11, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(242, 233, 220, .08);
}
.theme-zucker .site-header.is-scrolled {
  background: rgba(255, 246, 236, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(61, 42, 38, .08);
}
.logo {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.45rem; text-decoration: none; letter-spacing: -.01em;
  display: inline-flex; align-items: baseline; gap: .1em;
}
.logo em { font-style: normal; color: var(--glut); }
.theme-zucker .logo em { color: var(--himbeere); }

.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.main-nav a {
  text-decoration: none; font-weight: 600; font-size: .95rem;
  opacity: .85; transition: opacity .2s;
}
.main-nav a:hover { opacity: 1; }
.main-nav a[aria-current="page"] { opacity: 1; }
.theme-glut .main-nav a[aria-current="page"] { color: var(--glut-hell); }
.theme-zucker .main-nav a[aria-current="page"] { color: var(--himbeere); }

.nav-toggle {
  display: none; background: none; border: 0; width: 44px; height: 44px;
  position: relative; z-index: 102;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 2px;
  background: currentColor; border-radius: 2px; transition: transform .3s, top .3s, opacity .3s;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after  { top: 7px;  left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    gap: 1.6rem; font-size: 1.3rem; transform: translateY(-102%);
    transition: transform .45s var(--ease-out); z-index: 101;
  }
  .theme-glut .main-nav { background: rgba(16, 13, 11, .97); }
  .theme-zucker .main-nav { background: rgba(255, 246, 236, .97); }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { font-size: 1.25rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 2px solid transparent;
  transition: transform .25s var(--ease-out), box-shadow .25s, background .25s, color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arr { transition: transform .25s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

.btn-glut {
  background: linear-gradient(120deg, var(--glut), var(--glut-hell));
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(204, 21, 34, .55);
}
.btn-glut:hover { box-shadow: 0 16px 38px -10px rgba(204, 21, 34, .7); }

.btn-ghost { border-color: currentColor; background: transparent; color: inherit; }
.btn-ghost:hover { background: rgba(255, 255, 255, .06); }
.theme-zucker .btn-ghost:hover { background: rgba(61, 42, 38, .06); }

.btn-zucker {
  background: var(--himbeere); color: #fff;
  box-shadow: 0 10px 30px -10px rgba(230, 57, 95, .5);
}
.btn-zucker:hover { box-shadow: 0 16px 38px -10px rgba(230, 57, 95, .65); }

/* Sticky Bestell-CTA (mobil) */
.sticky-cta {
  position: fixed; left: 50%; bottom: max(14px, env(safe-area-inset-bottom));
  transform: translate(-50%, 140%); z-index: 90;
  transition: transform .45s var(--ease-out);
  display: none;
}
.sticky-cta.is-visible { transform: translate(-50%, 0); }
@media (max-width: 780px) { .sticky-cta { display: block; } }

/* ---------- Hero (Glut) ---------- */
.hero {
  min-height: 100svh;
  display: grid; align-content: center;
  padding-top: 7rem; overflow: clip;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 70% 78%, rgba(204, 21, 34, .28), transparent 65%),
    radial-gradient(45% 40% at 20% 20%, rgba(125, 15, 20, .35), transparent 70%),
    var(--rauch);
}
.hero-bg::after {
  /* Heat-Shimmer: langsame, atmende Glut */
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(38% 30% at 62% 82%, rgba(240, 69, 59, .22), transparent 70%);
  animation: glut-atmen 7s ease-in-out infinite alternate;
  filter: blur(30px);
}
@keyframes glut-atmen {
  from { transform: scale(1) translateY(0); opacity: .7; }
  to   { transform: scale(1.12) translateY(-3%); opacity: 1; }
}
.hero .lead { margin: 1.4rem 0 2.2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-meta {
  margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1.6rem;
  font-size: .9rem; color: var(--creme-60);
}
.hero-meta strong { color: var(--creme); font-weight: 700; }

/* Hero-Wort-Reveal beim Laden */
.hero h1 .w {
  display: inline-block;
  animation: wort-auf .9s var(--ease-out) both;
}
@keyframes wort-auf {
  from { opacity: 0; transform: translateY(.6em) rotate(1.5deg); }
  to   { opacity: 1; transform: none; }
}
.hero h1 .w:nth-child(2) { animation-delay: .08s; }
.hero h1 .w:nth-child(3) { animation-delay: .16s; }
.hero h1 .w:nth-child(4) { animation-delay: .24s; }
.hero h1 .w:nth-child(5) { animation-delay: .32s; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  width: 24px; height: 40px; border: 2px solid var(--creme-60); border-radius: 14px;
}
.scroll-hint::before {
  content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px;
  background: var(--glut-hell); border-radius: 3px; transform: translateX(-50%);
  animation: hint 1.8s ease-in-out infinite;
}
@keyframes hint { 50% { transform: translate(-50%, 12px); opacity: .3; } }

/* ---------- Glut-Linie (Scroll-Fortschritt, Signatur der dunklen Welt) ---------- */
.glut-linie {
  position: fixed; left: 0; top: 0; height: 3px; width: 100%;
  transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--chili), var(--glut), var(--glut-hell));
  z-index: 110; pointer-events: none;
}
@supports (animation-timeline: scroll()) {
  .glut-linie {
    animation: linie-wachsen linear both;
    animation-timeline: scroll(root);
    animation-duration: 1ms; /* Firefox-Kniff */
  }
  @keyframes linie-wachsen { from { transform: scaleX(0); } to { transform: scaleX(1); } }
}

/* ---------- Reveal-System (Scroll-getriebene Einblendungen) ---------- */
.rv { opacity: 0; transform: translateY(34px); }
.rv.in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.rv-d1.in { transition-delay: .08s; }
.rv-d2.in { transition-delay: .16s; }
.rv-d3.in { transition-delay: .24s; }

@supports (animation-timeline: view()) {
  .rv, .rv.in { opacity: 1; transform: none; transition: none; }
  .rv {
    animation: rv-auf both var(--ease-out);
    animation-timeline: view();
    animation-range: entry 0% entry 62%;
  }
  @keyframes rv-auf {
    from { opacity: 0; transform: translateY(34px); }
    to   { opacity: 1; transform: none; }
  }
}

/* ---------- Karten (Bestseller etc.) ---------- */
.card-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
}
.card {
  border-radius: var(--radius); overflow: clip;
  background: var(--kohle);
  border: 1px solid rgba(242, 233, 220, .08);
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
  text-decoration: none; display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(204, 21, 34, .5);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, .6);
}
.card-media {
  aspect-ratio: 4 / 3; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--kohle-hell), var(--kohle));
  position: relative; overflow: clip;
}
.card-media svg { width: 42%; height: auto; transition: transform .5s var(--ease-out); }
.card:hover .card-media svg { transform: scale(1.08) rotate(-2deg); }
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: grid; gap: .4rem; }
.card-body p { font-size: .92rem; color: var(--creme-60); }
.card-price {
  margin-top: .5rem; font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 650; color: var(--glut-hell);
}
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--glut); color: #fff; font-size: .72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
}

/* Zucker-Karten */
.theme-zucker .card {
  background: var(--sahne);
  border: 2px solid var(--kakao);
  box-shadow: 5px 6px 0 var(--kakao);
}
.theme-zucker .card:hover {
  transform: translate(-2px, -6px);
  box-shadow: 9px 12px 0 var(--kakao);
  border-color: var(--kakao);
}
.theme-zucker .card-media { background: linear-gradient(145deg, #fff, #ffeadf); }
.theme-zucker .card-body p { color: var(--kakao-60); }
.theme-zucker .card-price { color: var(--himbeere); }
.theme-zucker .badge { background: var(--himbeere); }
.badge.badge-neu { background: var(--pistazie); color: var(--kakao); }
.badge.badge-limited { background: var(--zitrone); color: var(--kakao); }

/* ---------- Sticky-Story (Apple-Style: gepinnte Erzähl-Sektion) ---------- */
.story { padding: 0; }
.story-track { position: relative; }
.story-stage {
  position: sticky; top: 0; min-height: 100svh;
  display: grid; align-content: center; overflow: clip;
}
.story-step {
  min-height: 90svh; display: grid; align-content: center;
}
.story-num {
  font-family: var(--font-display); font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 300; color: transparent;
  -webkit-text-stroke: 1.5px rgba(204, 21, 34, .55);
  line-height: 1;
}
.theme-zucker .story-num { -webkit-text-stroke-color: rgba(230, 57, 95, .55); }

/* ---------- Kategorien-Band ---------- */
.kat-band { display: grid; gap: 1rem; }
.kat-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.2rem;
  padding: 1.4rem 1.6rem; border-radius: var(--radius);
  background: var(--kohle); border: 1px solid rgba(242, 233, 220, .08);
  text-decoration: none;
  transition: transform .3s var(--ease-out), border-color .3s, background .3s;
}
.kat-row:hover { transform: translateX(8px); border-color: rgba(204, 21, 34, .5); background: var(--kohle-hell); }
.kat-row .kat-icon { font-size: 1.7rem; width: 52px; height: 52px; display: grid; place-items: center;
  background: rgba(204, 21, 34, .12); border-radius: 14px; }
.kat-row p { font-size: .9rem; color: var(--creme-60); }
.kat-row .arr { font-weight: 700; color: var(--glut-hell); font-size: 1.3rem;
  transition: transform .3s var(--ease-out); }
.kat-row:hover .arr { transform: translateX(5px); }

/* ---------- Bewertungen ---------- */
.review-grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.review {
  padding: 1.6rem; border-radius: var(--radius);
  background: var(--kohle); border: 1px solid rgba(242, 233, 220, .08);
  display: grid; gap: .8rem;
}
.theme-zucker .review { background: var(--sahne); border: 2px solid rgba(61,42,38,.14); }
.stars { color: var(--zitrone); letter-spacing: .15em; font-size: 1rem; }
.review footer { font-size: .85rem; opacity: .65; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; }
.faq details {
  border-bottom: 1px solid rgba(242, 233, 220, .14);
  padding: 1.1rem 0;
}
.theme-zucker .faq details { border-color: rgba(61, 42, 38, .16); }
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 1.06rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.6rem; line-height: 1;
  color: var(--glut-hell); transition: transform .3s var(--ease-out); flex-shrink: 0;
}
.theme-zucker .faq summary::after { color: var(--himbeere); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-top: .7rem; max-width: 60ch; }
.theme-glut .faq details p { color: var(--creme-60); }
.theme-zucker .faq details p { color: var(--kakao-60); }

/* ---------- Galerie ---------- */
.galerie {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}
.galerie figure {
  aspect-ratio: 1; border-radius: var(--radius); overflow: clip; position: relative;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--kohle-hell), var(--kohle));
  border: 1px solid rgba(242, 233, 220, .08);
}
.galerie figure svg { width: 38%; opacity: .8; }
.galerie figcaption {
  position: absolute; inset: auto 0 0 0; padding: .7rem 1rem;
  font-size: .8rem; color: var(--creme-60);
  background: linear-gradient(transparent, rgba(16, 13, 11, .85));
}
.theme-zucker .galerie figure { background: linear-gradient(150deg, #fff, #ffe9f0); border: 2px solid rgba(61,42,38,.12); }
.theme-zucker .galerie figcaption { color: var(--kakao-60); background: linear-gradient(transparent, rgba(255,246,236,.9)); }

/* ---------- Info-Panels (Liefergebiet / Öffnungszeiten) ---------- */
.info-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.panel {
  padding: 1.8rem; border-radius: var(--radius);
  background: var(--kohle); border: 1px solid rgba(242, 233, 220, .08);
}
.panel h3 { margin-bottom: 1rem; }
.zeiten { display: grid; gap: .45rem; font-size: .97rem; }
.zeiten div { display: flex; justify-content: space-between; gap: 1rem;
  border-bottom: 1px dashed rgba(242, 233, 220, .12); padding-bottom: .45rem; }
.zeiten .tag { color: var(--creme-60); }
.liefer-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }
.liefer-tags span {
  font-size: .84rem; font-weight: 600; padding: .35rem .8rem; border-radius: 999px;
  background: rgba(204, 21, 34, .13); color: var(--glut-hell);
  border: 1px solid rgba(204, 21, 34, .3);
}

/* ---------- Social-Grid (statisch, DSGVO-sauber, verlinkt nach außen) ---------- */
.social-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
}
.social-grid a {
  aspect-ratio: 1; border-radius: var(--radius); overflow: clip;
  display: grid; place-items: center; text-decoration: none; position: relative;
  background: linear-gradient(150deg, var(--kohle-hell), var(--kohle));
  border: 1px solid rgba(242, 233, 220, .08);
  transition: transform .3s var(--ease-out);
}
.social-grid a:hover { transform: translateY(-5px) rotate(-1deg); }
.social-grid a span {
  position: absolute; bottom: .8rem; font-size: .78rem; font-weight: 700;
  opacity: 0; transition: opacity .25s;
}
.social-grid a:hover span { opacity: 1; }
.social-grid svg { width: 34%; opacity: .85; }
.theme-zucker .social-grid a { background: var(--sahne); border: 2px solid rgba(61,42,38,.14); }

/* ---------- Countdown / Aktionen ---------- */
.countdown {
  display: flex; gap: clamp(.6rem, 2vw, 1.2rem); flex-wrap: wrap;
}
.count-box {
  min-width: 84px; padding: 1rem .8rem; text-align: center;
  border-radius: 18px; background: var(--kohle);
  border: 1px solid rgba(204, 21, 34, .35);
}
.theme-zucker .count-box { background: var(--sahne); border: 2px solid var(--kakao); box-shadow: 4px 5px 0 var(--kakao); }
.count-box b {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 650; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.theme-glut .count-box b { color: var(--glut-hell); }
.theme-zucker .count-box b { color: var(--himbeere); }
.count-box small { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; opacity: .65; }

.coupon {
  display: grid; gap: 1.2rem; padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: var(--radius); position: relative; overflow: clip;
}
.theme-glut .coupon {
  background: linear-gradient(135deg, rgba(125, 15, 20, .35), rgba(204, 21, 34, .15)), var(--kohle);
  border: 1px dashed rgba(204, 21, 34, .6);
}
.theme-zucker .coupon {
  background: #fff; border: 2px dashed var(--himbeere); box-shadow: 6px 7px 0 rgba(61,42,38,.9);
}
.code-reveal {
  display: inline-flex; align-items: center; gap: .8rem;
  border: 0; border-radius: 14px; padding: .9rem 1.4rem;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 650; letter-spacing: .12em;
  background: var(--glut); color: #fff;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.theme-zucker .code-reveal { background: var(--himbeere); }
.code-reveal:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(0,0,0,.4); }
.code-reveal .code-hidden { filter: blur(7px); transition: filter .4s; }
.code-reveal.revealed .code-hidden { filter: none; }
.code-reveal .copy-hint { font-family: var(--font-body); font-size: .75rem; letter-spacing: .05em; opacity: .85; }

/* ---------- Marquee (Sweets-Ticker) ---------- */
.marquee {
  overflow: clip; white-space: nowrap;
  border-block: 2px solid var(--kakao);
  background: var(--zitrone); color: var(--kakao);
  padding: .7rem 0; font-weight: 800; letter-spacing: .06em; font-size: .95rem;
  text-transform: uppercase;
}
.marquee-inner { display: inline-block; animation: laufband 22s linear infinite; }
.marquee-inner span { margin-inline: 1.6rem; }
@keyframes laufband { to { transform: translateX(-50%); } }

/* ---------- Candy-Floater (Sweets-Signatur) ---------- */
.candy-float { position: absolute; pointer-events: none; z-index: 0; will-change: transform; }
.candy-float svg { width: 100%; height: auto; }
@keyframes schweben {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-18px) rotate(calc(var(--rot, 0deg) + 6deg)); }
}
.candy-float { animation: schweben 6s ease-in-out infinite; }
.candy-float:nth-of-type(2) { animation-duration: 7.5s; animation-delay: .8s; }
.candy-float:nth-of-type(3) { animation-duration: 8.6s; animation-delay: 1.6s; }
.candy-float:nth-of-type(4) { animation-duration: 7s; animation-delay: .4s; }

/* Parallax für Candy-Floater, wo unterstützt */
@supports (animation-timeline: scroll()) {
  .candy-parallax {
    animation: candy-drift linear both;
    animation-timeline: scroll(root);
    animation-duration: 1ms;
  }
  @keyframes candy-drift {
    from { translate: 0 0; }
    to   { translate: 0 -120px; }
  }
}

/* ---------- Standort-Splitter (Hub) ---------- */
.split-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}
.split-card {
  min-height: 420px; border-radius: calc(var(--radius) + 6px); overflow: clip;
  position: relative; display: grid; align-content: end; padding: 2rem;
  text-decoration: none; isolation: isolate;
  border: 1px solid rgba(242, 233, 220, .1);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.split-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .7); }
.split-card .split-bg { position: absolute; inset: 0; z-index: -1; transition: transform .6s var(--ease-out); }
.split-card:hover .split-bg { transform: scale(1.05); }
.split-muenster .split-bg {
  background: radial-gradient(70% 60% at 30% 20%, rgba(204, 21, 34, .4), transparent 70%), var(--kohle);
}
.split-sendenhorst .split-bg {
  background: radial-gradient(70% 60% at 70% 25%, rgba(125, 15, 20, .5), transparent 70%), var(--kohle);
}
.split-sweets .split-bg {
  background:
    radial-gradient(60% 55% at 70% 20%, rgba(255, 143, 178, .55), transparent 70%),
    radial-gradient(50% 45% at 20% 80%, rgba(255, 209, 102, .5), transparent 70%),
    var(--vanille);
}
.split-sweets { color: var(--kakao); border: 2px solid var(--kakao); }
.split-card h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .4rem; }
.split-card p { font-size: .95rem; opacity: .75; margin-bottom: 1.2rem; max-width: 34ch; }
.split-card .tag-line {
  position: absolute; top: 1.6rem; left: 2rem; font-size: .75rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; opacity: .7;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 3.5rem 0 2.5rem; font-size: .9rem;
  border-top: 1px solid rgba(242, 233, 220, .1);
}
.theme-zucker .site-footer { border-color: rgba(61, 42, 38, .14); }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  margin-bottom: 2rem;
}
.site-footer h4 { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .8rem; opacity: .6; }
.site-footer ul { display: grid; gap: .45rem; }
.site-footer a { text-decoration: none; opacity: .8; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.4rem; opacity: .6; }

/* ---------- Platzhalter-Hinweis (nur solange Links fehlen) ---------- */
.platzhalter-hinweis {
  font-size: .78rem; opacity: .55; font-style: italic;
}

/* ---------- 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;
  }
  .rv { opacity: 1; transform: none; }
  .glut-linie { display: none; }
}

/* ---------- Nachtrag: Zucker-Hero & Schärfegrad ---------- */
.hero-zucker .hero-bg {
  background:
    radial-gradient(55% 45% at 75% 20%, rgba(255, 143, 178, .5), transparent 70%),
    radial-gradient(45% 40% at 15% 75%, rgba(255, 209, 102, .55), transparent 70%),
    radial-gradient(35% 30% at 40% 35%, rgba(127, 200, 169, .35), transparent 70%),
    var(--vanille);
}
.hero-zucker .hero-bg::after { display: none; }
.hero-zucker .scroll-hint { border-color: rgba(61,42,38,.4); }
.hero-zucker .scroll-hint::before { background: var(--himbeere); }
.hero-zucker .hero-meta { color: var(--kakao-60); }
.hero-zucker .hero-meta strong { color: var(--kakao); }

/* Schärfegrad: Struktur trägt Information (Signatur der Glut-Welt) */
.heat { display: inline-flex; gap: .22rem; align-items: center; }
.heat i {
  width: 10px; height: 14px; display: inline-block;
  background: rgba(242, 233, 220, .18);
  clip-path: polygon(50% 0, 90% 35%, 78% 100%, 22% 100%, 10% 35%);
}
.heat i.on { background: linear-gradient(var(--glut-hell), var(--chili)); }
.heat-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .6; margin-left: .4rem; }

/* Breadcrumb / Rückweg */
.crumb { font-size: .85rem; opacity: .7; }
.crumb a { text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

/* Rechtsseiten */
.legal-page { padding-top: 9rem; max-width: 760px; }
.legal-page h2 { font-size: 1.35rem; margin: 2.2rem 0 .6rem; }
.legal-page p, .legal-page li { color: inherit; opacity: .85; margin-bottom: .6rem; }
.legal-page ul { list-style: disc; padding-left: 1.2rem; }
.todo-mark { background: rgba(255, 209, 102, .35); padding: 0 .3em; border-radius: 4px; font-style: normal; }

/* ---------- Echte Bild-Karten (Hero-Bestseller & Galerie) ---------- */
.card-media img,
.galerie figure img,
.split-bg img { width: 100%; height: 100%; object-fit: cover; }
.card-media { aspect-ratio: 4 / 3; }
.card-media img { transition: transform .6s var(--ease-out); }
.card:hover .card-media img { transform: scale(1.06); }
.galerie figure img { position: absolute; inset: 0; }

/* Split-Karten mit Foto-Hintergrund */
.split-card .split-bg img { position: absolute; inset: 0; z-index: -2; }
.split-card .split-bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
}
.split-muenster .split-bg::after { background: linear-gradient(180deg, rgba(16,13,11,.25), rgba(16,13,11,.9)); }
.split-sendenhorst .split-bg::after { background: linear-gradient(180deg, rgba(16,13,11,.25), rgba(16,13,11,.9)); }
.split-sweets .split-bg::after { background: linear-gradient(180deg, rgba(255,246,236,.15), rgba(255,246,236,.86)); }

/* ---------- Speisekarte (data-menu) ---------- */
.menu-filter {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.4rem;
  position: sticky; top: 68px; z-index: 40; padding: .4rem 0;
}
.theme-glut .menu-filter { background: linear-gradient(var(--rauch) 70%, transparent); }
.menu-chip {
  border: 1px solid rgba(242,233,220,.2); background: var(--kohle); color: inherit;
  padding: .55rem 1rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
  transition: background .2s, border-color .2s, transform .2s, color .2s; white-space: nowrap;
}
.menu-chip:hover { transform: translateY(-2px); border-color: rgba(228,85,44,.6); }
.menu-chip.is-active { background: linear-gradient(120deg, var(--glut), var(--glut-hell)); color: #fff; border-color: transparent; }

.menu-group { margin-bottom: 3.4rem; scroll-margin-top: 120px; }
.menu-group-title {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1.4rem; display: flex; align-items: center; gap: .6rem;
  padding-bottom: .6rem; border-bottom: 1px solid rgba(242,233,220,.12);
}
.menu-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
}
.menu-item {
  display: flex; flex-direction: column; overflow: clip;
  border-radius: var(--radius); background: var(--kohle);
  border: 1px solid rgba(242,233,220,.08);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.menu-item:hover {
  transform: translateY(-5px); border-color: rgba(228,85,44,.45);
  box-shadow: 0 22px 44px -22px rgba(0,0,0,.65);
}
.menu-item-media { position: relative; aspect-ratio: 1; overflow: clip; background: var(--kohle-hell); }
.menu-item-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.menu-item:hover .menu-item-media img { transform: scale(1.07); }
.menu-item-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.menu-item-body h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; letter-spacing: -.01em; }
.menu-item-body p { font-size: .84rem; color: var(--creme-60); line-height: 1.45; flex: 1; }
.menu-item-price {
  margin-top: .4rem; font-family: var(--font-display); font-weight: 650;
  font-size: 1.15rem; color: var(--glut-hell);
}
.badge-vegan { background: var(--pistazie); color: var(--kakao); left: auto; right: 12px; }

/* Zucker-Variante der Speisekarte */
.theme-zucker .menu-filter { background: linear-gradient(var(--vanille) 70%, transparent); }
.theme-zucker .menu-chip { background: var(--sahne); border: 2px solid var(--kakao); }
.theme-zucker .menu-chip.is-active { background: var(--himbeere); color: #fff; border-color: var(--kakao); }
.theme-zucker .menu-group-title { border-color: rgba(61,42,38,.14); }
.theme-zucker .menu-item { background: var(--sahne); border: 2px solid var(--kakao); box-shadow: 5px 6px 0 var(--kakao); }
.theme-zucker .menu-item:hover { transform: translate(-2px,-5px); box-shadow: 9px 12px 0 var(--kakao); }
.theme-zucker .menu-item-body p { color: var(--kakao-60); }
.theme-zucker .menu-item-price { color: var(--himbeere); }

@media (max-width: 780px) {
  .menu-filter { top: 60px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
}

/* ---------- Coming-Soon (Sweets) ---------- */
.soon-tag {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px;
  background: var(--zitrone); color: var(--kakao); border: 2px solid var(--kakao);
}
.menu-item.is-soon { opacity: .96; }
.menu-item.is-soon .menu-item-price { color: var(--kakao-60); font-size: .95rem; }

/* ---------- Echtes Logo (Bild statt Schriftzug) ---------- */
.logo { line-height: 0; }
.logo img { height: 40px; width: auto; display: block; }
.site-footer .logo img { height: 46px; }
.logo.logo-sweets img { height: 52px; }
.site-footer .logo.logo-sweets img { height: 58px; }
@media (max-width: 780px) {
  .logo img { height: 34px; }
  .logo.logo-sweets img { height: 44px; }
}

/* ---------- Sweets dunkel (passend zum echten Logo) ---------- */
.hero-logo-wrap { display: grid; justify-items: start; gap: 1.6rem; }
.hero-logo-wrap img { width: min(440px, 78vw); height: auto; filter: drop-shadow(0 20px 50px rgba(204,21,34,.3)); }
.hero-sweets .hero-bg {
  background:
    radial-gradient(55% 45% at 60% 40%, rgba(204,21,34,.34), transparent 68%),
    radial-gradient(45% 40% at 20% 80%, rgba(125,15,20,.4), transparent 70%),
    var(--rauch);
}
.hero-sweets .hero-bg::after {
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(38% 30% at 60% 45%, rgba(240,69,59,.2), transparent 70%);
  animation: glut-atmen 7s ease-in-out infinite alternate; filter: blur(34px);
}
.marquee.marquee-dark {
  background: linear-gradient(90deg, var(--chili), var(--glut)); color: #fff;
  border-block: 1px solid rgba(240,69,59,.4);
}
.soon-tag.soon-dark { background: var(--glut); color: #fff; border: 1px solid rgba(240,69,59,.5); }

/* ---------- Hub: Sweets-Split an dunkle Marke angleichen ---------- */
.split-sweets { color: var(--creme); border: 1px solid rgba(242,233,220,.1); }
.split-sweets .split-bg::after { background: linear-gradient(180deg, rgba(16,13,11,.25), rgba(16,13,11,.9)) !important; }
.split-sweets .split-bg { background: var(--kohle) !important; }
