/* ==========================================================================
   Fein- & Feldgemüse Dahlem — Stylesheet
   Farbwelt: helles, freundliches Grün + warme Erdtöne
   Keine externen Requests (DSGVO-freundlich), keine Frameworks.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design-Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Grün — Hauptfarbe */
  --green-050: #f1f7ec;
  --green-100: #e2efd8;
  --green-200: #c7e0b3;
  --green-300: #a6cd8b;
  --green-400: #86b968;   /* helles, freundliches Grün */
  --green-500: #6ba24e;
  --green-600: #55863d;   /* Text auf Hell, Buttons */
  --green-700: #416831;
  --green-800: #2f4b25;

  /* Erdtöne / Akzent */
  --sand-050: #fdfbf6;
  --sand-100: #f7f2e7;
  --sand-200: #ece3d1;
  --sand-300: #dccfb6;
  --clay:     #c2733f;    /* Terrakotta-Akzent */
  --clay-dark:#a25c30;

  /* Neutral */
  --ink:      #26301f;
  --ink-soft: #4d5946;
  --muted:    #6f7c67;
  --line:     #e3ded1;
  --white:    #ffffff;

  /* Rollen */
  --bg:        var(--sand-050);
  --bg-alt:    var(--sand-100);
  --surface:   var(--white);
  --text:      var(--ink);
  --text-soft: var(--ink-soft);
  --brand:     var(--green-600);
  --brand-soft:var(--green-400);

  /* Typografie — Systemschriften, damit die Seite ohne externe
     Font-CDN auskommt (schnell + datenschutzfreundlich).
     Möchtest du z. B. "Fraunces" + "Nunito Sans", lade die Dateien
     selbst hoch und ersetze die beiden Stacks hier. */
  --font-head: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
               "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, sans-serif;

  /* Maße */
  --wrap: 1140px;
  --wrap-narrow: 720px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(38, 48, 31, .06),
               0 2px 8px rgba(38, 48, 31, .05);
  --shadow-md: 0 2px 6px rgba(38, 48, 31, .07),
               0 12px 32px rgba(38, 48, 31, .09);

  --step: clamp(3rem, 7vw, 5.5rem);   /* vertikaler Sektionsabstand */
}

/* --------------------------------------------------------------------------
   2. Reset & Basis
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--clay-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.45rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

.skip-link {
  position: absolute; left: 0; top: 0;
  transform: translateY(-120%);
  background: var(--green-700); color: #fff;
  padding: .75rem 1.25rem; z-index: 999; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { transform: translateY(0); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout-Helfer
   -------------------------------------------------------------------------- */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
@media (min-width: 48em) {
  .wrap { width: min(100% - 4rem, var(--wrap)); }
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--step); }
.section--tight { padding-block: calc(var(--step) * .62); }
.section--alt { background: var(--bg-alt); }
.section--green {
  background:
    linear-gradient(180deg, var(--green-050), var(--green-100));
}

