/* =========================================================
   Glücksmoment – Konzerte die helfen
   Gestaltung: Hans
   Farbwelt abgeleitet aus dem Logo (#79C094)
   ========================================================= */

:root {
  /* Marke */
  --gruen:        #79C094;
  --gruen-hell:   #A7D7BB;
  --gruen-blass:  #E4F1EA;
  --gruen-tief:   #3C7A58;
  --gruen-dunkel: #1F4331;

  /* Grundtöne – warmes Papier statt kaltem Weiß */
  --papier:       #FBF8F2;
  --papier-tief:  #F4EEE2;
  --weiss:        #FFFFFF;

  --tinte:        #21261F;
  --tinte-weich:  #5A6156;
  --linie:        #E3DCCC;

  /* Akzent – Bühnenlicht */
  --gold:         #C98A34;

  --breite:       1180px;
  --breite-text:  680px;

  --r-klein:      10px;
  --r-gross:      20px;
  --r-pille:      999px;

  --schatten:     0 1px 2px rgba(33,38,31,.04), 0 8px 28px rgba(33,38,31,.07);
  --schatten-tief:0 2px 4px rgba(33,38,31,.05), 0 18px 50px rgba(33,38,31,.12);

  --takt:         clamp(4.5rem, 9vw, 8rem);
}

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

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

body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-variation-settings: 'opsz' 100;
  color: var(--gruen-dunkel);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

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

a { color: var(--gruen-tief); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gruen-dunkel); }

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

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

/* ---------- Grundbausteine ---------- */

