/* ============================================================
   CHEFSHOPS — style.css
   Batch 01: Tokens, Fonts, Typo, Sticker-System, Navigation
   ============================================================ */

/* ---------- 1. FONTS (selbst gehostet, font-display: swap) ---------- */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/fraunces-variable.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/fraunces-variable-italic.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/instrument-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/instrument-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/caveat-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/caveat-700.woff2') format('woff2');
}

/* ---------- 2. DESIGN-TOKENS ---------- */

:root {
  --creme: #FAF4EA;
  --creme-tief: #F1E7D6;
  --espresso: #2A1E16;
  --espresso-70: rgba(42, 30, 22, .72);
  --tomate: #E8503A;
  --tomate-dunkel: #C93A26;
  --butter: #F5C64F;
  --pistazie: #7C9A55;
  --rosa: #F2A9BC;
  --himmel: #9CC8E8;
  --bon-papier: #FFFDF7;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;

  --radius-karte: 20px;
  --radius-pille: 999px;
  --schatten-karte: 0 10px 40px rgba(42, 30, 22, .10);
  --schatten-sticker: 0 4px 14px rgba(42, 30, 22, .14);

  --max-breite: 1200px;
  --sektion-abstand: clamp(5rem, 12vw, 9rem);

  --nav-hoehe: 72px;
}

/* ---------- 3. RESET ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--creme);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, svg, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul[class], ol[class] { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--tomate);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 4. TYPO-SKALA ---------- */

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7.5vw, 5.5rem);
  line-height: .98;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
p { max-width: 62ch; }
.fliess { color: var(--espresso-70); font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.klein { font-size: .9rem; }

strong, b { font-weight: 600; }
em { font-style: italic; }

/* ---------- 5. LAYOUT-UTILITIES ---------- */

.container {
  width: 100%;
  max-width: var(--max-breite);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.sektion { padding-block: var(--sektion-abstand); }
.sektion--tief { background: var(--creme-tief); }
.sektion--dunkel { background: var(--espresso); color: var(--creme); }

/* Scroll-Anker: Offset für die sticky Nav */
section[id], [id].anker { scroll-margin-top: calc(var(--nav-hoehe) + 1rem); }

.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;
}

/* ---------- 6. STICKER-SYSTEM ---------- */

/* 6.1 Sticker-Badge: Pille, rotiert, dezenter Schatten */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: .45em .9em;
  border-radius: var(--radius-pille);
  background: var(--butter);
  color: var(--espresso);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  box-shadow: var(--schatten-sticker);
  transform: rotate(-4deg);
  white-space: nowrap;
}
.sticker--rosa   { background: var(--rosa); }
.sticker--himmel { background: var(--himmel); }
.sticker--hand   { font-family: var(--font-hand); font-weight: 700; font-size: 1.3rem; }
.sticker--re     { transform: rotate(4deg); }

/* 6.2 Stempel: Outline-Oval in --tomate, caps, rotiert (Gummistempel) */
.stempel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5em 1.1em;
  border: 2.5px solid var(--tomate);
  border-radius: 50% / 60%;
  color: var(--tomate);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: rotate(-8deg);
  mix-blend-mode: multiply;
  opacity: .9;
}
.stempel--gerade { transform: rotate(-3deg); }

/* 6.3 Marker-Unterstreichung: Butter-Balken hinter Text */
.marker {
  position: relative;
  display: inline;
  z-index: 0;
}
.marker::after {
  content: "";
  position: absolute;
  left: -.12em; right: -.12em;
  bottom: .04em;
  height: .42em;
  background: var(--butter);
  transform: skew(-2deg) rotate(-.6deg);
  z-index: -1;
  border-radius: 2px;
}
.marker--tomate::after { background: var(--tomate); opacity: .25; }
.marker--pistazie::after { background: var(--pistazie); opacity: .3; }

/* 6.4 Caveat-Randnotiz + handgezeichneter Pfeil */
.notiz {
  font-family: var(--font-hand);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--espresso-70);
}
.notiz-pfeil {
  display: inline-block;
  width: 3.5rem;
  height: auto;
  color: var(--espresso);
  vertical-align: middle;
}
.notiz-pfeil path { stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; fill: none; }