.section__head { max-width: 46rem; margin-bottom: 2.5rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head p { color: var(--text-soft); font-size: 1.075rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: .85rem;
}

.lead { font-size: clamp(1.1rem, 2.2vw, 1.3rem); color: var(--text-soft); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font: inherit; font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green-600); color: #fff; }
.btn--primary:hover { background: var(--green-700); color: #fff; }

.btn--ghost {
  background: transparent; color: var(--green-700);
  border-color: var(--green-300);
}
.btn--ghost:hover { background: var(--green-050); border-color: var(--green-500); color: var(--green-800); }

.btn--light { background: rgba(255,255,255,.94); color: var(--green-800); }
.btn--light:hover { background: #fff; color: var(--green-800); }

.btn--outline-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.65);
  backdrop-filter: blur(2px);
}
.btn--outline-light:hover { background: rgba(255,255,255,.2); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }

/* --------------------------------------------------------------------------
   5. Kopfzeile & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 251, 246, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
@media (min-width: 62em) { .site-header__inner { min-height: 84px; } }

.brand {
  display: inline-flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--ink);
  flex-shrink: 0;
}
.brand img {
  height: auto;
  width: clamp(11.5rem, 46vw, 15rem);
  /* Der Schriftzug ist hellgrau - fuer Kontrast leicht abdunkeln */
  filter: brightness(.62) saturate(0);
}
@media (min-width: 62em) { .brand img { width: 17rem; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer; color: var(--ink);
}
.nav-toggle:hover { background: var(--green-050); }
@media (min-width: 62em) { .nav-toggle { display: none; } }
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle__bar { position: relative; }
.nav-toggle__bar::before,
.nav-toggle__bar::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after  { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 62em) {
  .nav { display: flex; align-items: center; gap: .3rem; }
}
@media (max-width: 61.999em) {
  .nav {
    position: fixed; inset: 68px 0 auto 0;
    background: var(--sand-050);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .75rem 1.25rem 1.5rem;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    display: none;
  }
  .nav[data-open="true"] { display: block; }
  .nav__list { display: flex; flex-direction: column; gap: .1rem; }
  .nav__link {
    display: flex; width: 100%; justify-content: space-between;
    padding: .85rem .25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem; text-align: left;
  }
  .nav__sub {
    display: none;
    margin: .25rem 0 .75rem .35rem;
    padding-left: .9rem;
    border-left: 2px solid var(--green-200);
  }
  .nav__item--has-sub[data-open="true"] .nav__sub { display: block; }
  .nav__sub a {
    display: block; padding: .6rem .25rem;
    font-size: .99rem; font-weight: 500;
    color: var(--text-soft); text-decoration: none;
  }
  .nav__sub a:hover, .nav__sub a[aria-current="page"] { color: var(--green-700); }
  .nav__cta {
    display: inline-flex; margin-top: 1.25rem;
    width: 100%; justify-content: center;
  }
}

.nav__list { list-style: none; margin: 0; padding: 0; }
@media (min-width: 62em) {
  .nav__list { display: flex; align-items: center; gap: .25rem; }
}

.nav__item { position: relative; }

.nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .55rem .8rem;
  color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: .97rem;
  border-radius: var(--radius-pill);
  background: none; border: 0; font-family: inherit; cursor: pointer;
  transition: background-color .16s ease, color .16s ease;
}
.nav__link:hover { background: var(--green-050); color: var(--green-800); }
.nav__link[aria-current="page"] { color: var(--green-700); }
@media (min-width: 62em) {
  .nav__link[aria-current="page"]::after {
    content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .1rem;
    height: 2px; background: var(--green-400); border-radius: 2px;
  }
}

.nav__chev { width: .6rem; height: .6rem; transition: transform .2s ease; }
.nav__link[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }

.nav__sub { list-style: none; margin: 0; padding: 0; }
@media (min-width: 62em) {
  /* Unsichtbare Brücke zwischen Button und Klappmenü. Ohne sie ist die Maus
     auf dem Weg nach unten kurz über keinem der beiden Elemente und das
     Menü klappt sofort wieder zu. */
  .nav__item--has-sub::after {
    content: ""; position: absolute;
    top: 100%; left: 0; right: 0; height: .75rem;
  }
  .nav__sub {
    position: absolute; top: calc(100% + .4rem); left: 0;
    min-width: 15rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: .45rem;
    display: none;
  }
  .nav__item--has-sub[data-open="true"] .nav__sub { display: block; }
  .nav__sub a {
    display: block; padding: .55rem .8rem;
    border-radius: 10px; text-decoration: none;
    color: var(--ink); font-size: .95rem; font-weight: 500;
    white-space: nowrap;
  }
  .nav__sub a:hover { background: var(--green-050); color: var(--green-800); }
}

@media (min-width: 62em) {
  .nav__cta { display: inline-flex; margin-left: .6rem; width: auto; margin-top: 0; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(30rem, 76vh, 44rem);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(22, 34, 17, .42) 0%,
      rgba(22, 34, 17, .34) 38%,
      rgba(22, 34, 17, .80) 100%);
}
/* Ab Tablet zusätzlich von links abdunkeln, damit der Text auch vor
   unruhigen Bildstellen sicher lesbar bleibt. */
@media (min-width: 48em) {
  .hero::after {
    background:
      linear-gradient(95deg,
        rgba(20, 32, 15, .78) 0%,
        rgba(20, 32, 15, .58) 34%,
        rgba(20, 32, 15, .18) 62%,
        rgba(20, 32, 15, .05) 100%),
      linear-gradient(180deg,
        rgba(22, 34, 17, .32) 0%,
        rgba(22, 34, 17, .10) 40%,
        rgba(22, 34, 17, .68) 100%);
  }
}
.hero__inner { padding-block: clamp(2.5rem, 8vw, 5rem); }
.hero__content { max-width: 40rem; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.3); }
.hero .eyebrow { color: var(--green-200); }
.hero p {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: rgba(255,255,255,.94);
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
  max-width: 34rem;
}