.huelle { width: 100%; max-width: var(--breite); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
.schmal { max-width: var(--breite-text); margin-inline: auto; }
.abschnitt { padding-block: var(--takt); }
.abschnitt--papier { background: var(--papier-tief); }
.abschnitt--gruen  { background: var(--gruen-dunkel); color: #EAF3ED; }
.abschnitt--gruen h2, .abschnitt--gruen h3 { color: var(--weiss); }
.abschnitt--gruen a { color: var(--gruen-hell); }

.mitte { text-align: center; }
.mitte > * { margin-inline: auto; }

.augbraue {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gruen-tief);
  margin: 0 0 1rem;
}
.abschnitt--gruen .augbraue { color: var(--gruen-hell); }

.vorspann {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--tinte-weich);
}
.abschnitt--gruen .vorspann { color: #C6DACE; }

/* ---------- Schaltflächen ---------- */

.knopf {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .95em 1.9em;
  border-radius: var(--r-pille);
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.knopf:hover { transform: translateY(-2px); }
.knopf--voll {
  background: var(--gruen-tief);
  color: var(--weiss);
  box-shadow: 0 4px 14px rgba(60,122,88,.3);
}
.knopf--voll:hover { background: var(--gruen-dunkel); color: var(--weiss); box-shadow: 0 8px 24px rgba(60,122,88,.38); }
.knopf--rand {
  border-color: currentColor;
  color: var(--gruen-dunkel);
  background: transparent;
}
.knopf--rand:hover { background: var(--gruen-dunkel); border-color: var(--gruen-dunkel); color: var(--weiss); }
.knopf--hell {
  background: var(--weiss);
  color: var(--gruen-dunkel);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.knopf--hell:hover { background: var(--gruen-blass); color: var(--gruen-dunkel); }
.knopf--geist { border-color: rgba(255,255,255,.55); color: var(--weiss); }
.knopf--geist:hover { background: rgba(255,255,255,.14); color: var(--weiss); border-color: var(--weiss); }

.knopfreihe { display: flex; flex-wrap: wrap; gap: .85rem; }
.mitte .knopfreihe { justify-content: center; }
@media (max-width: 560px) {
  /* auf dem Handy gleich breit – nebeneinander sähen sie sonst ausgefranst aus */
  .knopfreihe { flex-direction: column; align-items: stretch; }
  .knopfreihe .knopf { width: 100%; justify-content: center; }
}

/* ---------- Kopfzeile ---------- */

.kopf {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,248,242,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.kopf--gescrollt { border-bottom-color: var(--linie); box-shadow: 0 4px 20px rgba(33,38,31,.05); }

.kopf__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}
.marke { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.marke img { width: 46px; height: 46px; border-radius: 50%; }
.marke__text { display: flex; flex-direction: column; line-height: 1.1; }
.marke__name {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 40;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--gruen-dunkel);
  letter-spacing: -.01em;
}
.marke__claim {
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tinte-weich);
  font-weight: 500;
}

.navi { display: flex; align-items: center; gap: 2rem; }
.navi__liste { display: flex; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.navi__liste a {
  position: relative;
  text-decoration: none;
  font-size: .97rem;
  font-weight: 500;
  color: var(--tinte);
  padding-block: .3rem;
}
.navi__liste a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gruen);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.navi__liste a:hover::after, .navi__liste a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.navi__liste a[aria-current="page"] { color: var(--gruen-dunkel); font-weight: 600; }

.navi-schalter {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0;
  border: 1px solid var(--linie);
  border-radius: var(--r-klein);
  background: var(--weiss);
  cursor: pointer;
}
.navi-schalter span {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--tinte);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.navi-schalter[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navi-schalter[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navi-schalter[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .navi-schalter { display: flex; }
  .navi {
    position: fixed;
    inset: 76px 0 auto 0;
    display: block;
    background: var(--papier);
    border-bottom: 1px solid var(--linie);
    box-shadow: 0 20px 40px rgba(33,38,31,.12);
    padding: 1.25rem clamp(1.25rem, 5vw, 2.5rem) 2rem;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility .3s;
  }
  .navi[data-offen="true"] { transform: translateY(0); visibility: visible; }
  .navi__liste { flex-direction: column; align-items: stretch; gap: 0; }
  .navi__liste a { display: block; padding: .95rem 0; border-bottom: 1px solid var(--linie); font-size: 1.05rem; }
  .navi__liste a::after { display: none; }
  .navi .knopf { width: 100%; justify-content: center; margin-top: 1.25rem; }
}

/* ---------- Bühne (Hero) ---------- */

/* Im Foto liegen die drei Gesichter waagrecht bei 42–62 %, senkrecht bei 9–48 %.
   Über keines davon darf Schrift laufen.

   GRUNDFALL ist deshalb: Foto als Band oben, Text darunter – das geht bei jeder
   Fenstergröße auf. Die Überlagerung (Text ins untere Drittel des Bildes) ist
   die AUSNAHME und nur dort erlaubt, wo die Bühne breit und hoch genug ist. */
.buehne {
  position: relative;
  display: block;
  background: var(--gruen-dunkel);
  isolation: isolate;
  overflow: hidden;
}
.buehne__bild {
  position: relative;
  width: 100%;
  height: auto;
  /* 5:4 ist schmaler als das Foto (3:2) – es wird also nur waagrecht
     beschnitten, die volle Bildhöhe bleibt sichtbar. */
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 50% 50%;
}
.buehne__inhalt {
  padding-block: 2.25rem 3rem;
  color: #fff;
}
.buehne__inhalt h1 { color: #fff; }
.buehne__inhalt .vorspann { color: rgba(255,255,255,.92); max-width: 34em; }
.buehne .augbraue { color: var(--gruen-hell); }
.buehne .knopfreihe { margin-top: 2rem; }

/* Mittlere Breiten: das Foto in seinem eigenen Seitenverhältnis – gar kein
   Beschnitt, das ganze Bild ist zu sehen. */
@media (min-width: 561px) {
  .buehne__bild { aspect-ratio: 3 / 2; }
}

/* Breite Schirme: flacheres Band, sonst würde das Bild den ganzen Auftritt
   füllen. 2:1 beschneidet senkrecht; bei 25 % ist die Quelle von 6–81 % der
   Höhe sichtbar – die Gesichter bei 9–48 % liegen mit Abstand darin. */
@media (min-width: 900px) {
  .buehne__bild { aspect-ratio: 2 / 1; object-position: 50% 25%; }
}

/* Flaches Fenster (quergedrehtes Handy, niedriger Browser): noch flacher,
   damit über der Falz schon Text steht. Sichtbar: Quelle 2–62 % der Höhe. */
@media (max-height: 660px) {
  .buehne__bild { aspect-ratio: 5 / 2; object-position: 50% 4%; }
}

/* Der Textblock unter dem Bild bekommt auf großen Schirmen etwas mehr Luft
   und eine begrenzte Zeilenlänge. */
@media (min-width: 900px) {
  .buehne__inhalt { padding-block: 3rem 4rem; }
  .buehne__inhalt h1 { max-width: 16ch; }
}

/* ---------- Kennzahlen ---------- */

/* Drei Kennzahlen: entweder alle nebeneinander oder alle untereinander.
   Ein automatisches Raster bräche sonst in 2 + 1 um – die einzelne Kachel
   hinge dann schief unter den anderen. */
.kennzahlen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
}
@media (max-width: 780px) {
  .kennzahlen { grid-template-columns: 1fr; gap: 2.75rem; }
}
.kennzahl__wert {
  display: block;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144;
  font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  color: var(--gruen-dunkel);
  letter-spacing: -.02em;
  white-space: nowrap;   /* Betrag und € dürfen nie umbrechen */
}
.abschnitt--gruen .kennzahl__wert { color: var(--weiss); }
.kennzahl__wert small { font-size: .52em; font-weight: 600; }
.kennzahl__text { display: block; margin-top: .7rem; font-size: .93rem; color: var(--tinte-weich); }
.abschnitt--gruen .kennzahl__text { color: #B9D0C3; }
.kennzahl__fussnote { margin-top: 2.5rem; font-size: .82rem; color: var(--tinte-weich); }
.abschnitt--gruen .kennzahl__fussnote { color: #93AFA0; }

/* ---------- Schritte ---------- */

.schritte {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  counter-reset: schritt;
}
.schritt {
  position: relative;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--r-gross);
  padding: 2.4rem 1.9rem 2rem;
  box-shadow: var(--schatten);
}
.schritt::before {
  counter-increment: schritt;
  content: counter(schritt);
  position: absolute;
  top: -22px; left: 1.9rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--gruen);
  color: var(--weiss);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(60,122,88,.3);
}
.schritt h3 { margin-bottom: .45rem; }
.schritt p { font-size: .98rem; color: var(--tinte-weich); }

/* ---------- Karten / Raster ---------- */

.raster-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.raster-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; }

.karte {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--r-gross);
  overflow: hidden;
  box-shadow: var(--schatten);
  transition: transform .25s ease, box-shadow .25s ease;
}
.karte--klick:hover { transform: translateY(-4px); box-shadow: var(--schatten-tief); }
.karte__bild { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; background: var(--papier-tief); }
.karte__text { padding: 1.6rem 1.5rem 1.8rem; }
.karte__text h3 { margin-bottom: .3rem; }
.karte__rolle { font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; color: var(--gruen-tief); font-weight: 600; margin-bottom: .9rem; }
.karte__text p { font-size: .96rem; color: var(--tinte-weich); }

.bild-gerahmt { border-radius: var(--r-gross); box-shadow: var(--schatten-tief); width: 100%; }

/* Porträts der drei: einheitlicher Zuschnitt, damit die Reihe ruhig wirkt.
   Der Bildausschnitt kommt je Person aus inhalt.py (bildpos) – die Gesichter
   sitzen in den Vorlagen unterschiedlich, eine Einheitsregel schneidet sie an. */
.bild-portrait {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
@media (max-width: 760px) {
  /* gestapelt nicht den ganzen Bildschirm füllen */
  .bild-portrait { aspect-ratio: 3 / 2; }
}

/* ---------- Termine ---------- */

.termin-leer {
  background: var(--weiss);
  border: 2px dashed var(--gruen-hell);
  border-radius: var(--r-gross);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
}
.termin-leer h3 { margin-bottom: .4rem; }
.termin-leer p { color: var(--tinte-weich); max-width: 44ch; margin-inline: auto; }

/* Anstehender Termin – die wichtigste Kachel der Startseite */
.termin-gross {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-left: 6px solid var(--gruen);
  border-radius: var(--r-gross);
  padding: clamp(1.75rem, 4vw, 2.6rem);
  box-shadow: var(--schatten);
}
.termin-gross + .termin-gross { margin-top: 1.25rem; }
.termin-gross__datum {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gruen-tief);
  margin: 0 0 .7rem;
}
.termin-gross__titel {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0 0 .35rem;
}
.termin-gross__ort { color: var(--tinte-weich); margin: 0 0 1.1rem; }
/* Zwei getrennte Pillen – so bricht nie innerhalb einer Angabe um */
.termin-gross__zeiten {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 1.1rem;
}
.termin-gross__zeit {
  padding: .45em .95em;
  background: var(--gruen-blass);
  border-radius: var(--r-pille);
  font-size: .92rem;
  font-weight: 500;
  color: var(--gruen-dunkel);
  white-space: nowrap;
}
/* Der Preis darf sich abheben – danach wird zuerst gesucht */
.termin-gross__zeit--preis {
  background: var(--gruen-tief);
  color: var(--weiss);
}
.termin-gross__karten { margin: 0; font-size: .96rem; color: var(--tinte-weich); }

.termine { list-style: none; margin: 0; padding: 0; }
.termin {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--linie);
}
.termin:first-child { border-top: 1px solid var(--linie); }
.termin__datum { font-size: .88rem; font-weight: 600; color: var(--gruen-tief); letter-spacing: .02em; }
.termin__zweck { font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 40; font-size: 1.12rem; font-weight: 600; color: var(--gruen-dunkel); margin: 0 0 .25rem; }
.termin__ort { font-size: .9rem; color: var(--tinte-weich); margin: 0; }
.termin__betrag {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 40;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gruen-dunkel);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .termin { grid-template-columns: 1fr auto; gap: .5rem 1rem; }
  .termin__datum { grid-column: 1 / -1; }
  .termin__betrag { align-self: center; }
}

