/* ══════════════════════════════════════════════════════════════════════════
   Ratisbona Familie — Gestaltungs-Prototyp
   Farben und Schriften stammen aus dem Entwurf der Agentur (Elementor-Kit),
   Aufbau, Rhythmus und Detailarbeit sind neu.
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Farben aus dem Kundenentwurf */
  --braun:        #87533A;
  --braun-tief:   #6E4230;
  --petrol-tief:  #13363A;
  --petrol:       #117A87;
  --petrol-mit:   #55A0AA;
  --petrol-hell:  #CFE4E7;
  --text:         #2E1A0F;
  --creme:        #F4F1ED;
  --creme-hell:   #FBF9F7;
  --sand:         #E7DDD8;
  --sand-grau:    #D8D2D0;
  --sand-warm:    #B79889;
  --braun-grau:   #897971;
  --weiss:        #FFFFFF;

  --text-leise:   #6B5548;

  /* Schriften */
  --display: 'Bricolage Grotesque', 'Trebuchet MS', sans-serif;
  --body:    'Inter', -apple-system, 'Segoe UI', sans-serif;
  --hand:    'Caveat Brush', 'Comic Sans MS', cursive;

  /* Typo-Skala, mitwachsend */
  --f-h1:   clamp(2.5rem, 1.5rem + 4.4vw, 5rem);
  --f-h2:   clamp(1.9rem, 1.35rem + 2.4vw, 3.25rem);
  --f-h3:   clamp(1.2rem, 1.08rem + .5vw, 1.55rem);
  --f-lead: clamp(1.05rem, 1rem + .35vw, 1.2rem);
  --f-body: clamp(.98rem, .95rem + .18vw, 1.05rem);
  --f-mini: .8rem;

  /* Raum */
  --wrap:   1220px;
  --rand:   clamp(1.25rem, 5vw, 3rem);
  --luft:   clamp(4.5rem, 9vw, 8.5rem);

  /* Formen */
  --bogen:  999px 999px 16px 16px;
  --rund:   18px;

  --schatten:      0 2px 4px rgba(46,26,15,.04), 0 12px 28px -12px rgba(46,26,15,.14);
  --schatten-hoch: 0 4px 8px rgba(46,26,15,.06), 0 28px 56px -20px rgba(46,26,15,.22);

  --tempo: .5s cubic-bezier(.22,.61,.36,1);
}

/* ─── Grundlagen ─────────────────────────────────────────────────────── */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--text);
  font-family: var(--body);
  font-size: var(--f-body);
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Feines Korn über der ganzen Seite — nimmt den Flächen das Digitale */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: .32;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0;
  text-wrap: balance;
  /* Deutsche Wortungetüme („Geschwisterdynamik") passen sonst in keine Spalte
     und laufen ins Nachbarelement. Trennen ist besser als überlaufen. */
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: var(--f-h1); font-weight: 500; }
h2 { font-size: var(--f-h2); }
h3 { font-size: var(--f-h3); letter-spacing: -.015em; }

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

a { color: inherit; }

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

.wrap {
  width: min(100% - var(--rand) * 2, var(--wrap));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  z-index: 100;
  background: var(--petrol-tief);
  color: var(--weiss);
  padding: .8rem 1.4rem;
  border-radius: 0 0 12px 0;
  text-decoration: none;
}
.skip:focus { left: 0; top: 0; }

/* Handschrift-Akzent — genau ein Gedanke je Abschnitt */
.hand {
  font-family: var(--hand);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--petrol);
  font-size: 1.12em;
  line-height: .9;
  display: inline-block;
  transform: rotate(-1.5deg);
}

.augenbraue {
  font-size: var(--f-mini);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--braun);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.augenbraue::before {
  content: '';
  width: clamp(1.6rem, 4vw, 2.6rem);
  height: 2px;
  background: var(--sand-warm);
  flex: none;
}
.augenbraue--hell { color: var(--sand); }
.augenbraue--hell::before { background: rgba(255,255,255,.45); }

/* ─── Knöpfe ─────────────────────────────────────────────────────────── */

.btn {
  --bg: var(--braun);
  /* Ohne diese beiden Zeilen bringt ein <button> den hellgrauen Standard-
     Hintergrund des Browsers mit — auf dunklem Grund wird heller Text darauf
     unlesbar. Bei <a class="btn"> fällt das nicht auf, bei echten Knöpfen schon. */
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 52px;
  padding: .9rem 1.75rem;
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--voll { background: var(--braun); color: var(--weiss); box-shadow: 0 10px 22px -12px rgba(135,83,58,.85); }
.btn--voll:hover { background: var(--braun-tief); box-shadow: 0 16px 28px -14px rgba(135,83,58,.9); }

.btn--linie { border-color: var(--sand-warm); color: var(--text); }
.btn--linie:hover { border-color: var(--braun); background: var(--sand); }

.btn--hell { background: var(--weiss); color: var(--braun); }
.btn--hell:hover { background: var(--creme); }

.btn--linie-hell { border-color: rgba(255,255,255,.55); color: var(--weiss); }
.btn--linie-hell:hover { border-color: var(--weiss); background: rgba(255,255,255,.12); }

.btn--klein { min-height: 44px; padding: .6rem 1.2rem; font-size: .88rem; }

.knopfreihe { display: flex; flex-wrap: wrap; gap: .8rem; }
.knopfreihe--mitte { justify-content: center; }

.pfeil {
  display: inline-flex;
  align-items: center;
  /* 44px hoch, damit der Daumen ihn trifft — das ist ein Aufruf zum Handeln,
     kein Fließtext-Link. */
  min-height: 44px;
  gap: .45rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--petrol);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s ease, gap .2s ease;
}
.pfeil::after { content: '→'; transition: transform .2s ease; }
.pfeil:hover { border-color: var(--petrol); }
.pfeil:hover::after { transform: translateX(3px); }

/* ─── Kopfzeile ──────────────────────────────────────────────────────── */

