@charset "UTF-8";
/* =========================================================================
   Hummus-Info – Gestaltung
   Farben aus dem Teller: Kichererbsencreme, Sesam, Olivenöl, Paprikastaub.
   Bewegung nach den Regeln von Emil Kowalski: nur transform und opacity,
   eigene Easing-Kurven, nichts startet bei scale(0), Reduced Motion wird
   respektiert.
   ========================================================================= */

/* --- Marken ------------------------------------------------------------- */
:root {
  /* Flächen */
  --kichererbse:        #F1E5CE;
  --kichererbse-tief:   #E4D2AE;
  --sesam:              #FFFCF6;
  --sesam-gedimmt:      #FAF3E6;

  /* Schrift */
  --tinte:              #241C13;
  --tinte-weich:        #6B5C4B;
  --tinte-leise:        #94856F;

  /* Akzente */
  --paprika:            #B2381A;
  --paprika-tief:       #8E2A11;
  --olive:              #4E5B2C;
  --kreuzkuemmel:       #8A5A2B;
  --olivenoel:          #C79A2E;

  /* Linien und Schatten */
  --rand:               rgba(36, 28, 19, .12);
  --rand-stark:         rgba(36, 28, 19, .22);
  --schatten-klein:     0 1px 2px rgba(36, 28, 19, .06), 0 2px 6px rgba(36, 28, 19, .05);
  --schatten-gross:     0 2px 4px rgba(36, 28, 19, .05), 0 12px 32px rgba(36, 28, 19, .10);

  /* Schriftfamilien – bewusst systemeigen: keine externen Webfonts,
     das spart einen Roundtrip und vermeidet den Google-Fonts-Datenschutzärger. */
  --schrift-titel: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, ui-serif, serif;
  --schrift-text:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Bewegung */
  --aus:      cubic-bezier(.23, 1, .32, 1);
  --rein-aus: cubic-bezier(.77, 0, .175, 1);

  /* Maße */
  --spalte:   min(100% - 2.5rem, 68rem);
  --spalte-schmal: min(100% - 2.5rem, 44rem);
  --radius:   14px;
  --radius-gross: 22px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--kichererbse);
  color: var(--tinte);
  font-family: var(--schrift-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
img { background: var(--kichererbse-tief); }

a { color: var(--paprika); text-decoration-thickness: 1px; text-underline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--schrift-titel);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.012em;
  text-wrap: balance;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.9vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 1.08rem + .6vw, 1.45rem); }
p  { margin: 0 0 1.1em; text-wrap: pretty; }

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

::selection { background: var(--olivenoel); color: var(--tinte); }

.spalte        { width: var(--spalte);        margin-inline: auto; }
.spalte-schmal { width: var(--spalte-schmal); margin-inline: auto; }