/* ---------- FAQ ---------- */

.faq { margin-top: 3rem; }
.faq__gruppe { margin-bottom: 3.5rem; }
.faq__gruppe > h3 {
  padding-bottom: .7rem;
  border-bottom: 2px solid var(--gruen-hell);
  margin-bottom: .5rem;
}
.frage {
  border-bottom: 1px solid var(--linie);
}
.frage summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--gruen-dunkel);
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: '';
  flex: none;
  width: 11px; height: 11px;
  margin-top: .45em;
  border-right: 2px solid var(--gruen-tief);
  border-bottom: 2px solid var(--gruen-tief);
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.frage[open] summary::after { transform: rotate(-135deg); }
.frage summary:hover { color: var(--gruen-tief); }
.frage__antwort { padding: 0 0 1.5rem; color: var(--tinte-weich); max-width: 62ch; }
.frage__antwort ul, .frage__antwort ol { margin: 0 0 1em; padding-left: 1.3em; }
.frage__antwort li { margin-bottom: .5em; }
.frage__antwort strong { color: var(--tinte); }

/* ---------- Galerie ---------- */

.galerie {
  columns: 4 250px;
  column-gap: 14px;
  margin-top: 3rem;
}
.galerie__bild {
  width: 100%;
  margin-bottom: 14px;
  border-radius: var(--r-klein);
  cursor: zoom-in;
  background: var(--papier-tief);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.galerie__bild:hover { transform: scale(1.015); box-shadow: var(--schatten-tief); filter: brightness(1.04); }

.leuchtkasten {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: rgba(14,24,18,.94);
  padding: clamp(1rem, 4vw, 3rem);
}
.leuchtkasten[data-offen="true"] { display: grid; }
.leuchtkasten img { max-width: 100%; max-height: 86vh; border-radius: var(--r-klein); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.leuchtkasten__schliessen,
.leuchtkasten__pfeil {
  position: absolute;
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.leuchtkasten__schliessen:hover, .leuchtkasten__pfeil:hover { background: rgba(255,255,255,.24); }
.leuchtkasten__schliessen { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); }
.leuchtkasten__pfeil--zurueck { left: clamp(.75rem,2vw,2rem); top: 50%; transform: translateY(-50%); }
.leuchtkasten__pfeil--vor    { right: clamp(.75rem,2vw,2rem); top: 50%; transform: translateY(-50%); }
.leuchtkasten__zaehler { position: absolute; bottom: clamp(1rem,3vw,2rem); left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .88rem; }

/* ---------- Medien: erst auf Klick laden ---------- */

.medium {
  position: relative;
  border-radius: var(--r-gross);
  overflow: hidden;
  background: var(--gruen-dunkel);
  box-shadow: var(--schatten-tief);
}
.medium--video { aspect-ratio: 16 / 9; }
.medium__vorschau {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(150deg, #24503A, #14301F);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  text-align: center;
  cursor: pointer;
}
.medium__vorschau:hover .medium__knopf { transform: scale(1.08); background: var(--weiss); color: var(--gruen-dunkel); }
.medium__knopf {
  width: 74px; height: 74px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 2px solid rgba(255,255,255,.65);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.medium__knopf svg { width: 26px; height: 26px; margin-left: 4px; fill: currentColor; }
.medium__titel { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; }
.medium__hinweis { font-size: .8rem; color: rgba(255,255,255,.6); max-width: 40ch; }
.medium iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.medium--ton { aspect-ratio: auto; min-height: 166px; }
.medium--ton .medium__vorschau { position: relative; min-height: 166px; }

/* ---------- Formular ---------- */

.formular { display: grid; gap: 1.35rem; }
.feld { display: grid; gap: .45rem; }
.feld label { font-size: .9rem; font-weight: 600; color: var(--gruen-dunkel); }
.feld input, .feld textarea, .feld select {
  width: 100%;
  padding: .9rem 1.05rem;
  border: 1px solid var(--linie);
  border-radius: var(--r-klein);
  background: var(--weiss);
  font: inherit;
  font-size: 1rem;
  color: var(--tinte);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.feld textarea { min-height: 170px; resize: vertical; }
.feld input:focus, .feld textarea:focus, .feld select:focus {
  outline: none;
  border-color: var(--gruen);
  box-shadow: 0 0 0 4px var(--gruen-blass);
}
.feld__hilfe { font-size: .82rem; color: var(--tinte-weich); }
.feld--paar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
@media (max-width: 620px) { .feld--paar { grid-template-columns: 1fr; } }
.honigtopf { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.kontakt-block {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--r-gross);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--schatten);
}
.kontakt-block dl { display: grid; gap: 1.15rem; margin: 0; }
.kontakt-block dt { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gruen-tief); font-weight: 600; }
.kontakt-block dd { margin: .2rem 0 0; font-size: 1.02rem; }

/* ---------- Presse ---------- */

.presse-artikel {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-left: 4px solid var(--gruen);
  border-radius: var(--r-klein);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 2rem;
  box-shadow: var(--schatten);
}
.presse-artikel__quelle { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gruen-tief); font-weight: 600; margin-bottom: .8rem; }
.presse-artikel h3 { margin-bottom: .3rem; }
.presse-artikel__unter { font-style: italic; color: var(--tinte-weich); margin-bottom: 1.3rem; }
.presse-artikel p { font-size: .99rem; }
.presse-artikel blockquote {
  margin: 1.5rem 0;
  padding-left: 1.3rem;
  border-left: 3px solid var(--gruen-hell);
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gruen-dunkel);
}

/* ---------- Zitat ---------- */

.zitat {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--gruen-dunkel);
  text-align: center;
  max-width: 20ch;
  margin-inline: auto;
  text-wrap: balance;
}
.abschnitt--gruen .zitat { color: var(--weiss); }
.zitat__quelle { display: block; margin-top: 1.5rem; font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--tinte-weich); }
.abschnitt--gruen .zitat__quelle { color: var(--gruen-hell); }