.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.kopf.ist-geklebt {
  background: rgba(244,241,237,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(135,83,58,.12), 0 10px 30px -22px rgba(46,26,15,.5);
}
.kopf__innen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
}

.marke { display: flex; align-items: center; gap: .7rem; text-decoration: none; }

/* Das Logo trägt die Wortmarke schon in sich. Im Kopf und im Fuß zeigen wir
   deshalb nur das runde Emblem — der Schriftzug daneben ist dann kein Doppel. */
.zeichen {
  --gr: 50px;
  display: block;
  flex: none;
  width: var(--gr);
  height: var(--gr);
  border-radius: 50%;
  overflow: hidden;
  background: var(--creme-hell);
}
.zeichen img {
  width: calc(var(--gr) * 1.34);
  height: auto;
  max-width: none;
  margin: calc(var(--gr) * -.1) 0 0 calc(var(--gr) * -.155);
}
.zeichen--gross { --gr: 76px; margin-bottom: 1rem; }
.marke__text { display: flex; flex-direction: column; line-height: 1; }
.marke__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -.02em;
  color: var(--braun);
}
.marke__zusatz {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--braun-grau);
  margin-top: .22rem;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav a {
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-block: .3rem;
}
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--braun);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s cubic-bezier(.22,.61,.36,1);
}
.nav a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { color: var(--weiss) !important; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0;
  border: 1.5px solid var(--sand-warm);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px; height: 1.8px;
  margin-inline: auto;
  background: var(--text);
  transition: transform .3s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────────────────── */

/* overflow:hidden, weil die dekorative Farbfläche bewusst über den rechten Rand
   hinausragt — auf dem Handy machte sie die Seite sonst 53px breiter als den
   Bildschirm und man konnte seitlich wegscrollen. */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4.5rem) var(--luft); }

.hero__flaeche {
  position: absolute;
  top: -18%;
  right: -14%;
  width: min(86vw, 1100px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 38% 42%, rgba(207,228,231,.9), rgba(207,228,231,0) 46%),
    radial-gradient(circle at 66% 64%, rgba(231,221,216,.9), rgba(231,221,216,0) 44%);
  filter: blur(30px);
  z-index: -1;
}

.hero__innen {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__text h1 { margin-bottom: 1.4rem; }

/* Ab 1001px steht der Text neben dem Bild und hat nur noch die halbe Breite.
   Die Überschrift darf dann nicht mehr mit der vollen Fensterbreite mitwachsen —
   sonst zerfällt sie dort in doppelt so viele Zeilen wie eine Stufe darunter. */
@media (min-width: 1001px) {
  .hero__text h1 { font-size: clamp(2.5rem, 1rem + 2.8vw, 4.2rem); }
}
.lead {
  font-size: var(--f-lead);
  line-height: 1.6;
  color: var(--text-leise);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero__bild { position: relative; margin: 0; }
.hero__bild img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  object-position: 50% 32%;
  border-radius: var(--bogen);
  box-shadow: var(--schatten-hoch);
}

/* Siegel bricht bewusst aus der Bildkante aus */
.siegel {
  position: absolute;
  left: -1.5rem;
  bottom: 2.5rem;
  width: 132px; height: 132px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--petrol-tief);
  color: var(--weiss);
  box-shadow: var(--schatten-hoch);
  transform: rotate(-6deg);
}
.siegel__zahl {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}
.siegel__text {
  display: block;
  margin-top: .3rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--petrol-hell);
}

/* ─── Vertrauensleiste ───────────────────────────────────────────────── */

.leiste { background: var(--weiss); border-block: 1px solid var(--sand); }
.leiste__innen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(2rem, 3.5vw, 2.75rem);
}
.leiste p { margin: 0; display: flex; flex-direction: column; gap: .3rem; }
.leiste strong {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.leiste span { font-size: .88rem; color: var(--text-leise); line-height: 1.45; }

/* ─── Kapitelköpfe ───────────────────────────────────────────────────── */

/* Achtung: ch rechnet in der Schriftgröße des Elements. Die Breite gehört
   deshalb auf die Überschrift selbst — auf dem Kasten wäre sie viel zu schmal,
   weil dort die kleine Grundschrift gilt. */
.kapitel { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 46rem; }
.kapitel h2 { max-width: 18ch; }
.kapitel--mitte h2 { max-width: none; }
.kapitel--mitte { margin-inline: auto; text-align: center; max-width: 62ch; }
.kapitel--mitte .augenbraue { justify-content: center; }
.kapitel__text {
  margin-top: 1.5rem;
  font-size: var(--f-lead);
  color: var(--text-leise);
  max-width: 58ch;
  margin-inline: auto;
}

/* ─── Angebot ────────────────────────────────────────────────────────── */

.angebot { padding-block: var(--luft); }

.karten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.6vw, 2.25rem);
  align-items: start;
}
.karte {
  background: var(--weiss);
  border-radius: var(--rund);
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: var(--schatten);
  transition: transform var(--tempo), box-shadow var(--tempo);
}
.karte--versetzt { margin-top: clamp(0rem, 4vw, 3.25rem); }
.karte:hover { transform: translateY(-6px); box-shadow: var(--schatten-hoch); }
.karte__bild {
  margin: -1.5rem -1.5rem 1.4rem;
  border-radius: var(--rund) var(--rund) 60px 8px;
  overflow: hidden;
}
.karte__bild img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.karte:hover .karte__bild img { transform: scale(1.045); }
.karte h3 { margin-bottom: .6rem; }
.karte p { color: var(--text-leise); font-size: .97rem; margin-bottom: 1.2rem; }

/* ─── Zitatband ──────────────────────────────────────────────────────── */

