/* ==========================================================================
   BioBauernhof Böhm — Stylesheet
   Farben aus dem Logo: Grün #185628, Gelb #E7DD1F
   ========================================================================== */

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, svg, video { display: block; max-width: 100%; }
/* Ohne height:auto wirkt das HTML-height-Attribut als fixe Pixelhöhe und staucht das Bild.
   Bilder mit object-fit setzen ihre Höhe weiter unten selbst und überschreiben das hier. */
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }

/* --- Tokens --------------------------------------------------------------- */
:root {
  --gruen:        #185628;
  --gruen-tief:   #0E3618;
  --gruen-mittel: #2A7A3E;
  --gruen-hell:   #E4EDE1;
  --gelb:         #E7DD1F;
  --gelb-tief:    #C4BB12;
  --papier:       #FBF8EF;
  --papier-warm:  #F3EDDD;
  --erde:         #5B4632;
  --tinte:        #16200F;
  --grau:         #6C7466;
  --grau-linie:   #DCD7C6;
  --rot:          #A8321E;

  --ff-display: "Anton", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  --ff-text: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max: 1240px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --sec: clamp(4rem, 9vw, 8rem);
  --radius: 6px;
  --schatten: 0 1px 2px rgba(22,32,15,.05), 0 12px 32px -12px rgba(22,32,15,.16);
  --schatten-tief: 0 2px 4px rgba(22,32,15,.06), 0 28px 60px -20px rgba(22,32,15,.28);
  --header-h: 84px;
}

/* --- Basis ---------------------------------------------------------------- */
body {
  font-family: var(--ff-text);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--tinte);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-offen { overflow: hidden; }

h1, h2, h3, h4 { line-height: 1.08; text-wrap: balance; }
h1, h2 { font-family: var(--ff-display); font-weight: 400; text-transform: uppercase; letter-spacing: .005em; }
h3, h4 { font-family: var(--ff-text); font-weight: 700; line-height: 1.25; letter-spacing: -.01em; }
p { text-wrap: pretty; }

h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); }
h4 { font-size: 1.05rem; }

.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.wrap-eng { width: min(100% - 2.5rem, 780px); margin-inline: auto; }
.sec { padding-block: var(--sec); }
.sec-eng { padding-block: clamp(3rem, 6vw, 5rem); }

/* --- Utilities ------------------------------------------------------------ */
.eyebrow {
  font-size: .76rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gruen-mittel);
  display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--gelb); flex: none; }