.nur-vorleser {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.direkt-zum-inhalt {
  position: fixed; top: .5rem; left: .5rem; z-index: 200;
  background: var(--tinte); color: var(--sesam);
  padding: .7rem 1.1rem; border-radius: 10px; font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms var(--aus);
}
.direkt-zum-inhalt:focus { transform: translateY(0); }

/* --- Schaltflächen ------------------------------------------------------ */
.knopf {
  --knopf-flaeche: var(--paprika);
  --knopf-schrift: #FFF6EF;
  display: inline-flex; align-items: center; gap: .55rem;
  min-height: 48px;                     /* bequemes Ziel am Daumen */
  padding: .8rem 1.5rem;
  background: var(--knopf-flaeche);
  color: var(--knopf-schrift);
  border: 0; border-radius: 999px;
  font: inherit; font-weight: 600; letter-spacing: .005em;
  text-decoration: none; cursor: pointer;
  transition: transform 140ms var(--aus), background-color 180ms ease;
}
.knopf:active { transform: scale(.97); }   /* sofortiges Druckfeedback */
.knopf--leise {
  --knopf-flaeche: transparent;
  --knopf-schrift: var(--tinte);
  box-shadow: inset 0 0 0 1.5px var(--rand-stark);
}
@media (hover: hover) and (pointer: fine) {
  .knopf:hover        { background: var(--paprika-tief); }
  .knopf--leise:hover { background: rgba(36, 28, 19, .05); }
}

/* =========================================================================
   Kopfzeile
   ========================================================================= */
.kopf {
  position: sticky; top: 0; z-index: 100;
  background: rgba(241, 229, 206, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, background-color 220ms ease;
}
.kopf[data-gescrollt="ja"] { border-bottom-color: var(--rand); }

.kopf__innen {
  display: flex; align-items: center; gap: 1rem;
  min-height: 4rem;
}

.marke {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--schrift-titel); font-weight: 700;
  font-size: 1.2rem; letter-spacing: -.02em;
  color: var(--tinte); text-decoration: none;
  margin-right: auto;
}
.marke__zeichen { width: 34px; height: 34px; flex: 0 0 auto; }
.marke__zeichen .oel { fill: var(--olivenoel); }
.marke__zeichen .creme { fill: var(--kichererbse-tief); }
.marke__zeichen .wirbel { fill: none; stroke: var(--kreuzkuemmel); stroke-width: 5; stroke-linecap: round; }
.marke__zeichen .staub { fill: var(--paprika); }

.navigation { display: flex; align-items: center; gap: .25rem; }
.navigation a {
  padding: .6rem .85rem; border-radius: 999px;
  color: var(--tinte); text-decoration: none; font-weight: 550;
  transition: background-color 160ms ease;
}
.navigation a[aria-current="page"] { color: var(--paprika); }
@media (hover: hover) and (pointer: fine) {
  .navigation a:hover { background: rgba(36, 28, 19, .06); }
}

.suchknopf {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border: 0; border-radius: 999px;
  background: transparent; color: var(--tinte); cursor: pointer;
  transition: transform 140ms var(--aus), background-color 160ms ease;
}
.suchknopf:active { transform: scale(.94); }
@media (hover: hover) and (pointer: fine) {
  .suchknopf:hover { background: rgba(36, 28, 19, .06); }
}

.menuknopf { display: none; }

@media (max-width: 46rem) {
  .menuknopf {
    display: inline-grid; place-items: center;
    width: 44px; height: 44px; border: 0; border-radius: 999px;
    background: transparent; color: var(--tinte); cursor: pointer;
    transition: transform 140ms var(--aus);
  }
  .menuknopf:active { transform: scale(.94); }

  .navigation {
    position: fixed; inset: 4rem .75rem auto .75rem;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--sesam);
    border: 1px solid var(--rand);
    border-radius: var(--radius-gross);
    box-shadow: var(--schatten-gross);
    padding: .5rem;
    transform-origin: top right;         /* wächst aus dem Menüknopf */
    transition: transform 200ms var(--aus), opacity 200ms var(--aus), visibility 200ms;
  }
  .navigation[data-offen="nein"] {
    opacity: 0; visibility: hidden;
    transform: scale(.96) translateY(-6px);   /* nie aus scale(0) */
  }
  .navigation[data-offen="ja"] {
    opacity: 1; visibility: visible; transform: none;
  }
  .navigation a { padding: .85rem 1rem; border-radius: 12px; }
}

/* --- Lesefortschritt ---------------------------------------------------- */
.fortschritt {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 101;
  background: var(--paprika);
  transform: scaleX(0); transform-origin: 0 50%;
  will-change: transform;
}
@supports (animation-timeline: scroll()) {
  .fortschritt {
    animation: fortschritt-fuellen linear both;
    animation-timeline: scroll(root block);
  }
}
@keyframes fortschritt-fuellen { to { transform: scaleX(1); } }

/* =========================================================================
   Signatur: der Teller
   Ein Blick von oben in die Schüssel. Dreht sich beim Scrollen weiter,
   als würde man den Löffel durch die Creme ziehen.
   ========================================================================= */
.buehne {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}

.buehne__raster {
  display: grid; align-items: center; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1.05fr .95fr;
}
@media (max-width: 52rem) {
  .buehne__raster { grid-template-columns: 1fr; }
  .buehne__teller { order: -1; max-width: 22rem; margin-inline: auto; }
}