.band {
  background: var(--petrol-tief);
  color: var(--weiss);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  position: relative;
  overflow: hidden;
}
.band::before {
  content: '„';
  position: absolute;
  top: -.24em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(14rem, 30vw, 26rem);
  line-height: 1;
  color: rgba(255,255,255,.045);
  pointer-events: none;
}
.band__innen { position: relative; text-align: center; max-width: 54rem; margin-inline: auto; }
.band__zitat {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1rem + 2.3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.02em;
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.band__nach {
  color: var(--petrol-hell);
  font-size: var(--f-lead);
  max-width: 34ch;
  margin-inline: auto;
}

/* ─── Team ───────────────────────────────────────────────────────────── */

.team { padding-block: var(--luft); }

.portraits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 900px;
  margin-inline: auto;
}
.portrait__bild {
  border-radius: var(--bogen);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--schatten);
  background: var(--sand);
}
.portrait__bild img {
  width: 100%;
  aspect-ratio: 3 / 3.7;
  object-fit: cover;
  object-position: 50% 22%;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.portrait:hover .portrait__bild img { transform: scale(1.04); }
.portrait h3 { margin-bottom: .35rem; }
.portrait__rolle {
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--petrol);
  margin-bottom: .9rem;
}
.portrait p { color: var(--text-leise); font-size: .97rem; }

.team__schluss {
  max-width: 56ch;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1rem + .8vw, 1.5rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -.015em;
  color: var(--braun);
}

/* ─── Kurse ──────────────────────────────────────────────────────────── */

.kurse { background: var(--sand); padding-block: var(--luft); }

.kursliste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.kurs {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  background: var(--creme-hell);
  border: 1px solid var(--sand-grau);
  border-radius: var(--rund);
  padding: 1.5rem 1.4rem;
  transition: transform var(--tempo), box-shadow var(--tempo), border-color var(--tempo);
}
.kurs:hover { transform: translateY(-4px); border-color: var(--sand-warm); box-shadow: var(--schatten); }
.kurs__kopf { display: flex; flex-direction: column; gap: .25rem; }
.kurs__alter {
  margin: 0;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--petrol);
}
.kurs__text { margin: 0; font-size: .93rem; color: var(--text-leise); }
.kurs__fakten {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .88rem;
  color: var(--text-leise);
}
.kurs__fakten li { display: flex; gap: .55rem; align-items: baseline; }
.kurs__fakten li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sand-warm);
  flex: none;
  transform: translateY(-2px);
}
.kurs__preis {
  margin: auto 0 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--braun);
}
.kurs__preis span {
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--text-leise);
}

.chip {
  align-self: flex-start;
  margin: 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .32rem .8rem;
  border-radius: 999px;
}
.chip--offen { background: var(--petrol-hell); color: var(--petrol-tief); }

.hinweis {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: 1.4rem 1.6rem;
  border-radius: var(--rund);
  background: rgba(255,255,255,.55);
}
.hinweis p { margin: 0; font-size: .95rem; color: var(--text-leise); }
.hinweis strong { color: var(--text); }

/* ─── Elternstimmen ──────────────────────────────────────────────────── */

.stimmen { background: var(--weiss); padding-block: var(--luft); }

.stimmen__gitter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.75rem);
}
.stimme {
  margin: 0;
  padding: 1.75rem 1.6rem;
  border-radius: var(--rund);
  background: var(--creme);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.stimme p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -.015em;
  color: var(--text-leise);
}
.stimme footer {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin-top: auto;
  font-size: .85rem;
  font-weight: 600;
}
.stimme footer span { font-weight: 400; color: var(--braun-grau); }
.stimmen__notiz {
  margin-top: 1.5rem;
  text-align: center;
  font-size: .88rem;
  color: var(--braun-grau);
}

/* ─── Offene Stellen sichtbar machen ─────────────────────────────────── */

[data-todo] { position: relative; }
.stimmen__gitter[data-todo],
.hinweis[data-todo] {
  outline: 1.5px dashed var(--sand-warm);
  outline-offset: 10px;
  border-radius: var(--rund);
}
.stimmen__gitter[data-todo]::before,
.hinweis[data-todo]::before {
  content: 'Inhalt offen';
  position: absolute;
  top: -1.9rem;
  right: 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--braun-grau);
  background: inherit;
  padding-inline: .5rem;
}
.chip[data-todo] { border: 1.5px dashed var(--petrol-mit); }

/* ─── Schluss-CTA ────────────────────────────────────────────────────── */

.schluss {
  background: var(--braun);
  color: var(--weiss);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.schluss::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto;
  height: 130%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.14), rgba(255,255,255,0) 62%);
  pointer-events: none;
}
.schluss__innen { position: relative; text-align: center; max-width: 44ch; margin-inline: auto; }
.schluss__innen .augenbraue { justify-content: center; }
.schluss h2 { margin-bottom: 1.2rem; }
.schluss .hand { color: var(--petrol-hell); }
.schluss__text { font-size: var(--f-lead); color: rgba(255,255,255,.86); margin-bottom: 2rem; }
.schluss__tel { margin-top: 1.5rem; font-size: .92rem; color: rgba(255,255,255,.8); }
.schluss__tel a {
  color: var(--weiss);
  text-underline-offset: 4px;
  /* Telefonnummern werden angetippt — die Fläche muss den Daumen aushalten. */
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: .3rem;
}

/* ─── Fußzeile ───────────────────────────────────────────────────────── */

.fuss { background: var(--petrol-tief); color: var(--sand-grau); padding-block: clamp(3rem, 5vw, 4.5rem) 1.5rem; }
.fuss__innen {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
}
.fuss__marke p { font-size: .92rem; line-height: 1.6; color: var(--petrol-hell); max-width: 26ch; }
.fuss__spalte h2 {
  font-size: .76rem;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--petrol-mit);
  margin-bottom: 1rem;
}
.fuss address { font-style: normal; font-size: .92rem; line-height: 1.75; }
.fuss__zweit { margin-top: 1.4rem; }
.fuss ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.fuss li { display: flex; }
.fuss a {
  font-size: .92rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
  /* Im Fuß stehen Telefon und E-Mail — die tippt man am Handy an.
     Die Zeilen bekommen deshalb Höhe statt nur Abstand. */
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}
.fuss a:hover { color: var(--weiss); border-color: var(--petrol-mit); }
.fuss__unten {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  color: var(--braun-grau);
}
.fuss__unten p { margin: 0; }
.fuss__hinweis { color: var(--petrol-mit); }