/* Kompakter Seitenkopf für Unterseiten */
.page-hero {
  background:
    linear-gradient(180deg, var(--green-050), var(--sand-050));
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.6rem, 7vw, 4.6rem);
}
.page-hero__inner { max-width: 46rem; }
.page-hero p { color: var(--text-soft); font-size: 1.1rem; }

.breadcrumb {
  list-style: none; display: flex; flex-wrap: wrap; gap: .4rem;
  margin: 0 0 1rem; padding: 0;
  font-size: .85rem; color: var(--muted);
}
.breadcrumb li::after { content: "›"; margin-left: .45rem; color: var(--green-300); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-700); text-decoration: underline; }

/* --------------------------------------------------------------------------
   7. Info-Leiste (Öffnungszeiten)
   -------------------------------------------------------------------------- */
.openbar { background: var(--green-700); color: #fff; }
.openbar__inner {
  display: grid; gap: .1rem;
  padding-block: 1.15rem;
}
@media (min-width: 48em) {
  .openbar__inner {
    grid-auto-flow: column; grid-auto-columns: 1fr;
    gap: 1.5rem; align-items: center;
  }
}
.openbar__item {
  display: flex; flex-direction: column; gap: .1rem;
  align-items: flex-start; min-width: 0;
  padding: .45rem 0;
}
.openbar__label {
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--green-200);
}
.openbar__value { font-weight: 600; min-width: 0; }
@media (max-width: 47.999em) {
  .openbar__item + .openbar__item { border-top: 1px solid rgba(255,255,255,.16); }
}

/* --------------------------------------------------------------------------
   8. Karten & Raster
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 40em) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 48em) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 62em) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--link { text-decoration: none; color: inherit; }
.card--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}
.card__media { aspect-ratio: 4 / 3; background: var(--green-050); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card--link:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 1.5rem 1.5rem 1.65rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .45rem; }
.card__body p { color: var(--text-soft); font-size: 1rem; }
.card__more {
  margin-top: auto; padding-top: 1.1rem;
  font-weight: 600; font-size: .95rem;
  color: var(--green-700); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
}
.card--link:hover .card__more { color: var(--clay-dark); gap: .65rem; }
.card__more span { transition: gap .2s ease; }

/* Faktenkarten */
.facts { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.fact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.fact__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.7rem);
  overflow-wrap: anywhere;
  color: var(--green-600); line-height: 1;
  display: block; margin-bottom: .35rem;
}
.fact__label { font-size: .95rem; color: var(--text-soft); }
.fact--text .fact__num {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 700; letter-spacing: .04em;
  padding-top: .45rem;
}

/* --------------------------------------------------------------------------
   9. Zwei-Spalten-Block (Bild + Text)
   -------------------------------------------------------------------------- */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 56em) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
  .split--reverse .split__media { order: 2; }
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--green-050);
}
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__body p { color: var(--text-soft); }
.split__body p:first-of-type { color: var(--text); }

/* --------------------------------------------------------------------------
   10. Sortiment-Listen (Chips)
   -------------------------------------------------------------------------- */
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.chips li {
  background: var(--surface);
  border: 1px solid var(--green-200);
  color: var(--green-800);
  border-radius: var(--radius-pill);
  padding: .5rem 1.05rem;
  font-size: .96rem;
  font-weight: 500;
}
.chips--clay li { border-color: var(--sand-300); color: #6b4b2e; }

.note {
  display: flex; gap: .7rem; align-items: flex-start;
  background: var(--green-050);
  border: 1px solid var(--green-200);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: .97rem; color: var(--green-800);
}
.note--clay { background: #fbf1e8; border-color: var(--sand-300); color: #7a512d; }
.note svg { flex-shrink: 0; margin-top: .2rem; }

/* --------------------------------------------------------------------------
   11. Galerie & Lightbox
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: .7rem;
}
@media (min-width: 48em) {
  .gallery { grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); gap: 1rem; }
}
.gallery__item {
  display: block; padding: 0; border: 0; cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden;
  background: var(--green-050);
  aspect-ratio: 1 / 1;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease, filter .3s ease;
}
.gallery__item:hover img { transform: scale(1.05); filter: saturate(1.08); }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 28, 16, .965);
  display: none;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.lightbox[data-open="true"] { display: flex; }

/* Bild und Bedienleiste stehen untereinander */
.lightbox__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.1rem;
  max-width: 100%; max-height: 100%;
}
.lightbox__img {
  max-width: min(100%, 1400px);
  /* Platz für die Leiste darunter freihalten */
  max-height: calc(100dvh - 10rem);
  width: auto; height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.lightbox__bar {
  display: flex; align-items: center; gap: 1.1rem;
  flex-shrink: 0;
}
.lightbox__count {
  margin: 0;
  min-width: 5.5rem; text-align: center;
  color: rgba(255,255,255,.85); font-size: .95rem;
  font-variant-numeric: tabular-nums;
}

.lightbox__btn {
  width: 52px; height: 52px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.32);
  color: #fff; border-radius: 50%; cursor: pointer;
  font-size: 1.4rem; line-height: 1;
  transition: background-color .18s ease, border-color .18s ease;
}
.lightbox__btn:hover { background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.5); }
.lightbox__close { position: absolute; top: 1rem; right: 1rem; }