/* ---------- 7. BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .85em 1.6em;
  border-radius: var(--radius-pille);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary {
  background: var(--tomate);
  color: #fff;
}
.btn-primary:hover {
  background: var(--tomate-dunkel);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: rgba(42, 30, 22, .22);
}
.btn-ghost:hover {
  border-color: var(--espresso);
  transform: translateY(-2px);
}
.btn--gross { padding: 1.05em 2em; font-size: 1.1rem; }

/* ---------- 8. NAVIGATION ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-hoehe);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.is-scrolled {
  background: rgba(250, 244, 234, .9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(42, 30, 22, .08);
}
.nav__inner {
  width: 100%;
  max-width: var(--max-breite);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Wortmarke */
.marke {
  display: inline-flex;
  align-items: baseline;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.marke__shops { color: var(--tomate); }
.marke__claim {
  font-family: var(--font-hand);
  font-weight: 500;
  font-size: 1rem;
  color: var(--espresso-70);
  letter-spacing: 0;
}
@media (max-width: 900px) { .marke__claim { display: none; } }

/* Desktop-Menü */
.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.nav__link {
  font-weight: 500;
  font-size: .98rem;
  color: var(--espresso);
  position: relative;
  padding: .25em 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--tomate);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  z-index: 210;
}
.burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.burger span + span { margin-top: 6px; }
body.menu-offen .burger span { background: var(--creme); }
body.menu-offen .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-offen .burger span:nth-child(2) { opacity: 0; }
body.menu-offen .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobiles Fullscreen-Overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--espresso);
  color: var(--creme);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: clamp(2rem, 8vw, 4rem);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.7,0,.2,1);
  visibility: hidden;
}
body.menu-offen .nav__overlay { transform: translateY(0); visibility: visible; }
.nav__overlay a.nav__link--overlay {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 9vw, 3rem);
  color: var(--creme);
  line-height: 1.1;
}
.nav__overlay a.nav__link--overlay::after { background: var(--butter); }
.nav__overlay .btn { margin-top: 1.5rem; align-self: flex-start; }
.nav__overlay-claim {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--butter);
  margin-top: auto;
}

@media (max-width: 820px) {
  .nav__menu, .nav__actions .btn-primary { display: none; }
  .burger { display: block; }
}

/* Kein Body-Scroll wenn Menü offen */
body.menu-offen { overflow: hidden; }

/* Nav (und damit das Burger-X) über das Overlay heben; Blur-Band ausblenden */
body.menu-offen .nav {
  z-index: 210;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-color: transparent;
}
/* Wortmarke im offenen Overlay in Creme, damit sie lesbar bleibt */
body.menu-offen .marke { color: var(--creme); }
body.menu-offen .marke__shops { color: var(--butter); }

/* ---------- 8b. HERO (#start) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
/* Warmer Verlauf: Video „schmilzt" unten in die Creme-Fläche */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(42,30,22,.55),
    rgba(42,30,22,.25) 45%,
    rgba(250,244,234,1) 100%);
}
.hero-content {
  padding-top: calc(var(--nav-hoehe) + 2rem);
  padding-bottom: 4rem;
  max-width: 760px;
}
.hero-sticker { transform: rotate(-4deg); transform-origin: left center; }
.hero-h1 {
  margin-top: 1.4rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(42,30,22,.35);
}
.hero-wort { display: inline-block; }
.hero-sub {
  margin-top: 1.5rem;
  max-width: 52ch;
  color: rgba(255,255,255,.94);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(42,30,22,.3);
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.hero-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.hero-cta .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.hero-cta-wrap { position: relative; display: inline-flex; }
.hero-notiz {
  position: absolute;
  left: .5rem;
  bottom: calc(100% + .35rem);
  transform: rotate(-3deg);
  transform-origin: left bottom;
  display: flex;
  align-items: flex-end;
  gap: .3rem;
  color: #fff;
  white-space: nowrap;
  font-size: 1.3rem;
  text-shadow: 0 1px 10px rgba(42,30,22,.4);
}
.hero-notiz .notiz-pfeil { color: #fff; width: 2.6rem; transform: rotate(105deg); }
@media (max-width: 620px) { .hero-notiz { display: none; } }

.hero-trust {
  margin-top: 1.75rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  font-size: .95rem;
}
.hero-trust span { white-space: nowrap; }

/* Draw-Marker (Textmarker „zieht durch") */
.marker--draw::after {
  transform: skew(-2deg) rotate(-.6deg) scaleX(0);
  transform-origin: left center;
  transition: transform .5s ease;
}
.marker--draw.is-drawn::after { transform: skew(-2deg) rotate(-.6deg) scaleX(1); }

/* Scroll-Hinweis */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--espresso-70);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  z-index: 1;
  transition: opacity .4s ease;
}