/* ─── WhatsApp-Knopf für unterwegs ───────────────────────────────────── */

.wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 55;
  width: 56px; height: 56px;
  display: none;
  place-content: center;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--weiss);
  box-shadow: 0 10px 26px -8px rgba(17,122,135,.85);
}

/* ─── Auftauchen beim Scrollen ───────────────────────────────────────── */

/* Nur wenn JavaScript läuft, wird überhaupt etwas versteckt —
   ohne JS ist die Seite sofort vollständig lesbar. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1) var(--d, 0s),
              transform .7s cubic-bezier(.22,.61,.36,1) var(--d, 0s);
  will-change: opacity, transform;
}
.js .reveal.ist-da { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════════════
   Bausteine der Unterseiten
   ══════════════════════════════════════════════════════════════════════ */

/* ─── Kopf einer Unterseite ──────────────────────────────────────────── */

.seitenkopf {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5.5rem) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.seitenkopf::before {
  content: '';
  position: absolute;
  top: -55%;
  right: -20%;
  width: min(80vw, 900px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 40% 55%, rgba(207,228,231,.85), rgba(207,228,231,0) 45%),
    radial-gradient(circle at 65% 60%, rgba(231,221,216,.85), rgba(231,221,216,0) 44%);
  filter: blur(30px);
  z-index: -1;
}
.seitenkopf__innen { max-width: 46rem; }
.seitenkopf h1 { margin-bottom: 1.2rem; }
.seitenkopf--schmal { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.sprungmarken { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.sprungmarken a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: .4rem 1.1rem;
  border: 1.5px solid var(--sand-warm);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease;
}
.sprungmarken a:hover { background: var(--sand); border-color: var(--braun); }

.nav a[aria-current="page"] { color: var(--braun); font-weight: 600; }

.mitte { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ─── Bereiche der Leistungsseite ────────────────────────────────────── */

.bereich { padding-block: clamp(3.5rem, 7vw, 6rem); scroll-margin-top: 5rem; }
.bereich--getoent { background: var(--sand); }
.bereich__text {
  max-width: 58ch;
  font-size: var(--f-lead);
  color: var(--text-leise);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.angebot-liste { display: flex; flex-direction: column; gap: clamp(2.5rem, 6vw, 5rem); }

.angebot-block {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  scroll-margin-top: 5rem;
}
.angebot-block--gedreht { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.angebot-block--gedreht .angebot-block__bild { order: 2; }

.angebot-block__bild img {
  width: 100%;
  aspect-ratio: 3 / 2.2;
  object-fit: cover;
  border-radius: 24px 24px 90px 24px;
  box-shadow: var(--schatten);
}
.angebot-block--gedreht .angebot-block__bild img { border-radius: 24px 24px 24px 90px; }

.angebot-block__text h3 { margin-bottom: .8rem; }
.angebot-block__text > p { color: var(--text-leise); }
.angebot-block__text h4 {
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--braun);
  margin: 1.6rem 0 .8rem;
}
.angebot-block__cta { margin-top: 1.6rem; }

/* Fehlendes Bild sichtbar, aber gestaltet */
.bild-fehlt {
  display: grid;
  place-content: center;
  gap: .4rem;
  text-align: center;
  aspect-ratio: 3 / 2.2;
  padding: 1.5rem;
  border: 2px dashed var(--sand-warm);
  border-radius: 24px 24px 90px 24px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(183,152,137,.07) 0 12px,
    rgba(183,152,137,.14) 12px 24px
  );
}
.bild-fehlt__motiv {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--braun);
}
.bild-fehlt__quelle { margin: 0; font-size: .8rem; color: var(--braun-grau); }

/* ─── Aufzählungen und Eckdaten ──────────────────────────────────────── */

.haken { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.haken li { display: flex; gap: .7rem; align-items: baseline; color: var(--text-leise); font-size: .97rem; }
.haken li::before {
  content: '';
  flex: none;
  width: 9px; height: 5px;
  margin-top: .45em;
  border-left: 2px solid var(--petrol);
  border-bottom: 2px solid var(--petrol);
  transform: rotate(-45deg);
}

.eckdaten {
  margin: 1.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--sand-grau);
}
/* Eine Bezeichnung kann mehrere Werte haben — „Umfang" steht einmal,
   darunter alle Angaben. Vorher wiederholte sich das Wort je Zeile. */
.eckdaten div { display: flex; flex-direction: column; gap: .1rem; }
.eckdaten dd + dd { margin-top: .1rem; }
.eckdaten dt {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--braun-grau);
}
.eckdaten dd { margin: 0; font-size: .95rem; }
.eckdaten__preis {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--braun);
}
.eckdaten__preis span {
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--text-leise);
}

.offen-hinweis {
  margin-top: 1.2rem;
  padding: .8rem 1rem;
  font-size: .88rem;
  color: var(--text-leise);
  border: 1.5px dashed var(--sand-warm);
  border-radius: 12px;
}
.offen-hinweis strong { color: var(--braun); }

/* ─── Personen auf „Über uns" ────────────────────────────────────────── */

.person {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
/* Beim gedrehten Block wandert das Bild nach rechts — dann müssen auch die
   Spaltenbreiten mitwandern, sonst steht das Bild plötzlich in der breiten
   Spalte und der Text wird zur Säule. */
.person--gedreht { grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); }
.person--gedreht .person__bild { order: 2; }
.person__bild img {
  width: 100%;
  aspect-ratio: 3 / 3.7;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--bogen);
  box-shadow: var(--schatten);
}
.person__text h3 { margin-bottom: .35rem; }
.person__text > p { color: var(--text-leise); }
.person__text h4 {
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--braun);
  margin: 1.8rem 0 .9rem;
}