@media (max-width: 40em) {
  .lightbox { padding: .75rem; }
  .lightbox__inner { gap: .9rem; }
  .lightbox__img { max-height: calc(100dvh - 9rem); }
  .lightbox__btn { width: 48px; height: 48px; }
  .lightbox__close { top: .6rem; right: .6rem; width: 42px; height: 42px; }
}

/* --------------------------------------------------------------------------
   12. Verkaufsstellen
   -------------------------------------------------------------------------- */
.venue {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
}
@media (min-width: 56em) {
  .venue { grid-template-columns: 1.05fr 1fr; align-items: stretch; }
  .venue--reverse .venue__media { order: 2; }
}
.venue__media { background: var(--green-050); min-height: 14rem; }
.venue__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
@media (min-width: 56em) { .venue__media img { aspect-ratio: auto; } }
.venue__body { padding: clamp(1.6rem, 4vw, 2.6rem); }

.hours { list-style: none; margin: 1.3rem 0 0; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px dashed var(--line);
}
.hours li:last-child { border-bottom: 0; }
.hours dt, .hours__day { font-weight: 600; }
.hours__time { color: var(--green-700); font-weight: 600; white-space: nowrap; }

/* --------------------------------------------------------------------------
   13. Kontakt
   -------------------------------------------------------------------------- */
.contact-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list svg { flex-shrink: 0; color: var(--green-600); margin-top: .2rem; }
.contact-list a { font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list__label {
  display: block; font-size: .78rem; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted); font-weight: 700;
  margin-bottom: .1rem;
}

/* Foerderhinweis (ELER) auf der Startseite */
.funding { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 56em) {
  .funding { grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 5vw, 4rem); }
}
.funding__text p { color: var(--text-soft); }
.funding__media {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  padding: .5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: box-shadow .2s ease, transform .2s ease;
}
.funding__media:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.funding__media img { width: 100%; height: auto; border-radius: 8px; }

/* --------------------------------------------------------------------------
   14. CTA-Band
   -------------------------------------------------------------------------- */
.cta {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.92); max-width: 38rem; margin-inline: auto; }
.cta .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   15. Fließtext (Rechtsseiten)
   -------------------------------------------------------------------------- */
.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.4rem; font-size: clamp(1.35rem, 3vw, 1.7rem); }
.prose h3 { margin-top: 1.8rem; font-size: 1.15rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul { padding-left: 1.25rem; color: var(--text-soft); }
.prose li { margin-bottom: .4rem; }
.prose address { font-style: normal; line-height: 1.8; }

/* --------------------------------------------------------------------------
   16. Fußzeile
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--green-800);
  color: rgba(255,255,255,.78);
  padding-block: clamp(2.75rem, 6vw, 4rem) 2rem;
  margin-top: var(--step);
}
.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer h3 {
  color: #fff; font-size: 1rem; font-family: var(--font-body);
  font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-grid { display: grid; gap: 2.25rem; }
@media (min-width: 48em) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-brand img {
  width: 15rem; max-width: 100%; height: auto; margin-bottom: 1.1rem;
  /* heller Schriftzug auf dunklem Grund */
  filter: brightness(0) invert(1); opacity: .92;
}

/* Zitat in der Fusszeile */
.footer-quote {
  margin: 2.75rem 0 0;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
}
.footer-quote p {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3.2vw, 1.95rem);
  line-height: 1.3;
  color: #fff;
  letter-spacing: .01em;
}

.footer-bio {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.1rem; padding: .45rem 1rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius-pill);
  font-size: .82rem; letter-spacing: .06em; color: #fff;
}

.site-footer address { font-style: normal; font-size: .95rem; line-height: 1.9; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .875rem;
}
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; }

/* --------------------------------------------------------------------------
   17. Sanftes Einblenden beim Scrollen
   -------------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   18. Druck
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
}
