/* ==========================================================================
   Landwirtschaftsbetrieb Holter: Stylesheet
   Farben aus dem Logo: Grün, Orange, Weiß, dazu Papier-, Holz- & Tafeltöne
   ========================================================================== */

/* ---------- Schriften (lokal, keine Google-Server) ---------- */
@font-face { font-family: "Baloo 2"; font-weight: 600; font-display: swap; src: url("/fonts/baloo-2-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Baloo 2"; font-weight: 700; font-display: swap; src: url("/fonts/baloo-2-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Baloo 2"; font-weight: 800; font-display: swap; src: url("/fonts/baloo-2-latin-800-normal.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-weight: 400; font-display: swap; src: url("/fonts/nunito-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-weight: 400; font-style: italic; font-display: swap; src: url("/fonts/nunito-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-weight: 700; font-display: swap; src: url("/fonts/nunito-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-weight: 800; font-display: swap; src: url("/fonts/nunito-latin-800-normal.woff2") format("woff2"); }
@font-face { font-family: "Caveat"; font-weight: 600; font-display: swap; src: url("/fonts/caveat-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Caveat"; font-weight: 700; font-display: swap; src: url("/fonts/caveat-latin-700-normal.woff2") format("woff2"); }

:root {
  --gruen-900: #0b4222;
  --gruen-800: #0f5a2c;
  --gruen-700: #127036;
  --gruen-600: #138a3f;   /* Hauptgrün (Plakate) */
  --gruen-500: #1fa34d;
  --gruen-100: #e3f1e4;
  --gruen-50:  #f0f7ee;
  --orange-600: #e07b00;
  --orange-500: #f39200;  /* Logo-Orange */
  --orange-400: #f7a823;
  --orange-100: #fdebd0;
  --papier: #fbf6ea;
  --kraft: #f3e7cf;
  --holz: #7a5230;
  --holz-dunkel: #553619;
  --tafel: #26332b;
  --text: #1f2a22;
  --text-hell: #55605a;
  --weiss: #fff;

  --schrift: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --schrift-titel: "Baloo 2", "Nunito", system-ui, sans-serif;
  --schrift-hand: "Caveat", "Comic Sans MS", cursive;

  --radius: 18px;
  --radius-klein: 10px;
  --schatten: 0 10px 30px -12px rgba(15, 50, 25, .35);
  --schatten-klein: 0 4px 14px -6px rgba(15, 50, 25, .35);
  --breite: 1180px;
}

/* ---------- Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--schrift);
  font-size: clamp(1rem, .96rem + .2vw, 1.1rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--papier);
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
picture { display: contents; }
a { color: var(--gruen-700); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--orange-600); }
h1, h2, h3, h4 { font-family: var(--schrift-titel); line-height: 1.15; margin: 0 0 .5em; color: var(--gruen-800); }
h1 { font-size: clamp(2.3rem, 1.6rem + 3.2vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.55rem); font-weight: 700; }
p { margin: 0 0 1em; }
strong { font-weight: 800; }
:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 32px, var(--breite)); margin-inline: auto; }
.container--text { max-width: 820px; }
.mitte { text-align: center; }
.hand { font-family: var(--schrift-hand); font-weight: 700; }
.i { width: 1.1em; height: 1.1em; flex: none; display: inline-block; vertical-align: -.15em; }
.i--links { transform: rotate(180deg); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--orange-500); color: #fff; padding: .6em 1em; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Knöpfe ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--schrift-titel); font-weight: 700; font-size: 1.08rem; line-height: 1;
  padding: .85em 1.35em .75em; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s;
  box-shadow: var(--schatten-klein);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--schatten); }
.btn--orange { background: var(--orange-500); color: #fff; }
.btn--orange:hover { background: var(--orange-600); color: #fff; }
.btn--gruen { background: var(--gruen-600); color: #fff; }
.btn--gruen:hover { background: var(--gruen-700); color: #fff; }
.btn--weiss { background: #fff; color: var(--gruen-700); }
.btn--weiss:hover { color: var(--orange-600); }
.btn--weiss-rand { background: transparent; color: var(--gruen-700); border-color: var(--gruen-600); box-shadow: none; }
.btn--klein { font-size: .95rem; padding: .7em 1.1em .6em; }
.knopfreihe { display: flex; flex-wrap: wrap; gap: .8rem; }
.knopfreihe--mitte { justify-content: center; }
.weiter { display: inline-flex; align-items: center; gap: .35em; font-weight: 800; text-decoration: none; color: var(--orange-600); }
.weiter:hover .i { transform: translateX(3px); }
.weiter .i { transition: transform .15s; }

/* ---------- Hinweis-Band ---------- */
.hinweis-band { background: var(--orange-500); color: #fff; font-weight: 700; font-size: .95rem; }
.hinweis-band__inner { display: flex; align-items: center; justify-content: center; gap: .6rem; flex-wrap: wrap; padding: .5rem 0; text-align: center; }
.hinweis-band__icon { width: 26px; height: 26px; flex: none; filter: drop-shadow(0 1px 0 rgba(0,0,0,.15)); }
.hinweis-band a { color: #fff; background: rgba(0,0,0,.14); padding: .15em .8em; border-radius: 99px; text-decoration: none; white-space: nowrap; }
.hinweis-band a:hover { background: var(--gruen-700); }

/* ---------- Kopfbereich ---------- */
.kopf {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 4px solid var(--gruen-600);
  box-shadow: 0 2px 16px -8px rgba(0,0,0,.3);
}
.kopf__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.kopf__logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-bottom: -26px; align-self: flex-start; padding-top: 6px; }
.kopf__logo img { width: 96px; filter: drop-shadow(0 6px 8px rgba(0,0,0,.18)); transition: transform .2s; }
.kopf__logo:hover img { transform: rotate(-3deg) scale(1.03); }
.kopf__name { display: flex; flex-direction: column; line-height: 1; margin-top: -18px; }
.kopf__name-klein { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text-hell); }
.kopf__name-gross { font-family: var(--schrift-titel); font-size: 1.9rem; font-weight: 800; color: var(--gruen-700); }
.kopf__nav { display: flex; align-items: center; gap: 1.2rem; }
.kopf__nav ul { display: flex; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.kopf__nav ul a {
  display: block; padding: .45em .8em .35em; border-radius: 99px;
  font-family: var(--schrift-titel); font-weight: 700; font-size: 1.08rem;
  color: var(--text); text-decoration: none; transition: background .15s, color .15s;
}
.kopf__nav ul a:hover { background: var(--gruen-50); color: var(--gruen-700); }
.kopf__nav ul a[aria-current="page"] { background: var(--gruen-600); color: #fff; }
.kopf__cta { font-size: .98rem; padding: .7em 1.1em .6em; white-space: nowrap; }
.kopf__menu-btn { display: none; }

@media (max-width: 1100px) {
  .kopf__cta { display: none; }
}
@media (max-width: 900px) {
  .kopf__inner { min-height: 64px; }
  .kopf__logo { margin-bottom: -18px; }
  .kopf__logo img { width: 72px; }
  .kopf__name { margin-top: -12px; }
  .kopf__name-gross { font-size: 1.55rem; }
  .kopf__menu-btn {
    display: inline-flex; align-items: center; gap: .4rem;
    font: 700 1rem var(--schrift-titel); color: #fff; background: var(--gruen-600);
    border: 0; border-radius: 99px; padding: .6em 1em .5em; cursor: pointer;
  }
  .kopf__menu-btn .i { width: 1.3em; height: 1.3em; }
  .kopf__nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .8rem;
    background: #fff; padding: 1rem 16px 1.4rem; border-bottom: 4px solid var(--gruen-600);
    box-shadow: 0 20px 30px -20px rgba(0,0,0,.4);
    display: none;
  }
  .kopf__nav.ist-offen { display: flex; }
  .kopf__nav ul { flex-direction: column; }
  .kopf__nav ul a { font-size: 1.25rem; padding: .55em .9em .45em; }
  .kopf__cta { display: inline-flex; justify-content: center; }
}

/* ---------- Wellen & Deko ---------- */
.welle { position: absolute; left: 0; bottom: -1px; width: 100%; height: clamp(34px, 5vw, 80px); pointer-events: none; }
.welle--oben { top: -1px; bottom: auto; transform: rotate(180deg); }
.pinsel { width: min(280px, 70%); height: 16px; color: var(--orange-500); margin-top: -.2em; }

/* ---------- Startseiten-Held ---------- */
.held {
  position: relative; isolation: isolate; color: #fff;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  min-height: min(88vh, 760px);
  display: flex; align-items: center;
}
.held__bild { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.held::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(8, 55, 26, .9) 0%, rgba(12, 80, 38, .72) 40%, rgba(12, 80, 38, .15) 72%, rgba(0,0,0,0) 100%);
}
.held__raster { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.held__gruss { font-size: clamp(1.6rem, 1.2rem + 1.3vw, 2.3rem); color: var(--orange-400); margin: 0 0 .2em; transform: rotate(-2deg); transform-origin: left; }
.held h1 { color: #fff; margin: 0 0 .35em; text-shadow: 0 3px 18px rgba(0,0,0,.25); font-size: clamp(3.2rem, 2rem + 6vw, 6.4rem); line-height: .92; }
.held__h1-klein { display: block; font-size: .34em; letter-spacing: .06em; text-transform: uppercase; color: var(--orange-100); line-height: 1.2; }
.held__unter { font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); max-width: 38ch; margin-bottom: 1.8rem; }
.held__unter strong { color: var(--orange-400); }

.pinnwand {
  position: relative; display: block; background: #fff; padding: 12px 12px 14px;
  border-radius: 6px; box-shadow: 0 25px 45px -18px rgba(0,0,0,.55);
  transform: rotate(3deg); transition: transform .25s ease; text-decoration: none; color: var(--text);
}
.pinnwand:hover { transform: rotate(0deg) scale(1.02); color: var(--text); }
.pinnwand img { width: 100%; border-radius: 3px; }
.klebeband {
  position: absolute; top: -14px; left: 50%; width: 120px; height: 32px; transform: translateX(-50%) rotate(-4deg);
  background: rgba(255, 236, 190, .85); box-shadow: 0 2px 6px rgba(0,0,0,.15); z-index: 2;
  clip-path: polygon(3% 0, 97% 4%, 100% 100%, 0 96%);
}
.held__plakat { max-width: 390px; justify-self: end; width: 100%; }
.held__plakat-text { display: block; font-weight: 800; font-size: .98rem; line-height: 1.3; padding: .7rem .3rem 0; }
.held__plakat-text .hand { color: var(--orange-600); font-size: 1.4rem; display: block; line-height: 1; }

@media (max-width: 900px) {
  .held { min-height: 0; }
  .held::before { background: linear-gradient(180deg, rgba(8, 55, 26, .9), rgba(12, 80, 38, .75)); }
  .held__raster { grid-template-columns: 1fr; }
  .held__plakat { justify-self: center; max-width: 330px; margin-top: 1rem; }
}

/* ---------- Seitenkopf (Unterseiten) ---------- */
.seitenkopf {
  position: relative; isolation: isolate; color: #fff; text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4.5rem, 9vw, 7.5rem);
}
.seitenkopf__bild { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.seitenkopf::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 70, 32, .82), rgba(10, 70, 32, .66)); }
.seitenkopf h1 { color: #fff; margin: 0; text-shadow: 0 3px 18px rgba(0,0,0,.25); }
.seitenkopf__unter { font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); color: var(--orange-400); margin: 0; transform: rotate(-2deg); }
.seitenkopf .pinsel { margin-inline: auto; }

/* ---------- Abschnitte ---------- */
.abschnitt { position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.abschnitt--papier { background: var(--papier); }
.abschnitt--kraft {
  background-color: var(--kraft);
  background-image: radial-gradient(rgba(122, 82, 48, .07) 1px, transparent 1.4px);
  background-size: 14px 14px;
}
.abschnitt--gruen {
  background: var(--gruen-600); color: #fff;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.08) 0 120px, transparent 121px),
    radial-gradient(circle at 88% 80%, rgba(255,255,255,.06) 0 180px, transparent 181px);
  padding-block: clamp(5rem, 9vw, 8rem);
}
.abschnitt--gruen-hell { background: var(--gruen-50); }
.abschnitt-kopf { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.abschnitt-kopf__ueber { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.9rem); color: var(--orange-600); margin: 0 0 .1em; line-height: 1; transform: rotate(-2deg); display: block; }
.abschnitt-kopf--hell .abschnitt-kopf__ueber { color: var(--orange-400); }
.abschnitt-titel { margin: 0; position: relative; display: inline-block; }
.abschnitt-titel::after {
  content: ""; display: block; height: 10px; width: 70%; margin: .15em auto 0;
  background: var(--orange-500); border-radius: 60% 40% 55% 45% / 80% 70% 30% 20%;
  transform: rotate(-1deg); opacity: .9;
}
.abschnitt-titel--links::after { margin-left: 0; width: 45%; }
.abschnitt-titel--klein { font-size: 1.6rem; margin-bottom: 1.2rem; }
.abschnitt-kopf--hell .abschnitt-titel, .abschnitt--gruen h3 { color: #fff; }
.einleitung { font-size: 1.18rem; max-width: 60ch; margin: 0 auto 2.5rem; text-align: center; }
.einleitung--links { text-align: left; margin-left: 0; margin-bottom: 1rem; font-weight: 700; }

.zwei-spalten { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.zwei-spalten--bild { grid-template-columns: .9fr 1.1fr; }
.zwei-spalten--bild > :first-child:not(figure) { order: 0; }
@media (max-width: 860px) {
  .zwei-spalten, .zwei-spalten--bild { grid-template-columns: 1fr; }
}

/* ---------- Karten-Raster ---------- */
.karten-raster { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.karten-raster + .mitte { margin-top: clamp(2.2rem, 4vw, 3rem); }
.karten-raster--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.karten-raster--produkte { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }

/* Beitragskarten */
.beitrag-karte {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--schatten-klein); transition: transform .2s, box-shadow .2s;
}
.beitrag-karte:hover { transform: translateY(-4px); box-shadow: var(--schatten); }
.beitrag-karte__bild { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--gruen-100); }
.beitrag-karte__bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.beitrag-karte:hover .beitrag-karte__bild img { transform: scale(1.04); }
.beitrag-karte__bild--plakat { background: var(--gruen-600); background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px); padding: 14px; }
.beitrag-karte__bild--plakat img { object-fit: contain; filter: drop-shadow(0 8px 14px rgba(0,0,0,.35)); }
.beitrag-karte__text { padding: 1.2rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.beitrag-karte__text p { color: var(--text-hell); }
.beitrag-karte__text .weiter { margin-top: auto; }
.beitrag-karte__datum { display: flex; align-items: center; gap: .4em; font-size: .88rem; font-weight: 800; color: var(--orange-600) !important; margin-bottom: .4rem; }
.beitrag-karte h3 { margin-bottom: .4rem; }
.beitrag-karte h3 a { color: var(--gruen-800); text-decoration: none; }
.beitrag-karte h3 a:hover { color: var(--orange-600); }

/* ---------- Etiketten (Status) ---------- */
.etikett {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--schrift-titel); font-weight: 700; font-size: .92rem; line-height: 1;
  padding: .5em .95em .4em 1.4em; color: #fff; background: var(--gruen-600);
  border-radius: 4px 999px 999px 4px; position: relative; box-shadow: var(--schatten-klein);
}
.etikett::before { content: ""; position: absolute; left: .55em; top: 50%; width: .42em; height: .42em; border-radius: 50%; background: #fff; transform: translateY(-50%); }
.etikett--saison { background: var(--orange-500); }
.etikett--aus { background: #7c847e; }
.etikett--inline { font-size: .8em; padding: .3em .7em .22em 1.2em; vertical-align: .1em; box-shadow: none; }

/* ---------- Produkte ---------- */
.produkt { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten-klein); display: flex; flex-direction: column; scroll-margin-top: 110px; }
.produkt__bild { position: relative; aspect-ratio: 16 / 10; background: var(--kraft); }
.produkt__bild img { width: 100%; height: 100%; object-fit: cover; }
.produkt__bild .etikett { position: absolute; left: 0; bottom: 1rem; border-radius: 0 999px 999px 0; }
.produkt__illu { width: 100%; height: 100%; display: grid; place-items: center; background: var(--kraft); background-image: radial-gradient(rgba(122, 82, 48, .1) 1.2px, transparent 1.6px); background-size: 16px 16px; }
.produkt__illu svg { width: 42%; height: 70%; filter: drop-shadow(0 8px 10px rgba(0,0,0,.2)); }
.produkt__text { padding: 1.3rem 1.5rem 1.6rem; }
.produkt__text h3 { margin-bottom: 0; }
.produkt__unter { font-size: 1.45rem; color: var(--orange-600); margin: 0 0 .5rem; line-height: 1.1; }
.produkt--aus .produkt__bild img { filter: grayscale(.7) brightness(.95); }
.haken { list-style: none; margin: 0; padding: 0; }
.haken li { position: relative; padding-left: 1.7em; margin-bottom: .35em; }
.haken li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 1.05em; height: 1.05em; border-radius: 50%;
  background: var(--gruen-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 70% no-repeat;
}

/* Startseite: große Angebotskarten */
.highlight-raster { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2.5rem); }
.highlight { background: #fff; color: var(--text); border-radius: var(--radius); overflow: hidden; box-shadow: 0 25px 40px -25px rgba(0,0,0,.6); display: flex; flex-direction: column; }
.highlight__bild { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.highlight__text { padding: 1.6rem 1.8rem 1.9rem; position: relative; }
.highlight__text .etikett { position: absolute; top: -1.1rem; right: 1.2rem; border-radius: 999px; padding-left: 1.4em; }
.highlight h3 { color: var(--gruen-800) !important; font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); margin: 0; }
.highlight .hand { font-size: 1.5rem; color: var(--orange-600); margin: 0 0 .6rem; line-height: 1.1; }
@media (max-width: 800px) { .highlight-raster { grid-template-columns: 1fr; } }

.symbolreihe { list-style: none; padding: 0; margin: clamp(2.5rem, 5vw, 3.5rem) 0 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.symbolreihe a {
  display: flex; flex-direction: column; align-items: center; gap: .5rem; width: 176px; padding: 1.1rem .6rem;
  background: rgba(255,255,255,.1); border: 2px dashed rgba(255,255,255,.35); border-radius: var(--radius);
  color: #fff; text-decoration: none; font-weight: 800; text-align: center; line-height: 1.2; transition: background .2s, transform .2s;
}
.symbolreihe a:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); color: #fff; }
.symbolreihe svg { width: 56px; height: 56px; filter: drop-shadow(0 4px 4px rgba(0,0,0,.2)); }

/* ---------- Kreidetafel (Öffnungszeiten) ---------- */
.tafel {
  background: linear-gradient(135deg, #8a5d36, var(--holz-dunkel));
  padding: 16px; border-radius: 14px; box-shadow: 0 25px 40px -20px rgba(40, 20, 0, .6), inset 0 0 0 2px rgba(255,255,255,.12);
  transform: rotate(-1.2deg);
}
.tafel__flaeche {
  position: relative; background: var(--tafel); color: #f4f1e8; border-radius: 6px; padding: clamp(1.5rem, 4vw, 2.4rem);
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.07), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(255,255,255,.05), transparent 50%);
  box-shadow: inset 0 0 40px rgba(0,0,0,.45);
}
.tafel__titel { font-family: var(--schrift-hand); font-weight: 700; color: #fff; font-size: clamp(2.3rem, 1.8rem + 1.5vw, 3rem); text-align: center; margin: 0 0 .8rem; }
.tafel__titel::after { content: ""; display: block; width: 60%; height: 3px; margin: .1em auto 0; background: rgba(255,255,255,.55); border-radius: 50%; }
.tafel__eintrag { border-bottom: 2px dashed rgba(255,255,255,.2); padding: .8rem 0; }
.tafel__eintrag:last-of-type { border-bottom: 0; }
.tafel__eintrag h3 { font-family: var(--schrift-hand); font-weight: 700; font-size: 1.85rem; color: var(--orange-400); margin: 0; line-height: 1.1; }
.tafel__eintrag p { margin: 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0 1rem; font-size: 1.05rem; }
.tafel__eintrag strong { font-family: var(--schrift-hand); font-size: 1.6rem; font-weight: 700; line-height: 1.2; color: #fff; }
.tafel__eintrag span { align-self: center; }
.tafel__eintrag--zu strong { text-decoration: line-through wavy rgba(255,255,255,.5); text-decoration-thickness: 1px; opacity: .8; }
.tafel__hinweis { font-size: .9rem !important; opacity: .75; }
.tafel__herz { position: absolute; right: 18px; bottom: 14px; width: 30px; height: 30px; color: var(--orange-400); transform: rotate(12deg); }

/* ---------- Standorte ---------- */
.standort { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 2px dashed rgba(122, 82, 48, .25); }
.standort:last-child { border-bottom: 0; }
.standort h3 { margin-bottom: .2rem; font-size: 1.3rem; }
.standort p { margin-bottom: .3rem; }
.standort__pin { width: 42px; height: 42px; flex: none; color: #fff; background: var(--orange-500); padding: 9px; border-radius: 50% 50% 50% 8px; transform: rotate(-45deg); }
.standort__pin use { transform: rotate(45deg); transform-origin: center; }
.standorte-kurz .abschnitt-titel { margin-bottom: 1rem; }
.standort__hinweis { font-size: .92rem; color: var(--text-hell); background: rgba(255,255,255,.6); border-left: 3px solid var(--orange-400); padding: .4rem .7rem; border-radius: 0 6px 6px 0; margin: .3rem 0 .5rem; }
.adresse .standort__hinweis, .adresse .standort__koord { flex: none; }
.standort__koord { font-size: .92rem; font-weight: 700; margin: .2rem 0 .5rem; }
.anfahrt__bild figcaption a { display: block; font-family: var(--schrift); font-size: 1rem; font-weight: 800; margin-top: .3rem; }

/* ---------- Polaroid / Notiz / Zitat ---------- */
.polaroid { margin: 0; background: #fff; padding: 14px 14px 10px; border-radius: 4px; box-shadow: 0 25px 45px -20px rgba(0,0,0,.45); transform: rotate(2deg); max-width: 480px; justify-self: center; }
.polaroid--links { transform: rotate(-2.5deg); }
.polaroid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 2px; }
.polaroid figcaption { text-align: center; font-size: 1.6rem; color: var(--text-hell); padding-top: .4rem; }

.zahlen { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; padding: 0; margin: 1.5rem 0; }
.zahlen li { flex: 1 1 120px; background: var(--gruen-50); border: 2px solid var(--gruen-100); border-radius: var(--radius-klein); padding: .8rem 1rem; text-align: center; }
.zahlen strong { display: block; font-family: var(--schrift-titel); font-size: 1.9rem; color: var(--gruen-600); line-height: 1.1; }
.zahlen span { font-size: .9rem; font-weight: 700; color: var(--text-hell); }

.zitat { margin: 0 0 1.8rem; padding: 1rem 1.4rem; border-left: 6px solid var(--orange-500); background: #fff; border-radius: 0 var(--radius-klein) var(--radius-klein) 0; box-shadow: var(--schatten-klein); }
.zitat p { font-family: var(--schrift-hand); font-size: 1.9rem; margin: 0; color: var(--gruen-800); line-height: 1.2; }
.zitat cite { font-style: normal; font-weight: 800; color: var(--text-hell); font-size: .9rem; }

.notiz { background: #fff8c9; padding: 1.2rem 1.4rem .6rem; border-radius: 2px; box-shadow: 0 12px 20px -12px rgba(0,0,0,.4); transform: rotate(-1deg); margin-top: 1.5rem; position: relative; }
.notiz::before { content: ""; position: absolute; top: -12px; left: 50%; width: 90px; height: 26px; background: rgba(255,255,255,.65); transform: translateX(-50%) rotate(3deg); box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.notiz__titel { font-size: 1.7rem; color: var(--orange-600); margin: 0 0 .3rem; line-height: 1; }
.notiz__von { font-weight: 800; color: var(--text-hell); font-size: .9rem; }

/* ---------- Zeitstrahl ---------- */
.zeitstrahl { list-style: none; margin: 0 auto; padding: 0; max-width: 860px; position: relative; }
.zeitstrahl::before { content: ""; position: absolute; left: 70px; top: 10px; bottom: 10px; width: 4px; background: repeating-linear-gradient(to bottom, rgba(255,255,255,.55) 0 10px, transparent 10px 18px); }
.zeitstrahl li { display: grid; grid-template-columns: 140px 1fr; gap: 1.2rem; align-items: start; margin-bottom: 1.6rem; position: relative; }
.zeitstrahl__jahr { justify-self: center; background: var(--orange-500); color: #fff; font-family: var(--schrift-titel); font-weight: 800; font-size: 1.15rem; padding: .45em .9em .3em; border-radius: 99px; position: relative; z-index: 1; box-shadow: 0 0 0 5px var(--gruen-600); }
.zeitstrahl li > div { background: rgba(255,255,255,.1); border-radius: var(--radius-klein); padding: 1rem 1.3rem .3rem; }
.zeitstrahl h3 { margin-bottom: .2rem; }
@media (max-width: 600px) {
  .zeitstrahl::before { left: 20px; }
  .zeitstrahl li { grid-template-columns: 1fr; gap: .5rem; padding-left: 44px; }
  .zeitstrahl__jahr { justify-self: start; margin-left: -44px; }
}

.werte { list-style: none; padding: 0; margin: 0 0 2.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1.5rem; text-align: center; }
.werte li { background: #fff; border-radius: var(--radius); padding: 1.6rem 1.4rem .8rem; box-shadow: var(--schatten-klein); }
.werte svg { width: 64px; height: 64px; margin: 0 auto .6rem; }

/* ---------- Galerie ---------- */
.galerie-streifen { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem; }
.galerie-streifen a { display: block; border-radius: var(--radius-klein); overflow: hidden; aspect-ratio: 1; box-shadow: var(--schatten-klein); }
.galerie-streifen img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.galerie-streifen a:hover img { transform: scale(1.08); }
@media (max-width: 800px) { .galerie-streifen { grid-template-columns: repeat(3, 1fr); } }

.galerie { list-style: none; padding: 0; margin: 0; columns: 3 300px; column-gap: 1rem; }
.galerie__eintrag { break-inside: avoid; margin-bottom: 1rem; }
.galerie__eintrag a { display: block; position: relative; border-radius: var(--radius-klein); overflow: hidden; box-shadow: var(--schatten-klein); background: #fff; }
.galerie__eintrag img { width: 100%; transition: transform .4s; }
.galerie__eintrag a:hover img { transform: scale(1.04); }
.galerie__text {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 1rem .7rem;
  background: linear-gradient(transparent, rgba(0,0,0,.65)); color: #fff; font-weight: 800; font-size: .95rem;
  opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s;
}
.galerie__eintrag a:hover .galerie__text, .galerie__eintrag a:focus-visible .galerie__text { opacity: 1; transform: none; }
@media (hover: none) { .galerie__text { opacity: 1; transform: none; } }

/* ---------- Beitrag (Aktuelles) ---------- */
.beitrag__kopf { position: relative; background: var(--gruen-600); color: #fff; padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem);
  background-image: radial-gradient(circle at 90% 10%, rgba(255,255,255,.1) 0 160px, transparent 161px); }
.beitrag__kopf h1 { color: #fff; font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem); }
.beitrag__zurueck a { color: #fff; font-weight: 800; text-decoration: none; display: inline-flex; gap: .4em; align-items: center; background: rgba(0,0,0,.15); padding: .3em .9em; border-radius: 99px; }
.beitrag__zurueck a:hover { background: var(--orange-500); color: #fff; }
.beitrag__autor { margin-left: .8em; }
.beitrag__datum { display: flex; align-items: center; gap: .4em; font-weight: 800; color: var(--orange-100); margin: 1rem 0 .4rem; }
.beitrag__kurz { font-size: 1.2rem; max-width: 60ch; opacity: .95; }
.beitrag__koerper { padding-top: clamp(2rem, 4vw, 3rem); }
.beitrag__raster { display: grid; grid-template-columns: minmax(0, 480px) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.beitrag__raster--foto { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.beitrag__titelbild { margin: 0; position: sticky; top: 110px; }
.beitrag__titelbild a { display: block; border-radius: var(--radius-klein); overflow: hidden; box-shadow: var(--schatten); }
.beitrag__titelbild--plakat a { background: #fff; padding: 10px; transform: rotate(-1.5deg); transition: transform .25s; }
.beitrag__titelbild--plakat a:hover { transform: rotate(0); }
.beitrag__titelbild img { width: 100%; }
.beitrag__titelbild figcaption { font-size: .9rem; color: var(--text-hell); margin-top: .8rem; text-align: center; }
@media (max-width: 900px) {
  .beitrag__raster, .beitrag__raster--foto { grid-template-columns: 1fr; }
  .beitrag__titelbild { position: static; max-width: 520px; justify-self: center; }
}
.bildraster { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: 1.2rem; }
.bildraster a { display: block; border-radius: var(--radius-klein); overflow: hidden; box-shadow: var(--schatten-klein); background: #fff; }
.bildraster img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s; }
.bildraster--plakate img { aspect-ratio: auto; object-fit: contain; }
.bildraster a:hover img { transform: scale(1.03); }
.bildraster__text { font-size: .92rem; color: var(--text-hell); margin: .5rem .2rem 0; }

/* ---------- Fließtext (Markdown) ---------- */
.fliesstext h2 { font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem); margin-top: 1.8em; }
.fliesstext h2:first-child { margin-top: 0; }
.fliesstext h3 { margin-top: 1.4em; color: var(--gruen-700); }
.fliesstext ul { padding-left: 0; list-style: none; }
.fliesstext ul li { position: relative; padding-left: 1.7em; margin-bottom: .4em; }
.fliesstext ol { list-style: none; padding: 0; counter-reset: schritt; }
.fliesstext ol li { counter-increment: schritt; position: relative; padding-left: 2.8em; margin-bottom: .7em; min-height: 2em; display: flex; align-items: center; }
.fliesstext ol li::before { content: counter(schritt) "."; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 2em; height: 2em; border-radius: 50%; background: var(--orange-500); color: #fff; font-family: var(--schrift-titel); font-weight: 800; display: grid; place-items: center; line-height: 1; }
.fliesstext ul li::before { content: ""; position: absolute; left: .2em; top: .55em; width: .65em; height: .65em; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 3px var(--orange-100); }
.fliesstext blockquote { margin: 1.5em 0; padding: 1.2rem 1.5rem; background: #fff; border-left: 6px solid var(--orange-500); border-radius: 0 var(--radius-klein) var(--radius-klein) 0; box-shadow: var(--schatten-klein); }
.fliesstext blockquote p { font-family: var(--schrift-hand); font-size: 1.8rem; line-height: 1.25; color: var(--gruen-800); margin-bottom: .3em; }
.fliesstext blockquote cite { font-family: var(--schrift); font-size: .95rem; font-style: normal; font-weight: 800; color: var(--text-hell); display: block; }
.fliesstext .tipp { background: var(--orange-100); border-radius: var(--radius-klein); padding: .9rem 1.2rem; border: 2px dashed var(--orange-400); }
.fliesstext .quelle, .quelle { font-size: .9rem; color: var(--text-hell); border-top: 2px dashed rgba(0,0,0,.1); padding-top: .8rem; margin-top: 2rem; }
.seite-inhalt .fliesstext, .abschnitt .container--text.fliesstext { overflow-wrap: anywhere; }

/* ---------- Futter (Säcke) ---------- */
.saecke { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.sack {
  position: relative; background: #e9d8b4; border-radius: 26px 26px 16px 16px; padding: 2.2rem 1rem 1.3rem; text-align: center;
  box-shadow: inset 0 -10px 0 rgba(0,0,0,.06), var(--schatten-klein);
  background-image: repeating-linear-gradient(0deg, rgba(122,82,48,.08) 0 2px, transparent 2px 6px), repeating-linear-gradient(90deg, rgba(122,82,48,.06) 0 2px, transparent 2px 6px);
}
.sack::before { content: ""; position: absolute; top: 10px; left: 50%; width: 46%; height: 8px; transform: translateX(-50%); border-top: 3px dashed var(--holz); border-radius: 50%; }
.sack__icon { width: 46px; height: 46px; margin: 0 auto .4rem; }
.sack strong { display: block; font-family: var(--schrift-titel); font-size: 1.35rem; color: var(--holz-dunkel); line-height: 1.1; }
.sack span { font-weight: 800; font-size: .95rem; color: var(--holz); }

/* ---------- Kontakt ---------- */
.kontakt-karten { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 1.2rem; }
.kontakt-karte {
  display: flex; flex-direction: column; gap: .15rem; padding: 1.5rem; border-radius: var(--radius);
  background: var(--gruen-600); color: #fff; text-decoration: none; box-shadow: var(--schatten-klein); transition: transform .2s;
  overflow-wrap: anywhere;
}
.kontakt-karte:hover { transform: translateY(-4px); color: #fff; }
.kontakt-karte--orange { background: var(--orange-500); }
.kontakt-karte__icon { width: 44px; height: 44px; background: rgba(255,255,255,.18); border-radius: 50%; padding: 10px; margin-bottom: .6rem; }
.kontakt-karte__art { font-size: .9rem; font-weight: 700; opacity: .9; }
.kontakt-karte strong { font-family: var(--schrift-titel); font-size: 1.4rem; line-height: 1.2; }

.formular-box { background: #fff; border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--schatten); }
.formular { display: grid; gap: 1rem; }
.formular label { display: grid; gap: .3rem; font-weight: 800; color: var(--gruen-800); }
.formular input, .formular textarea {
  font: inherit; color: var(--text); padding: .75em .9em; border: 2px solid #d9dfd6; border-radius: var(--radius-klein); background: var(--papier);
  transition: border-color .15s, background .15s;
}
.formular input:focus, .formular textarea:focus { outline: none; border-color: var(--gruen-600); background: #fff; }
.formular button { justify-self: start; }
.formular__danke { background: var(--gruen-50); border-radius: var(--radius-klein); padding: .8rem 1rem; font-weight: 700; }

.adress-raster { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 1.2rem; }
.adresse { background: #fff; border-radius: var(--radius); padding: 1.5rem 1.4rem; box-shadow: var(--schatten-klein); display: flex; flex-direction: column; align-items: flex-start; }
.adresse h3 { font-size: 1.25rem; margin: .8rem 0 .4rem; }
.adresse p { flex: 1; }
.anfahrt-titel { text-align: center; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin: 3.5rem 0 1.5rem; }
.anfahrt { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(1.5rem, 4vw, 3rem); max-width: 860px; margin: 0 auto; align-items: start; }
.anfahrt__bild { margin: 0; text-align: center; }
.anfahrt__bild a { display: block; border-radius: 10px; overflow: hidden; background: #fff; padding: 8px; box-shadow: var(--schatten); transform: rotate(-1.5deg); transition: transform .25s; }
.anfahrt__bild:nth-child(2) a { transform: rotate(1.5deg); }
.anfahrt__bild a:hover { transform: rotate(0); }
.anfahrt__bild img { width: 100%; border-radius: 4px; }
.anfahrt__bild figcaption { font-family: var(--schrift-hand); font-size: 1.5rem; line-height: 1.2; color: var(--gruen-800); margin-top: .9rem; }
.hinweis-klein { font-size: .85rem; color: var(--text-hell); text-align: center; margin-top: 1.5rem; }

.social-hinweis { margin-top: 2.5rem; font-weight: 700; }
.social-hinweis a { display: inline-flex; align-items: center; gap: .3em; }
.gross-icon { width: 110px; height: 110px; margin: 0 auto 1rem; }

/* ---------- Kontakt-Aufruf ---------- */
.kontakt-cta { background: var(--orange-500); color: #fff; padding: clamp(2.5rem, 5vw, 3.5rem) 0; position: relative; overflow: hidden;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.06) 0 14px, transparent 14px 28px); }
.kontakt-cta__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem 2rem; align-items: center; }
.kontakt-cta h2 { color: #fff; margin-bottom: .2rem; font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.3rem); }
.kontakt-cta p { margin: 0; }
.kontakt-cta a:not(.btn) { color: #fff; font-weight: 800; overflow-wrap: anywhere; }
.kontakt-cta__deko { width: 90px; height: 90px; filter: drop-shadow(0 6px 8px rgba(0,0,0,.2)); transform: rotate(-8deg); }
@media (max-width: 860px) { .kontakt-cta__inner { grid-template-columns: 1fr; text-align: center; } .kontakt-cta__deko { margin: 0 auto; } .kontakt-cta .knopfreihe { justify-content: center; } }

/* ---------- Fußbereich ---------- */
.fuss { position: relative; color: #e7f2e8; margin-top: 0; }
.fuss__huegel { display: block; width: 100%; height: clamp(50px, 8vw, 120px); margin-bottom: -2px; background: var(--papier); }
main:has(> .kontakt-cta:last-child) + .fuss .fuss__huegel { background: var(--orange-500); }
main:has(> .abschnitt--gruen-hell:last-child) + .fuss .fuss__huegel { background: var(--gruen-50); }
main:has(> .abschnitt--kraft:last-child) + .fuss .fuss__huegel { background: var(--kraft); }
.fuss__traktor { position: absolute; top: clamp(4px, 1.6vw, 26px); left: 64%; width: clamp(46px, 5vw, 70px); color: var(--gruen-800); animation: tuckern 2.4s ease-in-out infinite; }
@keyframes tuckern { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-2px) rotate(-1deg); } }
@media (prefers-reduced-motion: reduce) { .fuss__traktor { animation: none; } html { scroll-behavior: auto; } }
.fuss__inhalt { background: var(--gruen-800); padding: 2.5rem 0 1.2rem; }
.fuss__raster { display: grid; grid-template-columns: 1fr 1.3fr 1.3fr 1.2fr; gap: 2rem; }
.fuss h2 { color: #fff; font-size: 1.25rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .8rem; }
.fuss__h2-klein { margin-top: 1.4rem; }
.fuss p { font-size: .95rem; line-height: 1.55; }
.fuss strong { color: #fff; }
.fuss a { color: #fff; }
.fuss a:hover { color: var(--orange-400); }
.fuss__marke img { width: 120px; margin-bottom: .6rem; }
.fuss__slogan { font-size: 1.7rem; color: var(--orange-400); line-height: 1.1; }
.fuss__social { display: flex; gap: .6rem; }
.fuss__social a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12); }
.fuss__social a:hover { background: var(--orange-500); color: #fff; }
.fuss__social .i { width: 22px; height: 22px; }
.fuss__liste, .fuss__links { list-style: none; padding: 0; margin: 0 0 1rem; font-size: .95rem; }
.fuss__liste li { display: flex; gap: .6rem; margin-bottom: .6rem; line-height: 1.4; overflow-wrap: anywhere; }
.fuss__liste .i { margin-top: .15em; color: var(--orange-400); }
.fuss__liste small { opacity: .8; }
.fuss__links li { margin-bottom: .3rem; }
.fuss__pfeil { display: inline-flex; align-items: center; gap: .4em; font-weight: 800; }
.fuss__copy { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; border-top: 1px solid rgba(255,255,255,.15); margin-top: 2rem; padding-top: 1rem; font-size: .85rem; opacity: .85; }
.fuss__copy p { margin: 0; }
.fuss__copy-links { display: flex; gap: 1.4rem; }
@media (max-width: 1000px) { .fuss__raster { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fuss__raster { grid-template-columns: 1fr; } }

/* ---------- Lightbox ---------- */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; margin: 0; }
.lightbox::backdrop { background: rgba(8, 30, 15, .92); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox__figur { margin: 0; display: grid; justify-items: center; gap: .6rem; padding: 60px 16px 20px; max-height: 100vh; }
.lightbox__bild { max-width: min(94vw, 1400px); max-height: calc(100vh - 140px); width: auto; height: auto; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox__text { color: #fff; font-weight: 700; text-align: center; max-width: 70ch; }
.lightbox__btn { position: fixed; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.14); color: #fff; }
.lightbox__btn:hover { background: var(--orange-500); }
.lightbox__btn .i { width: 26px; height: 26px; }
.lightbox__zu { top: 14px; right: 14px; }
.lightbox__zurueck { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__weiter { right: 14px; top: 50%; transform: translateY(-50%); }
.lightbox.einzeln .lightbox__zurueck, .lightbox.einzeln .lightbox__weiter { display: none; }

/* ---------- Einblende-Animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .einblenden { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
  .js .einblenden.sichtbar { opacity: 1; transform: none; }
}

@media print {
  .kopf, .hinweis-band, .fuss__huegel, .fuss__traktor, .kontakt-cta, .welle { display: none !important; }
  .held, .seitenkopf, .beitrag__kopf { color: #000; background: none; }
}

/* ---------- Kleine Bildschirme ---------- */
@media (max-width: 480px) {
  .kopf__name-klein { display: none; }
  .kopf__name { margin-top: -14px; }
  .symbolreihe { gap: .6rem; }
  .symbolreihe li { flex: 0 0 calc(50% - .3rem); }
  .symbolreihe a { width: 100%; padding: .9rem .4rem; font-size: .92rem; }
  .symbolreihe svg { width: 44px; height: 44px; }
}