/* Die Qualifizierungen der beiden nutzen die Haken-Liste von den Kursseiten.
   Vorher stand hier eine Werdegangs-Liste mit Jahreszahlen — die gibt es nicht
   mehr, seit der Kunde echte Angaben geliefert hat (11.08.2026). */

/* ─── Kontaktseite ───────────────────────────────────────────────────── */

.kontakt { padding-block: clamp(2rem, 4vw, 3rem) var(--luft); }
.kontakt__innen {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.kontakt__wege {
  background: var(--sand);
  border-radius: var(--rund);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: sticky;
  top: 6rem;
}
.kontakt__wege h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.kontakt__wege h3 {
  font-family: var(--body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--braun-grau);
  margin: 1.8rem 0 .5rem;
}
.kontakt__wege address { font-style: normal; font-size: .95rem; line-height: 1.7; }

.wege { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.wege li { display: flex; flex-direction: column; gap: .15rem; }
.wege__was {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--braun-grau);
}
.wege__wie {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--braun);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  align-self: flex-start;
  transition: border-color .2s ease;
  /* WhatsApp, Mail und Telefon werden am Handy angetippt, nicht angeklickt. */
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.wege__wie:hover { border-color: var(--braun); }
.wege__hinweis { font-size: .85rem; color: var(--text-leise); }

.kontakt__formular { background: var(--weiss); border-radius: var(--rund); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--schatten); }
.kontakt__formular h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }

/* ─── Formularfelder ─────────────────────────────────────────────────── */

.feldreihe { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.2rem; }

.feld { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.3rem; }
.feld label { font-size: .9rem; font-weight: 600; }
.feld__zusatz { font-weight: 400; color: var(--braun-grau); font-size: .82rem; }

/* Bewusst umgedreht: alle Eingabefelder AUSSER den Sonderfällen. Eine
   Aufzählung der Typen vergisst man beim nächsten Feld (date, month, number,
   password …) — und dann sieht ein Feld anders aus als seine Nachbarn. */