/* CTAs mobil gestapelt, volle Breite Tap-Target */
@media (max-width: 520px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-cta-wrap { width: 100%; }
  .hero-cta-wrap .btn { width: 100%; }
}

/* ---------- 8c. PROBLEM / KASSENBON (#kassenbon) ---------- */

.problem__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .problem__grid { grid-template-columns: 1fr 1fr; }
  .problem__text { position: sticky; top: 20vh; }
}

.problem__text .h2 { margin-top: 1.2rem; }
.problem__text .fliess { margin-top: 1.25rem; }
.problem__notiz {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.problem__notiz .notiz-pfeil { width: 3rem; }
@media (max-width: 899px) {
  .problem__notiz .notiz-pfeil { transform: rotate(70deg); }
}

/* Der Bon */
.bon-wrap {
  display: flex;
  justify-content: center;
  overflow: hidden;            /* Bon fährt wie aus dem Drucker heraus */
  padding: 1rem 0 2rem;
}
.bon {
  --zack: 11px;
  position: relative;
  width: 100%;
  max-width: 380px;
  background: var(--bon-papier);
  color: var(--espresso);
  padding: calc(var(--zack) + 1.6rem) 1.6rem calc(var(--zack) + 1.6rem);
  font-family: ui-monospace, 'SF Mono', 'Menlo', 'Consolas', monospace;
  font-size: .84rem;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
  transform: rotate(1.5deg);
  filter: drop-shadow(0 14px 34px rgba(42,30,22,.18));
  /* Zickzack-Kante oben + unten */
  -webkit-mask:
    conic-gradient(from -45deg at bottom, #0000 25%, #000 0) repeat-x bottom / calc(var(--zack)*2) var(--zack),
    conic-gradient(from 135deg at top,    #0000 25%, #000 0) repeat-x top    / calc(var(--zack)*2) var(--zack),
    linear-gradient(#000 0 0) no-repeat center / 100% calc(100% - var(--zack)*2 + 1px);
          mask:
    conic-gradient(from -45deg at bottom, #0000 25%, #000 0) repeat-x bottom / calc(var(--zack)*2) var(--zack),
    conic-gradient(from 135deg at top,    #0000 25%, #000 0) repeat-x top    / calc(var(--zack)*2) var(--zack),
    linear-gradient(#000 0 0) no-repeat center / 100% calc(100% - var(--zack)*2 + 1px);
}

.bon__kopf { text-align: center; letter-spacing: .12em; font-weight: 700; }
.bon__sub  { text-align: center; color: var(--espresso-70); margin-bottom: .2rem; }
.bon__trenn { border: 0; border-top: 1.5px dashed rgba(42,30,22,.28); margin: .6rem 0; }
.bon__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.bon__row .preis { white-space: nowrap; }
.bon__provision { color: var(--tomate); font-weight: 700; }
.bon__provision .preis { color: var(--tomate); }
.bon__pfeil { color: var(--espresso-70); font-style: italic; padding-left: .4rem; }
.bon__bleibt { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0; }
.bon__danke { text-align: center; color: var(--espresso-70); margin-top: .3rem; }

/* Highlight-Aufblitzen der Provisions-Zeile */
.bon__provision.is-flash { animation: bonFlash .6s ease forwards; }
@keyframes bonFlash {
  0%   { background: var(--butter); box-shadow: 0 0 0 6px var(--butter); }
  100% { background: transparent; box-shadow: 0 0 0 0 transparent; }
}

/* Der Stempel quer über den unteren Bon */
.stempel-bon {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translate(-50%, 0) rotate(-8deg);
  padding: .5em 1em;
  border: 2.5px solid var(--tomate);
  border-radius: 8px;
  color: var(--tomate);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Caveat-Rechnung unter dem Bon */
.rechnung {
  max-width: 460px;
  margin: 1rem auto 0;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--espresso-70);
}
.rechnung strong { color: var(--tomate); font-weight: 700; }

/* ---------- 8d. ALTERNATIVE / 3 SÄULEN (#alternative) ---------- */

/* Weicher Flächenwechsel creme -> creme-tief (kein harter Strich) */
.alternative {
  background: linear-gradient(var(--creme), var(--creme-tief) 7rem);
}

.saeulen__kopf { text-align: center; max-width: 720px; margin-inline: auto; }
.saeulen__kopf .h2 { margin-top: 1rem; }
.saeulen__kopf .intro { margin: 1.1rem auto 0; max-width: 60ch; }

.saeulen {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
@media (min-width: 900px) { .saeulen { grid-template-columns: repeat(3, 1fr); } }

.saeule {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bon-papier);
  border-radius: var(--radius-karte);
  box-shadow: var(--schatten-karte);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  transition: transform .4s ease, box-shadow .4s ease, opacity .4s ease;
}
.saeule__sticker {
  position: absolute;
  top: -.7rem; right: 1rem;
  z-index: 2;
}
.saeule__wort {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  letter-spacing: -0.01em;
  line-height: 1;
}
.saeule__bild {
  margin: 1.1rem 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--creme-tief);
  aspect-ratio: 4 / 3;
}
.saeule__bild img { width: 100%; height: 100%; object-fit: cover; }
.saeule__text { color: var(--espresso-70); font-size: .98rem; line-height: 1.5; }
.saeule__link {
  margin-top: 1rem;
  align-self: flex-start;
  font-weight: 600;
  color: var(--tomate);
}
.saeule__link:hover { color: var(--tomate-dunkel); }
.saeule__link::after { content: ""; }

/* Fokus-Choreographie: genau EINE Karte betont */
.saeulen.focus-aktiv .saeule { opacity: .72; }
.saeulen.focus-aktiv .saeule.is-focus {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(42,30,22,.18);
}

/* Browser-Frame (Karte 1) */
.browserframe {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: #fff;
}
.browserframe__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 10px;
  background: #EFE9DE;
  border-bottom: 1px solid rgba(42,30,22,.08);
  flex: 0 0 auto;
}
.browserframe__bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #D8CFBE;
}
.browserframe__bar span:nth-child(1) { background: var(--tomate); opacity: .7; }
.browserframe__bar span:nth-child(2) { background: var(--butter); }
.browserframe__bar span:nth-child(3) { background: var(--pistazie); opacity: .7; }
.browserframe__view { flex: 1; overflow: hidden; }
.browserframe__view img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* Kunden-Liste (Karte 2, reine CSS/SVG-Illustration) */
.kundenliste {
  width: 100%; height: 100%;
  padding: 1rem 1.1rem;
  display: flex; flex-direction: column; gap: .55rem;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .8rem;
  background:
    repeating-linear-gradient(var(--bon-papier), var(--bon-papier) 1.9rem, rgba(42,30,22,.05) 1.9rem, rgba(42,30,22,.05) calc(1.9rem + 1px));
}
.kundenliste__row {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--espresso);
}
.kundenliste__row .herz { color: var(--tomate); }
.kundenliste__mehr { margin-top: auto; color: var(--pistazie); font-weight: 700; }

/* Abschluss-Zeile */
.alternative__abschluss {
  margin-top: clamp(3rem, 7vw, 5rem);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ---------- 8e. DEMO-SHOPS / BRANCHEN-KARTEN (#demos) ---------- */

/* Animierbare Custom Properties fürs Food-Motiv (Parallax + Hover getrennt) */
@property --py { syntax: '<length>'; inherits: false; initial-value: 0px; }
@property --sc { syntax: '<number>'; inherits: false; initial-value: 1; }
@property --rot { syntax: '<angle>'; inherits: false; initial-value: 0deg; }

.demos__kopf { text-align: center; max-width: 720px; margin-inline: auto; }
.demos__kopf .h2 { margin-top: 1rem; }
.demos__kopf .intro { margin: 1.1rem auto 0; max-width: 60ch; }

.demos__grid {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .demos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  /* Mobil: horizontales Kartenblättern mit Snap */
  .demos__grid {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 78vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    padding-bottom: 1rem;
    margin-inline: calc(-1 * clamp(1.25rem, 5vw, 2.5rem));
    padding-inline: clamp(1.25rem, 5vw, 2.5rem);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .demos__grid::-webkit-scrollbar { display: none; }
  .branche { scroll-snap-align: center; }
}

.branche {
  --farbe: #B8451F;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bon-papier);
  box-shadow: var(--schatten-karte);
  transition: transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
}
.branche__link { display: block; width: 100%; height: 100%; position: relative; color: inherit; }

/* Farbfläche rechts (~55 %) */
.branche__farbe {
  position: absolute;
  inset: 0 0 0 44%;
  background: var(--farbe);
  overflow: hidden;
}
.branche--bald .branche__farbe { filter: saturate(.75); }

/* Vertikale XXL-Typo, angeschnitten */
.branche__vname {
  position: absolute;
  top: -.06em; right: .04em;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  font-size: clamp(3.2rem, 6vw, 4.4rem);
  line-height: .82;
  letter-spacing: -0.01em;
  white-space: nowrap;
  pointer-events: none;
}

/* Weiße Fläche links (~44 %) */
.branche__weiss {
  position: absolute;
  inset: 0 56% 0 0;
  padding: 1rem .9rem;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
/* Titel unter den live-Sticker rücken */
.branche--live .branche__weiss { padding-top: 2.9rem; }
.branche__ghost {
  position: absolute;
  left: -.1em; bottom: .2rem;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: .05em;
  -webkit-text-stroke: 1px var(--espresso);
  color: transparent;
  opacity: .1;
  pointer-events: none;
}
.branche__titel {
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--farbe);
  line-height: 1.15;
}
.branche__desc { margin-top: .35rem; font-size: .72rem; color: var(--espresso-70); line-height: 1.35; }

/* Food-Motiv sitzt auf der Kante */
.branche__food {
  position: absolute;
  top: 54%;
  left: 45%;
  width: 58%;
  aspect-ratio: 1;
  --py: 0px; --sc: 1; --rot: 0deg;
  transform: translate(-50%, -50%) translateY(var(--py)) scale(var(--sc)) rotate(var(--rot));
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(42,30,22,.28);
  z-index: 3;
  transition: --sc .4s ease, --rot .4s ease;
  transform-origin: center;
}

/* live-Sticker oben links */
.branche__live {
  position: absolute;
  top: .7rem; left: .7rem;
  z-index: 4;
  background: var(--pistazie);
  color: #fff;
  font-size: .78rem;
  padding: .35em .75em;
  transform: rotate(-4deg);
}

/* Chip „Shop öffnen ↗" — erscheint bei Hover */
.branche__chip {
  position: absolute;
  left: .7rem; bottom: .7rem;
  z-index: 4;
  background: var(--espresso);
  color: var(--creme);
  font-size: .74rem;
  font-weight: 600;
  padding: .4em .7em;
  border-radius: var(--radius-pille);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}

/* BALD-Badge */
.branche__bald {
  position: absolute;
  top: 54%; left: 45%;
  transform: translate(-50%,-50%) rotate(-10deg);
  z-index: 5;
  padding: .35em .9em;
  border: 2.5px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .95rem;
  text-transform: uppercase;
}
.branche__tooltip {
  position: absolute;
  left: 50%; bottom: .7rem;
  transform: translateX(-50%);
  z-index: 6;
  font-family: var(--font-hand);
  font-size: 1.05rem;
  color: var(--espresso);
  background: var(--butter);
  padding: .1em .6em;
  border-radius: var(--radius-pille);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

/* Hover-Verhalten LIVE */
@media (hover: hover) {
  .branche--live:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(42,30,22,.22); }
  .branche--live:hover .branche__food { --sc: 1.06; --rot: 2deg; }
  .branche--live:hover .branche__chip { opacity: 1; transform: translateY(0); }
  .branche--bald:hover .branche__tooltip { opacity: 1; }
}

/* Zeile unter dem Grid */
.demos__fehlt {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}
.demos__fehlt .notiz { max-width: 30ch; }

/* ---------- 8f. ABLAUF / TIMELINE (#ablauf) ---------- */

.ablauf {
  /* Weicher Übergang creme -> espresso -> creme */
  background:
    linear-gradient(var(--creme) 0, var(--espresso) 6rem,
      var(--espresso) calc(100% - 6rem), var(--creme) 100%);
  color: var(--creme);
}
.ablauf__kopf { text-align: center; max-width: 720px; margin-inline: auto; }
.ablauf__kopf .h2 { color: var(--creme); margin-top: 1rem; }
.ablauf__kopf .intro { margin: 1.1rem auto 0; max-width: 60ch; color: rgba(250,244,234,.78); }

.ablauf__layout {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .ablauf__layout { grid-template-columns: 1fr 340px; align-items: start; }
}

/* Timeline */
.ablauf__timeline { position: relative; padding-left: 2.5rem; }
.ablauf__linie {
  position: absolute;
  left: 9px; top: .4rem; bottom: .4rem;
  width: 3px;
  background: rgba(250,244,234,.15);
  border-radius: 3px;
  overflow: hidden;
}
.ablauf__fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--tomate);
  border-radius: 3px;
  transition: height .15s linear;
}
.ablauf--static .ablauf__fill { height: 100% !important; }

.ablauf__stationen { display: flex; flex-direction: column; gap: clamp(2.2rem, 5vw, 3.2rem); }

.station { position: relative; }
.station__punkt {
  position: absolute;
  left: calc(-2.5rem + 3px);
  top: .35rem;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--espresso);
  border: 2px solid rgba(250,244,234,.4);
  z-index: 2;
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.station.is-lit .station__punkt { background: var(--tomate); border-color: var(--tomate); }
.station.is-active .station__punkt { animation: punktPuls .6s ease; }
@keyframes punktPuls {
  0%   { box-shadow: 0 0 0 0 rgba(232,80,58,.5); }
  100% { box-shadow: 0 0 0 12px rgba(232,80,58,0); }
}

.station__inhalt {
  opacity: .35;
  transform: translateX(0);
  transition: opacity .4s ease, transform .4s ease;
}
.station.is-active .station__inhalt { opacity: 1; transform: translateX(8px); }
.ablauf--static .station__inhalt { opacity: 1; }

.station__titel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.15;
  color: var(--creme);
}
.station__text { margin-top: .5rem; color: rgba(250,244,234,.75); max-width: 46ch; font-size: 1rem; line-height: 1.55; }
.station__extra { margin-top: .9rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Station 2 — Browser-Mockup schwebt ein */
.station__mockup {
  width: min(300px, 80%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  opacity: 0;
  transform: rotate(-3deg) translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.station.is-lit .station__mockup,
.ablauf--static .station__mockup { opacity: 1; transform: rotate(-3deg) translateY(0); }

/* Station 4 — Stempel-Knall */
.station__stempel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5em 1.1em;
  border: 2.5px solid var(--tomate);
  border-radius: 8px;
  color: var(--tomate);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .95rem;
  background: var(--creme);
  transform: rotate(-6deg);
}
.station.is-active .station__stempel { animation: stempelKnall .35s cubic-bezier(.6,0,.2,1); }
@keyframes stempelKnall {
  0%   { transform: rotate(-20deg) scale(2); opacity: 0; }
  100% { transform: rotate(-6deg) scale(1); opacity: 1; }
}

/* Wirt-Polaroid */
.ablauf__polaroid { margin: 0; }
@media (min-width: 900px) {
  .ablauf__polaroid { position: sticky; top: 20vh; }
  .ablauf__polaroid--mobil { display: none; }
}
@media (max-width: 899px) {
  .ablauf__polaroid--desktop { display: none; }
  .ablauf__polaroid--mobil { margin: .5rem 0; }
}
.polaroid {
  background: #fff;
  padding: .8rem .8rem 1.4rem;
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
  transform: rotate(-2.5deg);
  max-width: 300px;
  margin-inline: auto;
}
.polaroid img { width: 100%; border-radius: 2px; aspect-ratio: 3/4; object-fit: cover; }
.polaroid figcaption {
  margin-top: .7rem;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--espresso);
}

/* ---------- 8g. ANGEBOT / SPEISEKARTE (#angebot) ---------- */

.angebot__kopf { text-align: center; max-width: 720px; margin-inline: auto; }
.angebot__kopf .h2 { margin-top: 1rem; }

.menukarte {
  max-width: 720px;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  background: var(--bon-papier);
  border: 1px solid var(--espresso);
  outline: 1px solid var(--espresso);
  outline-offset: 4px;
  padding: clamp(1.8rem, 5vw, 3.2rem);
  transform: rotate(-0.5deg);
  box-shadow: var(--schatten-karte);
}
.menukarte__label {
  text-align: center;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--espresso-70);
}

/* Preisblock */
.menukarte__preis {
  text-align: center;
  margin: 1.4rem 0 .4rem;
  position: relative;
}
.preis__einmalig {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.preis__einmalig small { font-family: var(--font-body); font-weight: 500; font-size: .9rem; color: var(--espresso-70); letter-spacing: 0; }
.preis__monat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-top: .3rem;
  line-height: 1.1;
}
.preis__monat small { font-family: var(--font-body); font-weight: 500; font-size: .85rem; color: var(--espresso-70); }
.preis__monat .monate { position: relative; }
.preis__notiz {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .6rem;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--espresso-70);
}
.preis__notiz .notiz-pfeil { width: 2.4rem; transform: rotate(-140deg); }

/* Leistungs-Positionen mit Punktlinien */
.leistungen { margin: 1.8rem 0; display: flex; flex-direction: column; gap: .55rem; }
.pos { display: flex; align-items: flex-end; gap: .5rem; line-height: 1.3; }
.pos__name { flex: 0 1 auto; }
.pos__dots { flex: 1 1 auto; border-bottom: 2px dotted rgba(42,30,22,.35); transform: translateY(-.28em); min-width: 1.5rem; }
.pos__check {
  flex: 0 0 auto;
  color: var(--pistazie);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
}
.pos__check--pop { transform: scale(1); }
.pos--nein .pos__wert { color: var(--tomate); font-weight: 600; white-space: nowrap; }
.pos--nein { position: relative; }
.pos--nein.is-flash .pos__wert { animation: bonFlash .6s ease; border-radius: 4px; padding: 0 .2em; }

.menukarte__abschluss {
  margin-top: 1.6rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.3;
  color: var(--espresso);
}
.menukarte__cta { margin-top: 1.6rem; text-align: center; }
@media (max-width: 520px) { .menukarte__cta .btn { width: 100%; } }

.angebot__vergleich {
  max-width: 560px;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--espresso-70);
}

/* ---------- 8h. FAQ (#faq) ---------- */

.faq__kopf { text-align: center; max-width: 720px; margin-inline: auto; }
.faq__kopf .h2 { margin-top: 1rem; }

.faq__liste { max-width: 820px; margin: clamp(2.5rem, 6vw, 3.5rem) auto 0; }

.faq-item { border-bottom: 1px solid rgba(42,30,22,.14); }
.faq-item:first-child { border-top: 1px solid rgba(42,30,22,.14); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.25;
  color: var(--espresso);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 3px solid var(--tomate); outline-offset: 4px; border-radius: 6px; }

/* Plus-Icon, dreht zu × */
.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px; height: 22px;
  transition: transform .35s cubic-bezier(.6,0,.2,1);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 2.5px;
  background: var(--tomate);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq__icon { transform: rotate(135deg); }

.faq__answer { overflow: hidden; }
.faq__answer p {
  padding: 0 0 1.35rem;
  margin: 0;
  max-width: 72ch;
  color: var(--espresso-70);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* ---------- 8i. KONTAKT / BESTELLZETTEL (#kontakt) ---------- */

.kontakt__kopf { text-align: center; max-width: 640px; margin-inline: auto; }
.kontakt__kopf .h2 { margin-top: 1rem; }
.kontakt__kopf .intro { margin: 1.1rem auto 0; max-width: 56ch; }

.bestellzettel {
  --zack: 11px;
  position: relative;
  max-width: 620px;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  background: var(--bon-papier);
  padding: calc(var(--zack) + 2rem) clamp(1.5rem, 5vw, 2.6rem) clamp(1.8rem, 5vw, 2.6rem);
  box-shadow: var(--schatten-karte);
  /* Zackenkante nur oben */
  -webkit-mask:
    conic-gradient(from 135deg at top, #0000 25%, #000 0) repeat-x top / calc(var(--zack)*2) var(--zack),
    linear-gradient(#000 0 0) no-repeat bottom / 100% calc(100% - var(--zack) + 1px);
          mask:
    conic-gradient(from 135deg at top, #0000 25%, #000 0) repeat-x top / calc(var(--zack)*2) var(--zack),
    linear-gradient(#000 0 0) no-repeat bottom / 100% calc(100% - var(--zack) + 1px);
}
.bestellzettel__label {
  text-align: center;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--espresso-70);
  margin-bottom: 1.4rem;
}

.feld { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; }
.feld label { font-weight: 600; font-size: .92rem; }
.feld input[type="text"], .feld input[type="url"] {
  width: 100%;
  padding: .8em .9em;
  border: 1.5px solid rgba(42,30,22,.25);
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.feld input:focus {
  outline: none;
  border-color: var(--tomate);
  box-shadow: 0 0 0 3px rgba(232,80,58,.15);
}
.feld input[aria-invalid="true"] { border-color: var(--tomate); }
.feld__fehler { color: var(--tomate-dunkel); font-size: .85rem; min-height: 0; }

.feld--check { flex-direction: row; align-items: flex-start; gap: .6rem; margin: 1.3rem 0; }
.feld--check input { margin-top: .2em; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--tomate); }
.feld--check label { font-weight: 400; font-size: .9rem; color: var(--espresso-70); line-height: 1.4; }
.feld--check a { color: var(--tomate); text-decoration: underline; }

.bestellzettel .btn-submit { width: 100%; }

.form-meldung {
  margin: 0 0 .8rem;
  min-height: 0;
  color: var(--tomate-dunkel);
  font-size: .92rem;
  line-height: 1.4;
}
.form-meldung:empty { margin: 0; }

/* Honeypot unsichtbar */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Trennzeile */
.zettel-trenn {
  display: flex; align-items: center; justify-content: center;
  gap: .6rem; margin: 1.6rem 0 1.2rem;
  color: var(--espresso-70);
  font-size: .9rem;
  letter-spacing: .1em;
}
.zettel-trenn::before, .zettel-trenn::after {
  content: "· · ·"; letter-spacing: .2em; color: rgba(42,30,22,.4);
}
.kontakt-calendly { width: 100%; }
.kontakt-notiz {
  margin-top: 1rem;
  display: flex; align-items: center; gap: .4rem; justify-content: center;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--espresso-70);
}
.kontakt-notiz .notiz-pfeil { width: 2.4rem; transform: rotate(-150deg); flex: 0 0 auto; }

/* Florian-Zeile */
.florian-zeile {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  margin-top: 1.6rem;
  border-top: 1.5px dashed rgba(42,30,22,.2);
  padding-top: 1.3rem;
}
.florian-foto {
  width: 52px; height: 52px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--creme);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  background-size: cover; background-position: center;
}
.florian-text { font-family: var(--font-hand); font-size: 1.2rem; color: var(--espresso-70); text-align: left; }

/* Erfolgszustand */
.bestellzettel__erfolg { display: none; text-align: center; padding: 1rem 0; }
.bestellzettel.is-erfolg .bestellzettel__form { display: none; }
.bestellzettel.is-erfolg .bestellzettel__erfolg { display: block; }
.erfolg__titel { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,4vw,2.6rem); }
.erfolg__text { color: var(--espresso-70); margin: .8rem auto 1.4rem; max-width: 42ch; }
.erfolg__stempel {
  display: inline-block;
  padding: .5em 1.4em;
  border: 3px solid var(--tomate);
  border-radius: 10px;
  color: var(--tomate);
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-size: 1.2rem;
  transform: rotate(-7deg);
  margin-bottom: 1.6rem;
  animation: stempelKnall .4s cubic-bezier(.6,0,.2,1);
}

/* ---------- 8j. FOOTER ---------- */

.footer {
  background: var(--espresso);
  color: var(--creme);
  padding-block: clamp(3rem, 7vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: 1.4fr repeat(4, 1fr);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__marke {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}
.footer__marke .marke__shops { color: var(--tomate); }
.footer__claim { font-family: var(--font-hand); font-size: 1.25rem; color: rgba(250,244,234,.7); margin-top: .3rem; }

.footer__spalte h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,244,234,.5);
  margin-bottom: .9rem;
}
.footer__spalte ul { display: flex; flex-direction: column; gap: .55rem; }
.footer__spalte a { color: rgba(250,244,234,.85); font-size: .98rem; transition: color .2s ease; }
.footer__spalte a:hover { color: var(--tomate); }

.footer__bottom {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,244,234,.12);
  font-size: .88rem;
  color: rgba(250,244,234,.6);
}

/* ---------- 8k. RECHTSTEXT-SEITEN (Impressum / Datenschutz) ---------- */

.rechtstext { max-width: 720px; padding-top: calc(var(--nav-hoehe) + 2.5rem); }
.rechtstext h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem; }
.rechtstext h2 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin: 2rem 0 .6rem; }
.rechtstext h3 { font-size: 1.1rem; margin: 1.2rem 0 .4rem; }
.rechtstext p, .rechtstext ul { color: var(--espresso-70); margin-bottom: .8rem; line-height: 1.65; max-width: 68ch; }
.rechtstext ul { padding-left: 1.2rem; list-style: disc; }
.rechtstext a { color: var(--tomate); text-decoration: underline; }
.rechtstext .zurueck { display: inline-block; margin-bottom: 1.5rem; color: var(--espresso); font-weight: 500; }

/* ---------- 9. REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