.buehne__auge {
  display: inline-block;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--kreuzkuemmel);
  margin-bottom: 1rem;
}
.buehne h1 { margin-bottom: .6rem; }
.buehne__vorspann {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem);
  color: var(--tinte-weich);
  max-width: 34ch;
}
.buehne__aktionen { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.teller { width: 100%; aspect-ratio: 1; }
.teller__dreher {
  transform-origin: 50% 50%;
  will-change: transform;
}
@supports (animation-timeline: scroll()) {
  .teller__dreher {
    animation: teller-drehen linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 90vh;
  }
}
@keyframes teller-drehen {
  to { transform: rotate(38deg) scale(.94); }
}

/* Ölglanz, der beim Scrollen mitwandert */
.teller__glanz {
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}
@supports (animation-timeline: scroll()) {
  .teller__glanz {
    animation: glanz-wandern linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 90vh;
  }
}
@keyframes glanz-wandern {
  to { transform: translate(14px, -10px) scale(1.06); opacity: .55; }
}

/* Schwebende Öltropfen im Hintergrund – reine Zierde, sehr leise */
.tropfen {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: -1;
  filter: blur(38px); opacity: .5;
}
.tropfen--eins  { width: 22rem; height: 22rem; top: -6rem;  left: -8rem;
                  background: radial-gradient(circle, var(--olivenoel), transparent 68%);
                  animation: schweben-eins 19s ease-in-out infinite alternate; }
.tropfen--zwei  { width: 17rem; height: 17rem; bottom: -5rem; right: -4rem;
                  background: radial-gradient(circle, var(--paprika), transparent 70%);
                  opacity: .28;
                  animation: schweben-zwei 24s ease-in-out infinite alternate; }
@keyframes schweben-eins { to { transform: translate3d(3rem, 2rem, 0) scale(1.12); } }
@keyframes schweben-zwei { to { transform: translate3d(-2.5rem, -2rem, 0) scale(1.08); } }

/* =========================================================================
   Wegweiser – die drei großen Einstiege
   ========================================================================= */
.wegweiser {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin: clamp(2rem, 5vw, 3.5rem) auto;
}
.wegweiser__karte {
  display: block; padding: 1.6rem 1.5rem 1.4rem;
  background: var(--sesam); border: 1px solid var(--rand);
  border-radius: var(--radius-gross);
  color: var(--tinte); text-decoration: none;
  box-shadow: var(--schatten-klein);
  transition: transform 200ms var(--aus), box-shadow 200ms var(--aus);
}
.wegweiser__karte:active { transform: scale(.985); }
@media (hover: hover) and (pointer: fine) {
  .wegweiser__karte:hover { transform: translateY(-3px); box-shadow: var(--schatten-gross); }
}
.wegweiser__zahl {
  font-family: var(--schrift-titel); font-size: 2.2rem; line-height: 1;
  color: var(--paprika); display: block; margin-bottom: .5rem;
}
.wegweiser__karte h3 { margin-bottom: .3rem; font-size: 1.25rem; }
.wegweiser__karte p  { margin: 0; color: var(--tinte-weich); font-size: .95rem; }

/* =========================================================================
   Beitragskarten
   ========================================================================= */
.abschnitt { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.abschnitt__kopf {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem;
}
.abschnitt__kopf h2 { margin: 0; }
.abschnitt__kopf a  { font-weight: 600; text-decoration: none; }
.abschnitt__kopf a:hover { text-decoration: underline; }

.raster {
  display: grid; gap: clamp(1rem, 2.5vw, 1.75rem);
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  list-style: none; padding: 0; margin: 0;
}

.karte {
  display: flex; flex-direction: column;
  background: var(--sesam); border: 1px solid var(--rand);
  border-radius: var(--radius-gross); overflow: hidden;
  box-shadow: var(--schatten-klein);
  transition: transform 220ms var(--aus), box-shadow 220ms var(--aus);
}
.karte:active { transform: scale(.99); }
@media (hover: hover) and (pointer: fine) {
  .karte:hover { transform: translateY(-4px); box-shadow: var(--schatten-gross); }
  .karte:hover .karte__bild img { transform: scale(1.04); }
}

.karte__bild { aspect-ratio: 4 / 3; overflow: hidden; background: var(--kichererbse-tief); }
.karte__bild img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 420ms var(--aus);
}
.karte__rumpf { padding: 1.1rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.karte__marke {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--olive); margin-bottom: .45rem;
}
.karte h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.karte h3 a { color: inherit; text-decoration: none; }
.karte h3 a::after { content: ""; position: absolute; inset: 0; }  /* ganze Karte klickbar */
.karte { position: relative; }
.karte__anriss { font-size: .93rem; color: var(--tinte-weich); margin: 0 0 .9rem; }
.karte__fuss {
  margin-top: auto; font-size: .82rem; color: var(--tinte-leise);
  display: flex; gap: .6rem; align-items: center;
}

/* =========================================================================
   Sanftes Erscheinen beim Scrollen
   Die Karten werden freigelegt wie Hummus, den man mit dem Löffelrücken
   glatt streicht: von unten nach oben aufgedeckt.
   ========================================================================= */
.auftauchen {
  opacity: 0;
  transform: translateY(14px);
  clip-path: inset(0 0 12% 0);
  transition:
    opacity   520ms var(--aus),
    transform 620ms var(--aus),
    clip-path 620ms var(--aus);
}
.auftauchen[data-sichtbar="ja"] {
  opacity: 1; transform: none; clip-path: inset(0 0 0 0);
}
/* Staffelung: 55 ms Abstand, kurz genug um nicht zu bremsen */
.auftauchen:nth-child(2) { transition-delay: 55ms;  }
.auftauchen:nth-child(3) { transition-delay: 110ms; }
.auftauchen:nth-child(4) { transition-delay: 165ms; }
.auftauchen:nth-child(5) { transition-delay: 220ms; }
.auftauchen:nth-child(6) { transition-delay: 275ms; }

/* =========================================================================
   Vertrauensband
   ========================================================================= */
.vertrauen {
  background: var(--sesam-gedimmt);
  border-block: 1px solid var(--rand);
}
.vertrauen__liste {
  display: grid; gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  list-style: none; padding: 0; margin: 0;
}
.vertrauen__liste h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.vertrauen__liste p  { margin: 0; font-size: .94rem; color: var(--tinte-weich); }

/* =========================================================================
   Einzelner Beitrag
   ========================================================================= */
.brotkrumen {
  font-size: .85rem; color: var(--tinte-leise);
  padding-block: 1.25rem .5rem;
}
.brotkrumen a { color: var(--tinte-weich); text-decoration: none; }
.brotkrumen a:hover { text-decoration: underline; }
.brotkrumen span { margin-inline: .4rem; }

.beitragskopf { padding-bottom: 1.5rem; }
.beitragskopf h1 { margin-bottom: .7rem; }
.beitragskopf__zeile {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  align-items: center; font-size: .88rem; color: var(--tinte-leise);
}
.marke-kategorie {
  display: inline-block; padding: .3rem .7rem;
  background: var(--olive); color: #F7F5EC;
  border-radius: 999px; font-size: .72rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; text-decoration: none;
}

.aufmacher {
  border-radius: var(--radius-gross); overflow: hidden;
  box-shadow: var(--schatten-gross); margin-bottom: 2rem;
}
.aufmacher img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

/* --- Inhaltsverzeichnis ------------------------------------------------- */
.verzeichnis {
  background: var(--sesam); border: 1px solid var(--rand);
  border-radius: var(--radius); padding: 1.1rem 1.35rem;
  margin-bottom: 2rem;
}
.verzeichnis > summary {
  font-weight: 700; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.verzeichnis > summary::-webkit-details-marker { display: none; }
.verzeichnis > summary::after {
  content: ""; width: 9px; height: 9px; flex: 0 0 auto;
  border-right: 2px solid var(--tinte-leise);
  border-bottom: 2px solid var(--tinte-leise);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 200ms var(--aus);
}
.verzeichnis[open] > summary::after { transform: rotate(-135deg) translateY(-2px); }
.verzeichnis ol { margin: .9rem 0 0; padding-left: 1.2rem; }
.verzeichnis li { margin-bottom: .35rem; }
.verzeichnis a  { color: var(--tinte-weich); text-decoration: none; }
.verzeichnis a:hover { color: var(--paprika); text-decoration: underline; }

/* --- Fließtext ---------------------------------------------------------- */
.text { font-size: 1.09rem; }
.text > * + * { margin-top: 1.15em; }
.text h2 { margin-top: 2.2em; scroll-margin-top: 5.5rem; }
.text h3 { margin-top: 1.7em; scroll-margin-top: 5.5rem; }
.text ul, .text ol { padding-left: 1.35rem; }
.text li { margin-bottom: .45em; }
.text img { border-radius: var(--radius); margin-block: 1.6em; }
.text hr { border: 0; border-top: 1px solid var(--rand); margin-block: 2.4em; }
.text blockquote {
  margin: 1.8em 0; padding: .2em 0 .2em 1.3em;
  border-left: 3px solid var(--olivenoel);
  font-family: var(--schrift-titel); font-size: 1.15em; color: var(--tinte-weich);
}
.text a { font-weight: 500; }

/* Tabellen: am Handy werden zweispaltige Tabellen zu Zeilen umgebaut */
.tabellenhuelle { overflow-x: auto; margin-block: 1.6em; -webkit-overflow-scrolling: touch; }
.text table {
  width: 100%; border-collapse: collapse;
  background: var(--sesam); border: 1px solid var(--rand);
  border-radius: var(--radius); overflow: hidden;
  font-size: .98rem;
}
.text th, .text td { padding: .78rem 1rem; text-align: left; border-bottom: 1px solid var(--rand); }
.text th { background: var(--sesam-gedimmt); font-weight: 700; }
.text tr:last-child td { border-bottom: 0; }

@media (max-width: 34rem) {
  .text table.zweispaltig, .text table.zweispaltig tbody,
  .text table.zweispaltig tr, .text table.zweispaltig td { display: block; width: 100%; }
  .text table.zweispaltig thead { display: none; }
  .text table.zweispaltig tr {
    border-bottom: 1px solid var(--rand); padding: .35rem 0;
  }
  .text table.zweispaltig tr:last-child { border-bottom: 0; }
  .text table.zweispaltig td { border: 0; padding: .3rem 1rem; }
  .text table.zweispaltig td:first-child { font-weight: 600; padding-bottom: .05rem; }
  .text table.zweispaltig td:last-child  { color: var(--tinte-weich); padding-top: 0; }
}

/* Abhakbare Zutaten */
.text tr[data-abhakbar] { cursor: pointer; transition: opacity 180ms ease; }
.text tr[data-abhakbar]:active { opacity: .6; }
.text tr[data-erledigt="ja"] td { color: var(--tinte-leise); text-decoration: line-through; }
.text tr[data-abhakbar] td:first-child::before {
  content: ""; display: inline-block; vertical-align: -2px;
  width: 15px; height: 15px; margin-right: .6rem;
  border: 1.5px solid var(--rand-stark); border-radius: 4px;
  transition: background-color 160ms ease, border-color 160ms ease;
}
.text tr[data-erledigt="ja"] td:first-child::before {
  background: var(--olive); border-color: var(--olive);
}

/* --- Werkzeugleiste beim Kochen ---------------------------------------- */
.kochleiste {
  display: flex; flex-wrap: wrap; gap: .6rem;
  padding: 1rem 0 1.4rem; border-bottom: 1px solid var(--rand); margin-bottom: 1.8rem;
}
.kochleiste .knopf { padding: .6rem 1.1rem; font-size: .92rem; min-height: 44px; }
.wachhalten[data-aktiv="ja"] {
  background: var(--olive); color: #F7F5EC; box-shadow: none;
}

/* --- Produktbox --------------------------------------------------------- */
.empfehlungen { margin-block: 2.5rem; }
.empfehlungen > h2 { font-size: 1.35rem; margin-bottom: .35rem; }
.empfehlungen__vorspann { color: var(--tinte-weich); font-size: .95rem; margin-bottom: 1.2rem; }

.produkt {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  background: var(--sesam); border: 1px solid var(--rand);
  border-left: 4px solid var(--olivenoel);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  margin-bottom: .85rem;
}
.produkt__text { flex: 1 1 16rem; min-width: 0; }
.produkt__titel { font-weight: 700; margin-bottom: .2rem; }
.produkt__notiz { font-size: .92rem; color: var(--tinte-weich); margin: 0; }
.produkt .knopf { flex: 0 0 auto; padding: .7rem 1.25rem; font-size: .93rem; }

.partnerlink::after {
  content: " ↗"; font-size: .85em; opacity: .75;
}
.knopf.partnerlink::after { content: " ↗"; opacity: .9; }

.kennzeichnung {
  font-size: .85rem; line-height: 1.55; color: var(--tinte-weich);
  background: var(--sesam-gedimmt); border: 1px solid var(--rand);
  border-radius: var(--radius); padding: .85rem 1.1rem; margin-block: 1.5rem;
}

/* --- Autorenkasten ------------------------------------------------------ */
.autor {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--sesam); border: 1px solid var(--rand);
  border-radius: var(--radius-gross); padding: 1.35rem 1.5rem;
  margin-block: 2.5rem;
}
.autor__zeichen {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%;
  background: var(--kichererbse-tief); display: grid; place-items: center;
  font-family: var(--schrift-titel); font-weight: 700; font-size: 1.2rem;
  color: var(--kreuzkuemmel);
}
.autor h2 { font-size: 1.05rem; margin-bottom: .25rem; }
.autor p  { margin: 0; font-size: .92rem; color: var(--tinte-weich); }

/* --- Paginierung -------------------------------------------------------- */
.blaettern {
  display: flex; justify-content: center; align-items: center;
  gap: .5rem; flex-wrap: wrap; margin-block: 3rem;
}
.blaettern a, .blaettern span {
  display: inline-grid; place-items: center;
  min-width: 46px; min-height: 46px; padding: 0 .8rem;
  border-radius: 12px; text-decoration: none; font-weight: 600;
  color: var(--tinte); border: 1px solid var(--rand);
  background: var(--sesam);
  transition: transform 140ms var(--aus), background-color 160ms ease;
}
.blaettern a:active { transform: scale(.96); }
.blaettern [aria-current="page"] { background: var(--tinte); color: var(--sesam); border-color: var(--tinte); }
@media (hover: hover) and (pointer: fine) {
  .blaettern a:hover { background: var(--kichererbse-tief); }
}

/* --- Suche -------------------------------------------------------------- */
.suchfeld { display: flex; gap: .6rem; margin-block: 1.5rem 2.5rem; }
.suchfeld input {
  flex: 1; min-height: 50px; padding: .75rem 1.1rem;
  font: inherit; color: var(--tinte);
  background: var(--sesam); border: 1px solid var(--rand-stark);
  border-radius: 999px;
}
.suchfeld input::placeholder { color: var(--tinte-leise); }

/* --- Fußzeile ----------------------------------------------------------- */
.fuss {
  background: var(--tinte); color: #D9CFC0;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 2rem; margin-top: 4rem;
}
.fuss__raster {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  margin-bottom: 2rem;
}
.fuss h2 { font-size: 1rem; color: var(--sesam); margin-bottom: .7rem; }
.fuss ul { list-style: none; padding: 0; margin: 0; }
.fuss li { margin-bottom: .45rem; }
.fuss a  { color: #D9CFC0; text-decoration: none; }
.fuss a:hover { color: var(--sesam); text-decoration: underline; }
.fuss__unten {
  border-top: 1px solid rgba(255, 252, 246, .14); padding-top: 1.5rem;
  font-size: .85rem; color: #A2947F;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
}

/* --- Kennzeichnung KI-generierter Bilder --------------------------------
   Pflicht nach Art. 50 KI-Verordnung. Der Hinweis steht als echter Text im
   HTML, nicht im Bild – sonst wäre er für Screenreader unsichtbar und die
   Barrierefreiheitsanforderung der Verordnung nicht erfüllt. */
.ki-hinweis {
  padding: .6rem 1.1rem;
  background: var(--sesam-gedimmt);
  border-top: 1px solid var(--rand);
  font-size: .82rem;
  line-height: 1.45;
  color: var(--tinte-weich);
}

.karte__bild { position: relative; }

.ki-marke {
  position: absolute; top: .6rem; right: .6rem;
  display: inline-grid; place-items: center;
  min-width: 26px; height: 22px; padding: 0 .45rem;
  background: rgba(36, 28, 19, .68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFCF6;
  border-radius: 6px;
  font-size: .66rem; font-weight: 700; letter-spacing: .07em;
}

.text figure.ki-bild { margin-block: 1.6em; }
.text figure.ki-bild img { margin-block: 0; }

.text figcaption.ki-hinweis {
  margin-top: .55em;
  padding: 0;
  background: none;
  border: 0;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--tinte-leise);
}

.ki-hinweis-lose {
  display: block;
  margin: .5em 0 1.4em;
  font-size: .8rem;
  color: var(--tinte-leise);
}

.ki-hinweis-anhang {
  display: block;
  margin-top: .3em;
  font-size: .8rem;
  color: var(--tinte-leise);
}

/* --- Fehlerseite -------------------------------------------------------- */
.fehler { text-align: center; padding-block: clamp(3rem, 9vw, 6rem); }
.fehler p { color: var(--tinte-weich); max-width: 40ch; margin-inline: auto; }

/* =========================================================================
   Reduzierte Bewegung
   Nicht null Animation, sondern weniger: Ein- und Ausblenden bleibt,
   jede Ortsveränderung fällt weg.
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .auftauchen {
    opacity: 1; transform: none; clip-path: none;
    transition: opacity 200ms ease;
  }
  .tropfen { animation: none; }
  .teller__dreher, .teller__glanz { animation: none; }
  .karte:hover { transform: none; }
  .wegweiser__karte:hover { transform: none; }
}

/* --- Druck -------------------------------------------------------------- */
@media print {
  .kopf, .fuss, .kochleiste, .empfehlungen, .verzeichnis,
  .tropfen, .fortschritt, .direkt-zum-inhalt { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .text a::after { content: " (" attr(href) ")"; font-size: 9pt; word-break: break-all; }
  .ki-hinweis { display: block !important; background: none; border: 0; padding: .3em 0; font-size: 9pt; }
  .aufmacher { box-shadow: none; }
}