.eyebrow.zentriert { justify-content: center; }
.lead { font-size: clamp(1.08rem, 1rem + .5vw, 1.3rem); line-height: 1.6; color: #3B4636; }
.klein { font-size: .875rem; color: var(--grau); }
.zentriert { text-align: center; }
.mark { background: linear-gradient(transparent 58%, var(--gelb) 58%, var(--gelb) 94%, transparent 94%); padding-inline: .06em; }
.gruen-text { color: var(--gruen); }

.sec-kopf { max-width: 720px; margin-bottom: clamp(2.5rem, 4vw, 3.75rem); }
.sec-kopf.zentriert { margin-inline: auto; }
.sec-kopf p { margin-top: 1.1rem; }

/* Papier-Textur */
.textur { position: relative; }
.textur::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  padding: .85rem 1.6rem; border-radius: 100px; border: 2px solid transparent;
  text-decoration: none; transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gelb { background: var(--gelb); color: var(--gruen-tief); box-shadow: 0 6px 18px -8px rgba(196,187,18,.9); }
.btn-gelb:hover { background: #F2E93A; box-shadow: 0 12px 26px -10px rgba(196,187,18,1); }
.btn-gruen { background: var(--gruen); color: #fff; }
.btn-gruen:hover { background: var(--gruen-mittel); }
.btn-linie { border-color: currentColor; }
.btn-linie:hover { background: var(--gruen); border-color: var(--gruen); color: #fff; }
.btn-weiss-linie { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-weiss-linie:hover { background: #fff; border-color: #fff; color: var(--gruen-tief); }
.btn .pfeil { transition: transform .2s ease; }
.btn:hover .pfeil { transform: translateX(3px); }
.btn-reihe { display: flex; flex-wrap: wrap; gap: .85rem; }

.txtlink {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .95rem;
  text-decoration: none; color: var(--gruen); border-bottom: 2px solid var(--gelb); padding-bottom: 2px;
  transition: gap .2s ease, color .2s ease;
}
.txtlink:hover { gap: .7rem; color: var(--gruen-mittel); }

/* --- Header --------------------------------------------------------------- */
.kopfzeile {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251,248,239,.93); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.kopfzeile.geheftet { border-color: var(--grau-linie); box-shadow: 0 8px 24px -18px rgba(22,32,15,.5); }
.kopfzeile__innen {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  height: var(--header-h); transition: height .25s ease;
}
.kopfzeile.geheftet .kopfzeile__innen { height: 68px; }
.marke { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex: none; }
.marke img { width: 54px; height: 54px; object-fit: contain; transition: width .25s ease, height .25s ease; }
.kopfzeile.geheftet .marke img { width: 44px; height: 44px; }
.marke__text { display: flex; flex-direction: column; line-height: 1.1; }
.marke__name { font-family: var(--ff-display); font-size: 1.12rem; text-transform: uppercase; color: var(--gruen); letter-spacing: .01em; }
.marke__ort { font-size: .68rem; letter-spacing: .17em; text-transform: uppercase; color: var(--grau); font-weight: 600; }

.hauptnav { display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 1.9rem); }
.hauptnav a {
  text-decoration: none; font-size: .93rem; font-weight: 600; color: #33402C;
  padding: .35rem 0; position: relative;
}
.hauptnav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px;
  background: var(--gelb); transition: right .25s ease;
}
.hauptnav a:hover::after, .hauptnav a[aria-current="page"]::after { right: 0; }
.hauptnav a[aria-current="page"] { color: var(--gruen); }
.kopf-aktion { display: flex; align-items: center; gap: .75rem; flex: none; }

.burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--grau-linie);
  background: #fff; border-radius: 50%; padding: 0; place-items: center; align-content: center;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--gruen); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger span + span { margin-top: 4px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobilnav {
  position: fixed; inset: var(--header-h) 0 0; z-index: 89; background: var(--gruen);
  padding: 2rem 1.5rem 3rem; display: none; flex-direction: column; gap: .25rem;
  overflow-y: auto; color: #fff;
}
.mobilnav.offen { display: flex; }
.mobilnav a { text-decoration: none; font-family: var(--ff-display); text-transform: uppercase; font-size: 1.9rem; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.mobilnav a:last-of-type { border-bottom: 0; }
.mobilnav .btn { margin-top: 1.5rem; align-self: flex-start;
  font-family: var(--ff-text); font-size: .95rem; text-transform: none; border-bottom: 0; padding: .85rem 1.6rem; }
.mobilnav__kontakt { margin-top: auto; padding-top: 2rem; font-size: .9rem; color: rgba(255,255,255,.75); }
.mobilnav__kontakt a { font-family: var(--ff-text); font-size: .95rem; text-transform: none; border: 0; padding: 0; display: block; }

@media (max-width: 1040px) {
  .hauptnav { display: none; }
  .burger { display: grid; }
  .kopf-aktion .btn { display: none; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; min-height: min(86vh, 780px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__bild { position: absolute; inset: 0; }
.hero__bild img { width: 100%; height: 100%; object-fit: cover; }
.hero__bild::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,54,24,.55) 0%, rgba(14,54,24,.15) 35%, rgba(14,54,24,.82) 100%);
}
.hero__innen { position: relative; z-index: 2; padding-block: clamp(3rem, 8vw, 6rem); width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.hero h1 { max-width: 20ch; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero h1 em { font-style: normal; color: var(--gelb); }
.hero__lead { max-width: 46ch; margin-top: 1.5rem; font-size: clamp(1.05rem, 1.3vw, 1.25rem); color: rgba(255,255,255,.92); }
.hero .btn-reihe { margin-top: 2.25rem; }
.hero__eyebrow { color: var(--gelb); }
.hero__eyebrow::before { background: var(--gelb); }

.hero__siegel {
  position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: .5rem 1.75rem;
  margin-top: 2.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.22);
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,.8);
}
.hero__siegel span { display: flex; align-items: center; gap: .5rem; }
.hero__siegel span::before { content: ""; width: 7px; height: 7px; background: var(--gelb); border-radius: 50%; }

/* Seiten-Hero (Unterseiten) */
.seitenkopf { background: var(--gruen); color: #fff; padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3.5rem, 7vw, 5.5rem); position: relative; overflow: hidden; }
.seitenkopf h1 { max-width: 18ch; }
.seitenkopf .lead { color: rgba(255,255,255,.85); max-width: 58ch; margin-top: 1.35rem; }
.seitenkopf .eyebrow { color: var(--gelb); }
.seitenkopf .eyebrow::before { background: var(--gelb); }
/* Die gerissene Kante sitzt bündig auf der Unterkante, nicht vor dem Section-Padding */
.seitenkopf > .kante { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; }
.seitenkopf__deko { position: absolute; right: -60px; bottom: -30px; width: 320px; opacity: .13; pointer-events: none; }
.krumen { display: flex; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.65); margin-bottom: 1.75rem; flex-wrap: wrap; }
.krumen a { text-decoration: none; }
.krumen a:hover { color: var(--gelb); }
.krumen span { color: rgba(255,255,255,.35); }

/* --- Laufband ------------------------------------------------------------- */
.laufband { background: var(--gelb); color: var(--gruen-tief); overflow: hidden; padding-block: .9rem; border-block: 3px solid var(--gruen-tief); }
.laufband__spur { display: flex; width: max-content; animation: schieben 42s linear infinite; }
.laufband:hover .laufband__spur { animation-play-state: paused; }
.laufband__gruppe { display: flex; align-items: center; }
.laufband__gruppe span {
  font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(1.1rem, 2vw, 1.6rem);
  padding-inline: 1.5rem; display: flex; align-items: center; gap: 1.5rem; white-space: nowrap;
}
.laufband__gruppe span::after { content: ""; width: 10px; height: 10px; background: var(--gruen-tief); border-radius: 50%; }
@keyframes schieben { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .laufband__spur { animation: none; } }

/* --- Karten / Raster ------------------------------------------------------ */
.raster { display: grid; gap: clamp(1.25rem, 2.4vw, 2rem); }
.raster-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.raster-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.raster-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.karte {
  background: #fff; border: 1px solid var(--grau-linie); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2.15rem); position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.karte:hover { transform: translateY(-4px); box-shadow: var(--schatten); border-color: #C9C4B0; }
.karte h3 { margin-bottom: .6rem; }
.karte p { color: #4A5544; font-size: .97rem; }
.karte__nr { font-family: var(--ff-display); font-size: 2.4rem; color: var(--gelb-tief); line-height: 1; margin-bottom: .9rem; }
.karte__icon { width: 46px; height: 46px; display: grid; place-items: center; background: var(--gruen-hell); border-radius: 50%; margin-bottom: 1.15rem; color: var(--gruen); }
.karte__icon svg { width: 24px; height: 24px; }

/* Produktkarten */
.produkt { background: #fff; border: 1px solid var(--grau-linie); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.produkt:hover { transform: translateY(-5px); box-shadow: var(--schatten); }
.produkt__bild { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--papier-warm); }
.produkt__bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.produkt:hover .produkt__bild img { transform: scale(1.05); }
.produkt__inhalt { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.produkt__inhalt p { font-size: .95rem; color: #4A5544; margin-top: .5rem; }
.produkt__meta { margin-top: auto; padding-top: 1.25rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.produkt__preis { font-family: var(--ff-display); font-size: 1.35rem; color: var(--gruen); }
.produkt__preis small { font-family: var(--ff-text); font-size: .72rem; font-weight: 600; color: var(--grau); letter-spacing: .04em; }

.plakette {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: var(--gelb); color: var(--gruen-tief);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 3px; transform: rotate(-2deg);
}
.plakette--gruen { background: var(--gruen); color: #fff; }
.plakette--erde { background: var(--erde); color: #fff; }

/* Eigenschaften-Liste */
.merkmale { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; }
.merkmale li {
  font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  background: var(--papier-warm); color: #4A5544; padding: .28rem .65rem; border-radius: 3px;
}

/* --- Split-Sektion -------------------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--schmal { grid-template-columns: 1.15fr .85fr; } }
.split--gedreht .split__bild { order: -1; }
@media (min-width: 900px) { .split--gedreht .split__bild { order: 2; } }
.split__bild { position: relative; }
.split__bild img { width: 100%; border-radius: var(--radius); box-shadow: var(--schatten); }
.split__bild--versetzt::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; background: var(--gelb);
  border-radius: var(--radius); z-index: -1;
}
.bild-zitat { font-size: .8rem; color: var(--grau); margin-top: .7rem; font-style: italic; }

/* --- Zahlen --------------------------------------------------------------- */
.zahlen { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.zahl__wert { font-family: var(--ff-display); font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: var(--gruen); }
.zahl__label { font-size: .85rem; color: var(--grau); margin-top: .5rem; line-height: 1.4; }
.dunkel .zahl__wert { color: var(--gelb); }
.dunkel .zahl__label { color: rgba(255,255,255,.7); }

/* --- Dunkle Sektion ------------------------------------------------------- */
.dunkel { background: var(--gruen); color: #fff; position: relative; }
.dunkel .lead { color: rgba(255,255,255,.82); }
.dunkel .eyebrow { color: var(--gelb); }
.dunkel .eyebrow::before { background: var(--gelb); }
.dunkel .karte { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.16); color: #fff; }
.dunkel .karte:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.3); }
.dunkel .karte p { color: rgba(255,255,255,.76); }
.dunkel .karte__icon { background: rgba(255,255,255,.1); color: var(--gelb); }
.dunkel .txtlink { color: #fff; }

.warm { background: var(--papier-warm); }

/* Gerissene Kante */
.kante { display: block; width: 100%; height: auto; }
.kante--oben { transform: rotate(180deg); }

/* --- Zitat ---------------------------------------------------------------- */
.zitat { max-width: 900px; margin-inline: auto; text-align: center; position: relative; }
.zitat__zeichen { font-family: var(--ff-display); font-size: 6rem; color: var(--gelb); line-height: .6; display: block; margin-bottom: 1rem; }
.zitat blockquote { font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.16; }
.zitat figcaption { margin-top: 1.75rem; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; opacity: .75; }

/* --- Zeitleiste ----------------------------------------------------------- */
.zeitleiste { position: relative; padding-left: 2.25rem; }
.zeitleiste::before { content: ""; position: absolute; left: 7px; top: .6rem; bottom: .6rem; width: 2px; background: var(--grau-linie); }
.zeitleiste li { position: relative; padding-bottom: 2.25rem; }
.zeitleiste li:last-child { padding-bottom: 0; }
.zeitleiste li::before {
  content: ""; position: absolute; left: -2.25rem; top: .45rem; width: 16px; height: 16px;
  background: var(--papier); border: 4px solid var(--gruen); border-radius: 50%;
}
.zeitleiste li:first-child::before { border-color: var(--gelb-tief); background: var(--gelb); }
.zeitleiste__jahr { font-family: var(--ff-display); font-size: 1.5rem; color: var(--gruen); line-height: 1; }
.zeitleiste h3 { margin: .4rem 0 .4rem; }
.zeitleiste p { color: #4A5544; font-size: .97rem; }
.dunkel .zeitleiste::before { background: rgba(255,255,255,.2); }
.dunkel .zeitleiste li::before { background: var(--gruen); border-color: var(--gelb); }
.dunkel .zeitleiste__jahr { color: var(--gelb); }
.dunkel .zeitleiste p { color: rgba(255,255,255,.76); }

/* --- Spendenbalken -------------------------------------------------------- */
.fortschritt { background: rgba(255,255,255,.16); border-radius: 100px; height: 14px; overflow: hidden; margin-block: 1.25rem .75rem; }
.fortschritt__wert { height: 100%; background: var(--gelb); border-radius: 100px; width: 0; transition: width 1.6s cubic-bezier(.2,.8,.2,1); }
.fortschritt-info { display: flex; justify-content: space-between; font-size: .85rem; font-weight: 600; }

/* --- Blog ----------------------------------------------------------------- */
.beitrag { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--grau-linie); border-radius: var(--radius); overflow: hidden; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.beitrag:hover { transform: translateY(-5px); box-shadow: var(--schatten); }
.beitrag__bild { aspect-ratio: 16/10; overflow: hidden; }
.beitrag__bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.beitrag:hover .beitrag__bild img { transform: scale(1.05); }
.beitrag__inhalt { padding: 1.4rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.beitrag__meta { font-size: .74rem; letter-spacing: .11em; text-transform: uppercase; font-weight: 600; color: var(--gruen-mittel); margin-bottom: .7rem; display: flex; gap: .6rem; flex-wrap: wrap; }
.beitrag__meta time { color: var(--grau); }
.beitrag h3 { margin-bottom: .55rem; }
.beitrag p { font-size: .94rem; color: #4A5544; }
.beitrag__mehr { margin-top: auto; padding-top: 1.25rem; font-weight: 700; font-size: .9rem; color: var(--gruen); display: flex; align-items: center; gap: .4rem; }

/* Artikeltext */
.artikel { font-size: 1.075rem; line-height: 1.75; }
.artikel > * + * { margin-top: 1.35rem; }
.artikel h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 2.75rem; }
.artikel h3 { font-size: 1.2rem; margin-top: 2rem; }
.artikel ul, .artikel ol { padding-left: 1.4rem; }
.artikel ul li { list-style: none; position: relative; padding-left: 1.2rem; margin-top: .55rem; }
.artikel ul li::before { content: ""; position: absolute; left: 0; top: .68em; width: 7px; height: 7px; background: var(--gelb); border-radius: 50%; }
.artikel ol { list-style: decimal; }
.artikel ol li { margin-top: .55rem; padding-left: .3rem; }
.artikel img { border-radius: var(--radius); margin-block: 2.25rem; }
.artikel blockquote {
  border-left: 4px solid var(--gelb); padding: .3rem 0 .3rem 1.5rem; margin-block: 2rem;
  font-size: 1.2rem; line-height: 1.5; font-weight: 500; color: var(--gruen);
}
.artikel a { color: var(--gruen); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; text-decoration-color: var(--gelb); }
.artikel a:hover { background: var(--gelb); }
.artikel strong { font-weight: 700; }

/* --- Rechtstexte ---------------------------------------------------------- */
.recht { font-size: 1rem; line-height: 1.75; }
.recht > * + * { margin-top: 1.1rem; }
.recht h2 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); margin-top: 3rem; padding-top: 1.5rem; border-top: 2px solid var(--grau-linie); }
.recht h3 { font-size: 1.08rem; margin-top: 1.9rem; }
.recht ul { padding-left: 1.2rem; }
.recht ul li { list-style: none; position: relative; padding-left: 1.1rem; margin-top: .4rem; }
.recht ul li::before { content: ""; position: absolute; left: 0; top: .68em; width: 6px; height: 6px; background: var(--gruen-mittel); border-radius: 50%; }
.recht a { color: var(--gruen); text-decoration: underline; text-underline-offset: 3px; }
.recht dl { display: grid; grid-template-columns: minmax(140px, 200px) 1fr; gap: .5rem 1.5rem; }
.recht dt { font-weight: 700; color: var(--gruen); }
@media (max-width: 560px) { .recht dl { grid-template-columns: 1fr; gap: .1rem 0; } .recht dd { margin-bottom: .9rem; margin-left: 0; } }

.inhaltsverz { background: var(--papier-warm); border-radius: var(--radius); padding: 1.5rem 1.75rem; }
.inhaltsverz h2 { font-family: var(--ff-text); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; border: 0; padding: 0; margin: 0 0 .9rem; color: var(--grau); }
.inhaltsverz ol { counter-reset: iv; padding: 0; }
.inhaltsverz li { counter-increment: iv; padding-left: 2rem; position: relative; margin-top: .4rem; }
.inhaltsverz li::before { content: counter(iv) "."; position: absolute; left: 0; font-weight: 700; color: var(--gelb-tief); }
.inhaltsverz a { text-decoration: none; font-weight: 500; }
.inhaltsverz a:hover { text-decoration: underline; }

/* --- Akkordeon ------------------------------------------------------------ */
.akkordeon { border-top: 1px solid var(--grau-linie); }
.akkordeon details { border-bottom: 1px solid var(--grau-linie); }
.akkordeon summary {
  list-style: none; cursor: pointer; padding: 1.35rem 3rem 1.35rem 0; position: relative;
  font-weight: 600; font-size: 1.05rem; line-height: 1.4;
}
.akkordeon summary::-webkit-details-marker { display: none; }
.akkordeon summary::after {
  content: ""; position: absolute; right: .5rem; top: 1.7rem; width: 12px; height: 12px;
  border-right: 2.5px solid var(--gruen); border-bottom: 2.5px solid var(--gruen);
  transform: rotate(45deg); transition: transform .25s ease;
}
.akkordeon details[open] summary::after { transform: rotate(-135deg); top: 1.95rem; }
.akkordeon details[open] summary { color: var(--gruen); }
.akkordeon .antwort { padding-bottom: 1.5rem; color: #4A5544; max-width: 68ch; }
.akkordeon .antwort > * + * { margin-top: .8rem; }

/* --- Formular ------------------------------------------------------------- */
.formular { display: grid; gap: 1.15rem; }
.feld { display: flex; flex-direction: column; gap: .4rem; }
.feld label { font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #3B4636; }
.feld label .pflicht { color: var(--rot); }
.feld input, .feld textarea, .feld select {
  border: 1.5px solid var(--grau-linie); background: #fff; border-radius: var(--radius);
  padding: .8rem 1rem; font-size: 1rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.feld input:focus, .feld textarea:focus, .feld select:focus {
  outline: none; border-color: var(--gruen); box-shadow: 0 0 0 3px rgba(24,86,40,.12);
}
.feld textarea { resize: vertical; min-height: 140px; }
.feld-reihe { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.checkbox { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: #4A5544; line-height: 1.5; }
.checkbox input { width: 18px; height: 18px; margin-top: .18rem; accent-color: var(--gruen); flex: none; }
.checkbox a { color: var(--gruen); }
.formular__hinweis { font-size: .82rem; color: var(--grau); }
.formular-status { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: .93rem; font-weight: 600; display: none; }
.formular-status.sichtbar { display: block; }
.formular-status--ok { background: var(--gruen-hell); color: var(--gruen); border: 1px solid rgba(24,86,40,.25); }

/* --- Abo-Rechner ---------------------------------------------------------- */
.rechner { background: #fff; border: 1px solid var(--grau-linie); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--schatten); }
.optionen { display: grid; gap: .7rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); }
.option { position: relative; }
.option input { position: absolute; opacity: 0; width: 0; height: 0; }
.option span {
  display: block; border: 1.5px solid var(--grau-linie); border-radius: var(--radius);
  padding: .9rem 1rem; cursor: pointer; text-align: center; transition: all .18s ease; line-height: 1.35;
}
.option strong { display: block; font-size: 1rem; }
.option small { display: block; font-size: .78rem; color: var(--grau); margin-top: .15rem; }
.option input:checked + span { border-color: var(--gruen); background: var(--gruen-hell); box-shadow: inset 0 0 0 1px var(--gruen); }
.option input:focus-visible + span { outline: 2px solid var(--gruen); outline-offset: 2px; }
.rechner__gruppe + .rechner__gruppe { margin-top: 1.75rem; }
.rechner__label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--grau); margin-bottom: .8rem; }
.rechner__ergebnis {
  margin-top: 2rem; padding-top: 1.75rem; border-top: 2px dashed var(--grau-linie);
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem;
}
.rechner__summe { font-family: var(--ff-display); font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--gruen); line-height: 1; }
.rechner__summe small { font-family: var(--ff-text); font-size: .85rem; font-weight: 600; color: var(--grau); letter-spacing: .03em; }
.rechner__detail { font-size: .88rem; color: var(--grau); max-width: 30ch; }

/* --- Preistabelle --------------------------------------------------------- */
.tabelle-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.liste { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 520px; }
table.liste th, table.liste td { text-align: left; padding: .95rem 1rem; border-bottom: 1px solid var(--grau-linie); }
table.liste thead th { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grau); background: var(--papier-warm); }
table.liste tbody tr:hover { background: rgba(24,86,40,.035); }
table.liste td strong { color: var(--gruen); }

/* --- Instagram ------------------------------------------------------------ */
.insta-raster { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(50% - .5rem, 190px), 1fr)); gap: .75rem; }
.insta { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); display: block; text-decoration: none; background: var(--gruen-tief); }
.insta img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.insta:hover img { transform: scale(1.06); opacity: .55; }
.insta__text {
  position: absolute; inset: auto 0 0 0; padding: 1rem .9rem .9rem; color: #fff; font-size: .8rem; line-height: 1.4;
  background: linear-gradient(transparent, rgba(14,54,24,.9)); opacity: 0; transform: translateY(8px); transition: all .3s ease;
}
.insta:hover .insta__text { opacity: 1; transform: translateY(0); }

/* --- Partner -------------------------------------------------------------- */
.partner { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; align-items: center; justify-content: center; }
.partner li {
  font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(.95rem, 1.5vw, 1.25rem);
  color: var(--grau); letter-spacing: .02em; transition: color .2s ease;
}
.partner li:hover { color: var(--gruen); }

/* --- Fußzeile ------------------------------------------------------------- */
.fusszeile { background: var(--gruen); color: rgba(255,255,255,.78); position: relative; }
.fusszeile__oben { padding-block: clamp(3.5rem, 6vw, 5rem) 3rem; display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.fusszeile__marke { max-width: 300px; }
.fusszeile__marke img { width: 92px; margin-bottom: 1.25rem; }
.fusszeile h4 { color: #fff; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.15rem; }
.fusszeile a { text-decoration: none; }
.fusszeile ul li { margin-bottom: .55rem; }
.fusszeile ul a:hover { color: var(--gelb); }
.fusszeile__unten {
  border-top: 1px solid rgba(255,255,255,.15); padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between; align-items: center; font-size: .82rem;
}
.fusszeile__unten nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.fusszeile__unten a:hover { color: var(--gelb); }
.sozial { display: flex; gap: .6rem; margin-top: 1.35rem; }
.sozial a {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28); color: #fff; transition: all .2s ease;
}
.sozial a:hover { background: var(--gelb); border-color: var(--gelb); color: var(--gruen-tief); transform: translateY(-2px); }
.sozial svg { width: 18px; height: 18px; }
.oeffnungszeiten { font-size: .9rem; }
.oeffnungszeiten div { display: flex; justify-content: space-between; gap: 1rem; padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.1); max-width: 260px; }
.oeffnungszeiten div:last-child { border: 0; }

/* --- Newsletter ----------------------------------------------------------- */
.newsletter { background: var(--gelb); color: var(--gruen-tief); border-radius: var(--radius); padding: clamp(2rem, 4vw, 3.25rem); position: relative; overflow: hidden; }
.newsletter h2 { max-width: 16ch; }
.newsletter__form { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.75rem; }
.newsletter__form input {
  flex: 1 1 240px; border: 2px solid var(--gruen-tief); background: #fff; border-radius: 100px; padding: .8rem 1.35rem; font-size: .97rem;
}
.newsletter__form input:focus { outline: none; box-shadow: 0 0 0 3px rgba(14,54,24,.2); }
.newsletter__deko { position: absolute; right: -40px; top: -30px; width: 220px; opacity: .16; pointer-events: none; }

/* --- Cookie --------------------------------------------------------------- */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200; max-width: 480px;
  background: #fff; border: 1px solid var(--grau-linie); border-radius: var(--radius);
  box-shadow: var(--schatten-tief); padding: 1.5rem; font-size: .88rem; line-height: 1.55;
  transform: translateY(140%); transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.cookie.sichtbar { transform: translateY(0); }
.cookie h4 { margin-bottom: .5rem; }
.cookie p { color: #4A5544; }
.cookie a { color: var(--gruen); }
.cookie__aktion { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.15rem; }
.cookie .btn { font-size: .85rem; padding: .6rem 1.1rem; }

/* --- Animation ------------------------------------------------------------ */
.auf { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.auf.sichtbar { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .auf { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* --- Sonstiges ------------------------------------------------------------ */
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--gelb); color: var(--gruen-tief);
  padding: .8rem 1.25rem; z-index: 300; font-weight: 700; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gruen-mittel); outline-offset: 2px; border-radius: 2px; }
.karte-kontakt { background: var(--papier-warm); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--grau-linie); }
.karte-kontakt iframe { width: 100%; height: 380px; border: 0; display: block; filter: saturate(.85); }
.info-liste li { display: flex; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--grau-linie); align-items: flex-start; }
.info-liste li:last-child { border-bottom: 0; }
.info-liste svg { width: 20px; height: 20px; color: var(--gruen); flex: none; margin-top: .2rem; }
.info-liste a { color: inherit; text-decoration: none; }
.info-liste a:hover { color: var(--gruen); text-decoration: underline; }
.info-liste strong { display: block; font-size: .76rem; letter-spacing: .11em; text-transform: uppercase; color: var(--grau); margin-bottom: .15rem; }

.hinweisbox { background: var(--gruen-hell); border-left: 4px solid var(--gruen); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.35rem 1.6rem; font-size: .95rem; }
.hinweisbox strong { color: var(--gruen); }


/* --- Haken-Liste ---------------------------------------------------------- */
.haken li { position: relative; padding-left: 2.1rem; margin-top: .7rem; }
.haken li::before {
  content: ""; position: absolute; left: 0; top: .18em; width: 21px; height: 21px; border-radius: 50%;
  background: var(--gelb) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E3618' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 12.5 5 5L20 6.5'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.dunkel .haken li { color: rgba(255,255,255,.86); }

.deko-pflanze { width: 130px; opacity: .35; margin-inline: auto; }