.feld input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="file"]),
.feld select,
.feld textarea {
  width: 100%;
  min-height: 48px;
  padding: .7rem .9rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--text);
  background: var(--creme-hell);
  border: 1.5px solid var(--sand-grau);
  border-radius: 12px;
  transition: border-color .2s ease, background-color .2s ease;
}
.feld textarea { min-height: 8rem; resize: vertical; line-height: 1.6; }
.feld select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--braun) 50%), linear-gradient(135deg, var(--braun) 50%, transparent 50%); background-position: right 1.1rem center, right .85rem center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.5rem; }
.feld :is(input:not([type="checkbox"]), select, textarea):focus {
  border-color: var(--petrol);
  background: var(--weiss);
  outline: 2px solid rgba(17,122,135,.2);
  outline-offset: 0;
}
.feld--fehler :is(input, select, textarea) { border-color: #A33; background: #FFF7F6; }
.feld__fehler { font-size: .85rem; color: #8E2A22; }

.feld--haken label { display: flex; gap: .7rem; align-items: flex-start; font-weight: 400; font-size: .92rem; line-height: 1.55; }
/* Größer als der Standard von 20px: Das Häkchen ist am Handy Pflichtfeld
   und wird mit dem Daumen getroffen, nicht mit der Maus. */
.feld--haken input { flex: none; width: 26px; height: 26px; margin-top: .1rem; accent-color: var(--petrol); }
.feld__pflicht { font-size: .82rem; color: var(--braun-grau); margin-bottom: 1.5rem; }

/* Falle für Skripte — für Menschen und Vorleseprogramme unsichtbar */
.honigtopf { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.meldung {
  padding: .9rem 1.1rem;
  border-radius: 12px;
  font-size: .95rem;
  margin-bottom: 1.5rem;
}
.meldung--gut { background: var(--petrol-hell); color: var(--petrol-tief); border-left: 4px solid var(--petrol); }
.meldung--schlecht { background: #FDECEA; color: #7B241C; border-left: 4px solid #C0392B; }

/* ─── Rechtstexte ────────────────────────────────────────────────────── */

.wrap--schmal { width: min(100% - var(--rand) * 2, 46rem); }

.rechtstext { padding-block: 1rem var(--luft); }
.rechtstext h2 {
  font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem);
  margin: 2.5rem 0 .8rem;
}
.rechtstext h2:first-child { margin-top: 0; }
.rechtstext p, .rechtstext ul { color: var(--text-leise); }
.rechtstext a { color: var(--petrol); text-underline-offset: 3px; }
.rechtstext .klein { font-size: .88rem; }
.rechtstext .haken { margin: 1rem 0; }

.hinweis--warnung {
  background: rgba(255,255,255,.7);
  border: 1.5px dashed var(--sand-warm);
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════════════════════════════════════
   Kursseiten, Termine, Anmeldung
   ══════════════════════════════════════════════════════════════════════ */

.brotkrumen {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding-top: 1.5rem;
  font-size: .85rem;
  color: var(--braun-grau);
}
.brotkrumen a {
  color: var(--braun-grau);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}
.brotkrumen a:hover { color: var(--braun); border-color: var(--sand-warm); }
.brotkrumen [aria-current] { color: var(--text); }

.kurskopf { padding-block: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4rem); }
.kurskopf__innen {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.kurskopf__bild { margin: 0; }
.kurskopf__bild img {
  width: 100%;
  aspect-ratio: 3 / 2.2;
  object-fit: cover;
  border-radius: 24px 24px 90px 24px;
  box-shadow: var(--schatten);
}
.kurskopf .eckdaten { margin-bottom: 1.8rem; }
/* Kurstitel sind oft lange Einzelwörter — hier eine Nummer kleiner als die
   Schlagzeile der Startseite, sonst sprengt „Geschwisterdynamik" die Spalte. */
.kurskopf h1 { font-size: clamp(2rem, 1.3rem + 2.6vw, 3.4rem); margin-bottom: .9rem; }

.kursinhalt { padding-block: 0 clamp(2.5rem, 5vw, 4rem); }
.kursinhalt__innen {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.kursinhalt h2 { font-size: clamp(1.2rem, 1.05rem + .5vw, 1.5rem); margin-bottom: .8rem; }
.kursinhalt__text p { color: var(--text-leise); }
.kursinhalt__punkte {
  background: var(--sand);
  border-radius: var(--rund);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

/* ─── Terminliste ────────────────────────────────────────────────────── */

.termine { background: var(--sand); padding-block: var(--luft); }

.terminliste { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .8rem; }

.termin {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem 1.5rem;
  align-items: center;
  background: var(--creme-hell);
  border: 1px solid var(--sand-grau);
  border-left: 4px solid var(--petrol);
  border-radius: var(--rund);
  padding: 1.1rem 1.4rem;
  transition: border-color .2s ease, transform .2s ease;
}
.termin:hover { transform: translateX(2px); }
.termin--knapp { border-left-color: #C8791F; }
.termin--voll,
.termin--abgesagt { border-left-color: var(--sand-warm); background: rgba(255,255,255,.5); }

.termin__wann { display: flex; flex-direction: column; gap: .2rem; }
.termin__datum {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.termin__zeit { margin: 0; font-size: .9rem; color: var(--text-leise); }
.termin__hinweis { margin: .2rem 0 0; font-size: .85rem; color: var(--braun); }

.termin__lage {
  margin: 0;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: var(--petrol-hell);
  color: var(--petrol-tief);
  white-space: nowrap;
}
.termin--knapp .termin__lage { background: #F6E3C9; color: #7A4A10; }
.termin--voll .termin__lage,
.termin--abgesagt .termin__lage { background: var(--sand-grau); color: var(--text-leise); }

.termin__tun { margin: 0; }
.termine__fuss { margin-top: 1.75rem; font-size: .9rem; color: var(--text-leise); }
.termine__fuss--anschluss { margin-top: -.6rem; }

.chip--frei { background: var(--petrol-hell); color: var(--petrol-tief); }

/* ─── Anmeldeseite ───────────────────────────────────────────────────── */

.anmeldung { padding-block: clamp(1.5rem, 3vw, 2.5rem) var(--luft); }
.anmeldung__innen {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.anmeldung__karte {
  background: var(--sand);
  border-radius: var(--rund);
  padding: clamp(1.25rem, 3vw, 2rem);
  position: sticky;
  top: 6rem;
}
.anmeldung__karte h2 { font-size: 1.25rem; margin-bottom: 1.2rem; }
.anmeldung__zahlhinweis {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--sand-grau);
  font-size: .88rem;
  color: var(--text-leise);
}
.anmeldung__formular {
  background: var(--weiss);
  border-radius: var(--rund);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--schatten);
}
.anmeldung__formular h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.anmeldung__summe {
  padding: .8rem 1rem;
  margin-bottom: 1.2rem;
  background: var(--creme);
  border-left: 4px solid var(--braun);
  border-radius: 10px;
  font-size: .95rem;
}

.eckdaten--liste { flex-direction: column; gap: .9rem; border-top: 0; padding-top: 0; }
.eckdaten--liste div { gap: .15rem; }

.feld--schmal { max-width: 12rem; }
.feld__hilfe { font-size: .82rem; color: var(--braun-grau); line-height: 1.45; }

/* Kursüberschriften bleiben Links, sehen aber nicht danach aus */
.kurs__kopf h3 a,
.angebot-block__text h3 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}
.kurs__kopf h3 a:hover,
.angebot-block__text h3 a:hover { border-color: var(--braun); }

.angebot-block__cta { display: flex; flex-wrap: wrap; gap: .6rem; }

/* ══════════════════════════════════════════════════════════════════════
   Verwaltung — gleiche Bildsprache wie die Website, nur nüchterner
   ══════════════════════════════════════════════════════════════════════ */

.verwaltung { background: var(--creme); }
.verwaltung h1 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem); }
.verwaltung h2 { font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); margin-bottom: 1rem; }

.vw-kopf { background: var(--petrol-tief); color: var(--sand-grau); position: sticky; top: 0; z-index: 40; }
.vw-kopf__innen { display: flex; align-items: center; gap: 1.5rem; padding-block: .8rem; flex-wrap: wrap; }
.vw-marke {
  display: flex; align-items: center; gap: .6rem;
  color: var(--weiss); text-decoration: none;
  font-family: var(--display); font-weight: 600; letter-spacing: -.01em;
}
.vw-marke .zeichen { --gr: 38px; }
.vw-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-right: auto; }
.vw-nav a { color: var(--petrol-hell); text-decoration: none; font-size: .95rem; padding-block: .3rem; border-bottom: 2px solid transparent; }
.vw-nav a:hover { color: var(--weiss); border-color: var(--petrol-mit); }

/* Der Weg für Änderungswünsche hebt sich vom Rest ab — er ist der einzige
   Punkt, den der Kunde von sich aus ansteuern soll. */
.vw-nav__betont { color: var(--sand) !important; font-weight: 600; }
.vw-nav__betont:hover { border-color: var(--sand-warm) !important; }
.vw-abmelden { display: flex; align-items: center; gap: .8rem; margin: 0; }
.vw-wer { font-size: .85rem; color: var(--petrol-mit); }
.vw-abmelden .btn--linie { border-color: rgba(255,255,255,.4); color: var(--weiss); }
.vw-abmelden .btn--linie:hover { background: rgba(255,255,255,.12); border-color: var(--weiss); }

.vw-inhalt { padding-block: clamp(1.5rem, 3vw, 2.5rem) 4rem; }

.vw-kopfzeile { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }

.vw-block {
  background: var(--weiss);
  border-radius: var(--rund);
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
  margin-bottom: 1.5rem;
  box-shadow: var(--schatten);
}
.vw-hilfe { font-size: .9rem; color: var(--text-leise); }
.vw-klein { font-size: .82rem; color: var(--braun-grau); }

.vw-kacheln { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.vw-kachel {
  display: flex; flex-direction: column; gap: .2rem;
  background: var(--weiss); border-radius: var(--rund); padding: 1.25rem 1.4rem;
  box-shadow: var(--schatten); text-decoration: none; color: inherit;
}
.vw-kachel--achtung { border-left: 4px solid #C8791F; }
.vw-kachel__zahl { font-family: var(--display); font-size: 2rem; font-weight: 600; line-height: 1; color: var(--braun); }
.vw-kachel__was { font-size: .88rem; color: var(--text-leise); }

.vw-tabelle { width: 100%; border-collapse: collapse; font-size: .93rem; }
.vw-tabelle th {
  text-align: left; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--braun-grau); padding: .5rem .7rem; border-bottom: 2px solid var(--sand);
}
.vw-tabelle td { padding: .8rem .7rem; border-bottom: 1px solid var(--sand); vertical-align: top; }
.vw-tabelle tr:last-child td { border-bottom: 0; }
.vw-inaktiv td { opacity: .55; }
.vw-tun { display: flex; flex-wrap: wrap; gap: .4rem; align-items: flex-start; }
.vw-tun form { margin: 0; }

.vw-liste { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.vw-liste li {
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; justify-content: space-between;
  padding: .7rem .9rem; background: var(--creme); border-radius: 12px; font-size: .93rem;
}

.vw-formular { max-width: 46rem; }
.vw-formular .feld input[type="file"] { padding: .6rem; background: var(--creme); border: 1.5px dashed var(--sand-warm); border-radius: 12px; width: 100%; }

.vw-gruppe {
  border: 1.5px solid var(--sand);
  border-radius: var(--rund);
  padding: 1.25rem 1.4rem;
  margin: 1.75rem 0;
}
.vw-gruppe legend {
  padding-inline: .6rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--braun);
}
.vw-gruppe .vw-hilfe { margin-bottom: 1.2rem; }

.vw-punkte { display: grid; gap: .9rem; }
.vw-punkt {
  background: var(--creme);
  border-radius: var(--rund);
  border-left: 4px solid var(--petrol);
  padding: 1rem 1.2rem;
}
.vw-punkt--erledigt,
.vw-punkt--zurueckgestellt { opacity: .55; border-left-color: var(--sand-warm); }
.vw-punkt--in_arbeit { border-left-color: #C8791F; }
.vw-punkt__kopf { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; margin-bottom: .6rem; }
.vw-marke-klein {
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  background: var(--sand); color: var(--text-leise); padding: .2rem .6rem; border-radius: 999px;
}
.vw-marke-klein--eilig { background: #F6E3C9; color: #7A4A10; }
.vw-punkt__status { margin-left: auto; font-size: .8rem; font-weight: 600; color: var(--petrol-tief); }
.vw-punkt__text { margin-bottom: .5rem; }
.vw-punkt__tun { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-top: .8rem; }
.vw-punkt__tun select,
.vw-punkt__tun input[type="text"] {
  min-height: 40px; padding: .4rem .7rem; font-size: .9rem; font-family: var(--body);
  border: 1.5px solid var(--sand-grau); border-radius: 10px; background: var(--weiss);
}
.vw-punkt__tun input[type="text"] { flex: 1 1 14rem; }

.vw-anfragen { display: grid; gap: 1rem; }
.vw-anfrage { background: var(--weiss); border-radius: var(--rund); padding: 1.25rem 1.4rem; box-shadow: var(--schatten); }
.vw-anfrage header { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; margin-bottom: .4rem; }
.vw-anfrage__kontakt { font-size: .88rem; color: var(--text-leise); margin-bottom: .8rem; }
.vw-anfrage__text { margin-bottom: 1rem; }
.vw-anfrage--erledigt { opacity: .6; }
.vw-anfrage--erledigt .vw-anfrage__text { color: var(--text-leise); }

.vw-login {
  max-width: 26rem; margin: clamp(3rem, 10vh, 6rem) auto; text-align: center;
  background: var(--weiss); border-radius: var(--rund); padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--schatten-hoch);
}
.vw-login .zeichen { margin-inline: auto; }
.vw-login h1 { margin-bottom: .4rem; }
.vw-login__text { color: var(--text-leise); font-size: .92rem; margin-bottom: 1.75rem; }
.vw-login .feld { text-align: left; }
.vw-login__zurueck { margin-top: 1.5rem; font-size: .88rem; }
.vw-login__zurueck a { color: var(--braun-grau); }

/* ─── Anpassung an kleinere Bildschirme ──────────────────────────────── */

@media (max-width: 1000px) {
  .hero__innen { grid-template-columns: 1fr; }
  .hero__bild { max-width: 480px; margin-inline: auto; }
  .karten { grid-template-columns: repeat(2, 1fr); }
  .karte--versetzt { margin-top: 0; }
  .fuss__innen { grid-template-columns: repeat(2, 1fr); }
  .kontakt__innen { grid-template-columns: 1fr; }
  .kontakt__wege { position: static; }
}

@media (max-width: 1000px) {
  .kurskopf__innen,
  .kursinhalt__innen,
  .anmeldung__innen { grid-template-columns: 1fr; }
  .anmeldung__karte { position: static; }
  .termin { grid-template-columns: 1fr auto; }
  .termin__tun { grid-column: 1 / -1; }
  .termin__tun .btn { width: 100%; }
}

@media (max-width: 860px) {
  .angebot-block,
  .person { grid-template-columns: 1fr; }
  .angebot-block--gedreht .angebot-block__bild,
  .person--gedreht .person__bild { order: 0; }
  .angebot-block__bild img,
  .bild-fehlt { border-radius: 20px 20px 64px 20px; }
  .person__bild { max-width: 320px; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5.5rem var(--rand) 2rem;
    background: var(--creme);
    box-shadow: var(--schatten-hoch);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform .4s cubic-bezier(.22,.61,.36,1), visibility .4s;
  }
  .nav.ist-offen { transform: none; visibility: visible; }
  .nav a { padding-block: 1rem; border-bottom: 1px solid var(--sand); font-size: 1.1rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav__cta { margin-top: 1.25rem; border-bottom: none; justify-content: center; }
  .burger { display: flex; z-index: 2; }
  .leiste__innen { grid-template-columns: repeat(2, 1fr); }
  .wa { display: grid; }
  .portraits { grid-template-columns: 1fr; max-width: 420px; }
  .siegel { width: 108px; height: 108px; left: -.75rem; bottom: 1.5rem; }
  .siegel__zahl { font-size: 2rem; }
}

@media (max-width: 620px) {
  .karten { grid-template-columns: 1fr; }
  .fuss__innen { grid-template-columns: 1fr; }
  .knopfreihe .btn { width: 100%; }
  .hero__bild img { aspect-ratio: 4 / 4.2; }
  .feldreihe { grid-template-columns: 1fr; }
}

/* ─── Newsletter ─────────────────────────────────────────────────────── */

/* Der Streifen über der Fußzeile. Er trägt kein eigenes Formular zur Anmeldung,
   sondern führt auf die Newsletter-Seite und nimmt die Adresse gleich mit —
   die Einwilligung gehört an die Anmeldung, nicht unter jede Seite. */
.fuss__brief {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.fuss__brief-text h2 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 600;
  color: var(--weiss);
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: .35rem;
}
.fuss__brief-text p { font-size: .95rem; color: var(--petrol-hell); max-width: 46ch; }
/* Vorsorge: Flex-Kinder schrumpfen von sich aus nicht unter ihre
   Inhaltsbreite. Ohne min-width:0 könnte das Eingabefeld auf schmalen
   Bildschirmen die Seite breiter schieben als den Viewport. Gemessen (390 px,
   scrollWidth 375) tut es das nicht — die Regel hält es auch dann so, wenn
   später ein längerer Knopftext dazukommt. */
.fuss__brief-text, .fuss__brief-form { min-width: 0; }
.fuss__brief-form { display: flex; flex-wrap: wrap; gap: .6rem; margin: 0; }
.fuss__brief-form input {
  flex: 1 1 15rem;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
  padding: .7rem 1.1rem;
  font: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--weiss);
  border: 1.5px solid transparent;
  border-radius: 999px;
}
.fuss__brief-form input::placeholder { color: var(--braun-grau); }
.fuss__brief-form input:focus-visible { outline: 3px solid var(--petrol-mit); outline-offset: 2px; }

/* Für Bildschirmleser sichtbar, für Augen nicht. */
.skip-visuell {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Auf der Newsletter-Seite selbst stünde der Streifen zweimal dasselbe. */
.seite-newsletter .fuss__brief { display: none; }

.meldung__aktion { margin-top: 2rem; }

/* Die Vorschau einer Ausgabe in der Verwaltung: ein echter Rahmen, damit man
   das fertige Dokument sieht und nicht eine Nachbildung im Seitenlayout. */
.vw-mailrahmen {
  width: 100%;
  height: 70vh;
  min-height: 30rem;
  border: 1px solid var(--sand);
  border-radius: 12px;
  background: var(--creme);
}
.vw-tabelle code {
  font-size: .85rem;
  background: var(--creme);
  padding: .15rem .45rem;
  border-radius: 6px;
  white-space: nowrap;
}

@media (max-width: 620px) {
  .fuss__brief-form { width: 100%; }
  .fuss__brief-form input { flex: 1 1 100%; min-width: 0; }
  .fuss__brief-form .btn { width: 100%; }
}
/* Die Wahl zwischen Kursnachricht und Newsletter-Ausgabe. Zwei Karten statt
   zweier nackter Radioknöpfe, weil an dieser Stelle die Erklärung wichtiger ist
   als die Auswahl: Sie entscheidet über Abmeldelink und erlaubte Empfänger. */
.vw-wahl { display: grid; gap: .9rem; margin-bottom: 1.6rem; }
.vw-wahl__karte {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--creme-hell);
  border: 1.5px solid var(--sand);
  border-radius: 14px;
  cursor: pointer;
}
.vw-wahl__karte:hover { border-color: var(--sand-warm); }
.vw-wahl__karte:has(input:checked) { border-color: var(--braun); background: var(--creme); }
.vw-wahl__karte input { width: 22px; height: 22px; margin-top: .15rem; accent-color: var(--petrol); }
/* Nur die Überschrift der Karte steht auf eigener Zeile. Ohne die Klasse
   erwischte die Regel auch jedes hervorgehobene Wort im Fließtext und riss
   den Satz auseinander. */
.vw-wahl__titel { display: block; margin-bottom: .25rem; }
.vw-wahl__karte .vw-klein { display: block; line-height: 1.55; }

/* Felder, die das Formular je nach Auswahl ausblendet. Ohne diese Regel bliebe
   ein `hidden`-Absatz sichtbar, weil `display: flex` aus .feld stärker ist. */
.vw-formular [hidden] { display: none !important; }

@media (min-width: 760px) {
  .vw-wahl { grid-template-columns: 1fr 1fr; }
}
/* ─── Rücksicht auf Systemeinstellungen ──────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* Fuer die PDF-Fassung zum Verschicken: Farbflaechen bleiben erhalten, nur
   Bedienelemente und das Korn fliegen raus. Ohne die Reveal-Regel waeren
   Abschnitte unsichtbar, die beim Drucken nie in den Blick gescrollt wurden. */
@media print {
  .kopf, .wa, body::after { display: none; }
  body {
    background: var(--creme);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero { padding-top: 1.5rem; }
  .karte, .kurs, .portrait, .stimme, .leiste p { break-inside: avoid; }
  .band, .schluss, .fuss { break-inside: avoid; }
}