/* ---------- Fließtext (Recht) ---------- */

.fliesstext h2 { margin-top: 2.8rem; font-size: clamp(1.4rem, 2.6vw, 1.8rem); }
.fliesstext h3 { margin-top: 2rem; font-size: 1.15rem; }
.fliesstext > :first-child { margin-top: 0; }
.fliesstext p, .fliesstext li { color: var(--tinte-weich); font-size: 1rem; }
.fliesstext ul { padding-left: 1.3em; }
.fliesstext li { margin-bottom: .5em; }

/* ---------- Fußzeile ---------- */

.fuss { background: var(--gruen-dunkel); color: #B9D0C3; padding-block: clamp(3.5rem, 7vw, 5rem) 2rem; }
.fuss__oben { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 820px) { .fuss__oben { grid-template-columns: 1fr 1fr; } .fuss__marke { grid-column: 1 / -1; } }
@media (max-width: 520px) { .fuss__oben { grid-template-columns: 1fr; } }
.fuss__marke img { width: 62px; height: 62px; border-radius: 50%; margin-bottom: 1.2rem; }
.fuss__marke p { font-size: .95rem; max-width: 34ch; }
.fuss h4 { color: var(--weiss); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 1.1rem; }
.fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.fuss a { color: #B9D0C3; text-decoration: none; font-size: .95rem; }
.fuss a:hover { color: var(--weiss); text-decoration: underline; text-underline-offset: 3px; }
.fuss__unten {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: .85rem;
  color: #8FAB9C;
}

/* ---------- Sprungmarke für Tastaturnutzung ---------- */

.skip {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 300;
  background: var(--gruen-dunkel);
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: var(--r-klein);
  text-decoration: none;
  transition: top .2s ease;
}
.skip:focus { top: 1rem; color: #fff; }

/* ---------- Sanftes Einblenden ---------- */

.auftritt { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.auftritt--da { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .auftritt { opacity: 1; transform: none; } }
