/* ==========================================================================
   Moni's MiniMomente — Corporate Design
   Farben, Typografie und Verläufe nach "Corporate Design – Moni's MiniMomente"
   ========================================================================== */

:root {
  /* Primärfarben */
  --petrol: #2e5d66;
  --salbei: #a7bfa8;
  --creme: #faf8f3;

  /* Sekundärfarben */
  --eukalyptus: #c9d9cf;
  --salbei-hell: #e8efe8;
  --sand: #e8ded2;
  --nebelgrau: #f3f2ee;

  /* Akzentfarben (greifen das Logo dezent auf) */
  --apricot: #f4b183;
  --goldocker: #d6b26e;
  --blassblau: #9dbfd7;
  --terrakotta: #c98a6b;

  /* Schriftfarben */
  --headline: #2e5d66;
  --text: #4f5a59;
  --text-secondary: #7c8786;

  /* Farbverläufe */
  --verlauf-haupt: linear-gradient(180deg, #e8efe8 0%, #faf8f3 100%);
  --verlauf-karte: linear-gradient(160deg, #c9d9cf 0%, #e8efe8 100%);
  --verlauf-button: linear-gradient(135deg, #a7bfa8 0%, #c9d9cf 100%);
  --verlauf-petrol: linear-gradient(135deg, #2e5d66 0%, #4f7a7d 100%);

  /* Typografie */
  --font-logo: "Baloo 2", "Fredoka", system-ui, sans-serif;
  --font-headline: "DM Serif Display", "Nunito", Georgia, serif;
  --font-body: "Nunito", "Quicksand", system-ui, -apple-system, sans-serif;

  /* Maße */
  --breite: 1140px;
  --radius: 22px;
  --radius-s: 14px;
  --schatten: 0 18px 40px -24px rgba(46, 93, 102, 0.38);
  --schatten-hoch: 0 26px 60px -28px rgba(46, 93, 102, 0.45);
}

/* --------------------------------------------------------------- Grundlage */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background-color: var(--creme);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-headline);
  color: var(--headline);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }

h4 {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--headline);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.4em;
}

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

a {
  color: var(--petrol);
  text-decoration-color: rgba(214, 178, 110, 0.7);
  text-underline-offset: 4px;
}

a:hover { text-decoration-color: var(--goldocker); }

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--petrol);
  color: var(--creme);
  padding: 0.8rem 1.4rem;
  border-radius: 0 0 12px 0;
  z-index: 200;
}

.skip-link:focus {
  left: 0;
}

/* ------------------------------------------------------------ Hilfsklassen */

.wrap {
  width: min(100% - 2.5rem, var(--breite));
  margin-inline: auto;
}

.wrap--schmal {
  width: min(100% - 2.5rem, 760px);
  margin-inline: auto;
}

.abschnitt {
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
}

.abschnitt--nebel { background: var(--nebelgrau); }
.abschnitt--salbei { background: var(--salbei-hell); }

.kopfzeile-abschnitt {
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
  text-align: center;
}

.kopfzeile-abschnitt p {
  color: var(--text-secondary);
  font-size: 1.08rem;
}

.augenbraue {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}

.augenbraue::before,
.augenbraue::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--goldocker);
}

.herz {
  color: var(--apricot);
  font-style: normal;
}

/* ----------------------------------------------------------------- Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--schatten-hoch);
}

.btn--primaer {
  background: var(--verlauf-petrol);
  color: var(--creme);
  box-shadow: var(--schatten);
}

.btn--sekundaer {
  background: var(--verlauf-button);
  color: var(--petrol);
  box-shadow: 0 12px 30px -20px rgba(46, 93, 102, 0.6);
}

.btn--schlicht {
  background: transparent;
  color: var(--petrol);
  border: 1.5px solid var(--eukalyptus);
}

.btn--schlicht:hover {
  border-color: var(--salbei);
  background: rgba(232, 239, 232, 0.6);
}

/* ------------------------------------------------------------------ Header */

.kopf {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214, 178, 110, 0.28);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.kopf.ist-gescrollt {
  box-shadow: 0 10px 30px -26px rgba(46, 93, 102, 0.7);
  background: rgba(250, 248, 243, 0.95);
}

.kopf__inhalt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
}

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

.marke__zeichen {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  background: var(--verlauf-petrol);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -16px rgba(46, 93, 102, 0.9);
}

.marke__zeichen img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.marke__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.marke__name {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--petrol);
}

.marke__zusatz {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 700;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.navigation__liste {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation__liste a {
  position: relative;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  padding: 0.3rem 0;
}

.navigation__liste a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--goldocker);
  transition: right 0.3s ease;
}

.navigation__liste a:hover::after,
.navigation__liste a.ist-aktiv::after {
  right: 0;
}

.navigation__liste a.ist-aktiv { color: var(--petrol); }

.nav-schalter {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--eukalyptus);
  border-radius: 14px;
  background: var(--salbei-hell);
  cursor: pointer;
  padding: 0;
  place-items: center;
}

.nav-schalter span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--petrol);
  border-radius: 2px;
  position: relative;
  transition: background 0.2s ease;
}

.nav-schalter span::before,
.nav-schalter span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--petrol);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.nav-schalter span::before { top: -6px; }
.nav-schalter span::after { top: 6px; }

.nav-schalter[aria-expanded="true"] span { background: transparent; }
.nav-schalter[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-schalter[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* -------------------------------------------------------------------- Hero */

.hero {
  position: relative;
  background: var(--verlauf-haupt);
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4.5rem, 9vw, 7rem);
  overflow: hidden;
}

.hero__gitter {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__text h1 {
  margin-bottom: 0.45em;
}

.hero__text h1 em {
  font-style: normal;
  color: var(--terrakotta);
}

.hero__lead {
  font-size: 1.16rem;
  max-width: 34rem;
  color: var(--text);
}

.hero__aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__merkmale {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.hero__merkmale li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__merkmale svg {
  width: 18px;
  height: 18px;
  color: var(--salbei);
  flex: 0 0 18px;
}

/* Logo-Bühne */
.buehne {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 440px;
  margin-inline: auto;
  width: 100%;
}

.buehne__kreis {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: var(--verlauf-petrol);
  box-shadow: 0 40px 80px -40px rgba(46, 93, 102, 0.75);
}

.buehne__kreis::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(214, 178, 110, 0.55);
}

.buehne__logo {
  position: relative;
  width: 74%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.buehne__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(167, 191, 168, 0.75);
  animation: drehen 60s linear infinite;
}

@keyframes drehen {
  to { transform: rotate(360deg); }
}

.buehne__blatt {
  position: absolute;
  color: var(--salbei);
  opacity: 0.85;
}

.buehne__blatt--1 { width: 92px; left: -4%; bottom: 12%; transform: rotate(-18deg); }
.buehne__blatt--2 { width: 68px; right: -2%; top: 8%; transform: rotate(24deg); color: var(--blassblau); }

.buehne__herz {
  position: absolute;
  width: 30px;
  color: var(--apricot);
  right: 6%;
  bottom: 6%;
}

/* Dekorative Aquarell-Flächen */
.klecks {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
}

.klecks--1 { width: 340px; height: 340px; background: var(--eukalyptus); top: -80px; left: -100px; }
.klecks--2 { width: 260px; height: 260px; background: var(--sand); bottom: -90px; right: 18%; opacity: 0.7; }
.klecks--3 { width: 200px; height: 200px; background: rgba(244, 177, 131, 0.45); top: 30%; right: -60px; }

/* Wellen-Trenner */
.welle {
  display: block;
  width: 100%;
  height: auto;
  color: var(--creme);
  margin-top: -1px;
}

/* ---------------------------------------------------------- Vertrauensband */

.band {
  background: var(--creme);
  border-top: 1px solid rgba(232, 222, 210, 0.9);
  border-bottom: 1px solid rgba(232, 222, 210, 0.9);
  padding: 1.5rem 0;
}

.band__liste {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.band__liste li {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.band__liste li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--goldocker);
  opacity: 0.8;
}

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

.karten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
}

.karte {
  position: relative;
  background: var(--verlauf-karte);
  border-radius: var(--radius);
  padding: 2.2rem 2rem 2rem;
  box-shadow: var(--schatten);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.karte::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(250, 248, 243, 0.55);
  pointer-events: none;
}

.karte:hover {
  transform: translateY(-6px);
  box-shadow: var(--schatten-hoch);
}

.karte__symbol {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--salbei-hell);
  color: var(--petrol);
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(250, 248, 243, 0.9);
}

.karte__symbol svg { width: 30px; height: 30px; }

.karte h3 { margin-bottom: 0.35em; }

.karte__untertitel {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}

.karte p { color: var(--text); }

.karte__fakten {
  list-style: none;
  margin: auto 0 1.6rem;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(250, 248, 243, 0.8);
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.karte__fakten li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.karte__fakten strong {
  color: var(--petrol);
  font-weight: 800;
  min-width: 6.5rem;
  flex: 0 0 6.5rem;
}

.karte__fuss {
  margin-top: 0;
}

/* ---------------------------------------------------------------- Über mich */

.ueber {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.ueber__bild {
  position: relative;
  border-radius: 50% 50% 46% 54% / 52% 48% 52% 48%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--verlauf-karte);
  display: grid;
  place-items: center;
  box-shadow: var(--schatten-hoch);
}

.ueber__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ueber__platzhalter {
  text-align: center;
  padding: 2rem;
  color: var(--petrol);
}

.ueber__platzhalter svg {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  opacity: 0.6;
}

.ueber__platzhalter span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

.ueber__zitat {
  margin: 1.8rem 0 0;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--goldocker);
  background: var(--nebelgrau);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--petrol);
  line-height: 1.5;
}

.qualifikationen {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.qualifikationen li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.qualifikationen svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--salbei);
  margin-top: 0.28rem;
}

/* ---------------------------------------------------------------- Kursdetail */

.kurs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.kurs + .kurs {
  border-top: 1px solid var(--sand);
}

.kurs:nth-of-type(even) .kurs__medium { order: 1; }

.kurs__medium {
  position: relative;
  border-radius: var(--radius);
  background: var(--verlauf-karte);
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--schatten);
}

.kurs__medium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kurs__medium-inhalt {
  text-align: center;
  color: var(--petrol);
  padding: 2rem;
}

.kurs__medium-inhalt svg {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 auto 0.9rem;
  opacity: 0.55;
}

.kurs__medium-inhalt span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.marke-badge {
  display: inline-block;
  background: var(--salbei-hell);
  color: var(--petrol);
  border: 1px solid var(--eukalyptus);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.merkmalliste {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.merkmalliste li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.merkmalliste li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.65rem;
  border-radius: 50%;
  background: var(--apricot);
  opacity: 0.85;
}

.kurs__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.chip {
  background: var(--creme);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.chip strong { color: var(--petrol); }

/* ---------------------------------------------------------------- Ablauf */

.schritte {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  counter-reset: schritt;
}

.schritt {
  position: relative;
  background: var(--creme);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 2.4rem 1.6rem 1.8rem;
}

.schritt::before {
  counter-increment: schritt;
  content: counter(schritt);
  position: absolute;
  top: -20px;
  left: 1.6rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--verlauf-petrol);
  color: var(--creme);
  display: grid;
  place-items: center;
  font-family: var(--font-headline);
  font-size: 1.15rem;
  box-shadow: var(--schatten);
}

.schritt h3 { font-size: 1.15rem; }

.schritt p {
  font-size: 0.97rem;
  color: var(--text-secondary);
}

/* ------------------------------------------------------- Termine & Preise */

.termine {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.termin {
  background: var(--creme);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.termin:hover {
  border-color: var(--salbei);
  transform: translateY(-4px);
}

.termin__kopf {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.termin__kopf h3 { margin: 0; font-size: 1.22rem; }

.termin__preis {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--terrakotta);
  white-space: nowrap;
}

.termin__zeile {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.96rem;
  color: var(--text-secondary);
}

.termin__zeile svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--salbei);
}

.anmeldung_link {
  text-decoration: none;
}

.termin__status {
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.termin__status--frei {
  background: var(--salbei-hell);
  color: var(--petrol);
}

.termin__status--wenige {
  background: rgba(244, 177, 131, 0.28);
  color: #a05a2c;
}

.termin__status--warteliste {
  background: var(--nebelgrau);
  color: var(--text-secondary);
}

.hinweis {
  margin-top: 2.2rem;
  padding: 1.4rem 1.6rem;
  background: var(--salbei-hell);
  border-radius: var(--radius-s);
  font-size: 0.97rem;
  color: var(--text-secondary);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hinweis svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--petrol);
  margin-top: 0.2rem;
}

/* -------------------------------------------------------------- Stimmen */

.stimmen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.stimme {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 2.4rem 1.9rem 1.9rem;
  position: relative;
  box-shadow: var(--schatten);
}

.stimme::before {
  content: "”";
  position: absolute;
  top: 0.6rem;
  left: 1.5rem;
  font-family: var(--font-headline);
  font-size: 4rem;
  line-height: 1;
  color: var(--eukalyptus);
}

.stimme p {
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
}

.stimme footer {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

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

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq details {
  background: var(--creme);
  border: 1px solid var(--sand);
  border-radius: var(--radius-s);
  padding: 0 1.4rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq details[open] {
  border-color: var(--eukalyptus);
  background: var(--nebelgrau);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2.5rem 1.15rem 0;
  font-weight: 800;
  color: var(--petrol);
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--salbei);
  border-bottom: 2px solid var(--salbei);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq details p {
  padding-bottom: 1.3rem;
  color: var(--text);
  font-size: 1rem;
}

/* -------------------------------------------------------------- Kontakt */

.kontakt {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.kontakt__info {
  background: var(--verlauf-petrol);
  color: rgba(250, 248, 243, 0.92);
  border-radius: var(--radius);
  padding: 2.4rem 2.1rem;
  box-shadow: var(--schatten-hoch);
}

.kontakt__info h3 { color: var(--creme); }

.kontakt__info a {
  color: var(--creme);
  text-decoration-color: rgba(244, 177, 131, 0.8);
}

.kontakt__liste {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}

.kontakt__liste li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.kontakt__liste svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--apricot);
  margin-top: 0.28rem;
}

.kontakt__liste span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
  font-weight: 800;
}

.sozial {
  display: flex;
  gap: 0.7rem;
  margin-top: 2rem;
}

.sozial a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(250, 248, 243, 0.14);
  color: var(--creme);
  transition: background 0.25s ease, transform 0.25s ease;
}

.sozial a:hover {
  background: rgba(244, 177, 131, 0.85);
  color: var(--petrol);
  transform: translateY(-3px);
}

.sozial svg { width: 21px; height: 21px; }

/* Formular */
.reg-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-logo);
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: .35rem;
  font-size: .95rem;
}
.req { color: var(--terrakotta); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--nebelgrau);
  border: 2px solid var(--sand);
  border-radius: 12px;
  padding: .7rem .9rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--petrol);
  box-shadow: 0 0 0 4px rgba(46, 93, 102, .18);
}
.field textarea { resize: vertical; }
.field input.invalid,
.field select.invalid {
  border-color: var(--terrakotta);
  box-shadow: 0 0 0 4px rgba(201, 138, 107, .25);
}

.field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: .7rem;
}
.field-check input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--petrol); }
.field-check label { font-weight: 400; font-family: var(--font-body); color: var(--text); }
.inline-link { color: var(--petrol); text-decoration: underline; }

.form-note { grid-column: 1 / -1; margin: 0; font-size: .85rem; color: var(--text-secondary); }

.form-success {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--verlauf-karte);
  border: 1px solid var(--salbei);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin-top: .5rem;
}
.form-success .success-emoji { font-size: 3rem; display: block; margin-bottom: .4rem; }
.form-success h3 { margin-bottom: .3rem; }
.form-success p { margin: 0; color: var(--text); }






.formular {
  background: var(--creme);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: var(--schatten);
}

.feldpaar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.feld {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.feld label {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--petrol);
  letter-spacing: 0.03em;
}

.feld input,
.feld select,
.feld textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--nebelgrau);
  border: 1px solid var(--sand);
  border-radius: var(--radius-s);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.feld textarea {
  min-height: 130px;
  resize: vertical;
}

.feld input:focus,
.feld select:focus,
.feld textarea:focus {
  border-color: var(--salbei);
  background: var(--creme);
  outline: none;
  box-shadow: 0 0 0 3px rgba(167, 191, 168, 0.35);
}

.feld--kontrolle {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
}

.feld--kontrolle input {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  accent-color: var(--petrol);
}

.feld--kontrolle label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0;
}

.formular__fuss {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.6rem;
}

.formular__fuss p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin: 0;
  flex: 1 1 12rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* --------------------------------------------------------------- Abschluss */

.abschluss {
  position: relative;
  overflow: hidden;
  background: var(--salbei-hell);
  text-align: center;
}

.abschluss .wrap--schmal { position: relative; z-index: 2; }

.abschluss__aktionen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* ------------------------------------------------------------------ Footer */

.fuss {
  background: var(--petrol);
  color: rgba(250, 248, 243, 0.78);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.95rem;
}

.fuss a {
  color: rgba(250, 248, 243, 0.86);
  text-decoration: none;
}

.fuss a:hover {
  color: var(--apricot);
  text-decoration: underline;
}

.fuss__gitter {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 248, 243, 0.16);
}

.fuss .marke__name { color: var(--creme); }
.fuss .marke__zusatz { color: rgba(250, 248, 243, 0.6); }

.fuss .marke__zeichen {
  background: rgba(250, 248, 243, 0.1);
  box-shadow: none;
}

.fuss h4 {
  color: var(--creme);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.fuss ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.fuss__unten {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: 0.86rem;
  color: rgba(250, 248, 243, 0.62);
}

.fuss__unten nav {
  display: flex;
  gap: 1.5rem;
}

.fuss__marke-text {
  margin-top: 1.1rem;
  max-width: 32ch;
  color: rgba(250, 248, 243, 0.72);
}

/* --------------------------------------------------------- Rechtsseiten */

.rechtsseite {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.rechtsseite h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-top: 2.4rem;
}

.rechtsseite h2:first-of-type { margin-top: 1.5rem; }

.rechtsseite ul { padding-left: 1.2rem; }
.rechtsseite li { margin-bottom: 0.4rem; }

.platzhalter-box {
  background: var(--salbei-hell);
  border: 1px dashed var(--salbei);
  border-radius: var(--radius-s);
  padding: 1.2rem 1.4rem;
  font-size: 0.94rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ------------------------------------------------------------- Animation */

.erscheint {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.erscheint.ist-sichtbar {
  opacity: 1;
  transform: none;
}

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

/* ------------------------------------------------------------- Responsive */

@media (max-width: 960px) {
  .hero__gitter,
  .ueber,
  .kurs,
  .kontakt {
    grid-template-columns: 1fr;
  }

  .kurs:nth-of-type(even) .kurs__medium { order: 0; }

  .buehne { max-width: 340px; }

  .ueber__bild { max-width: 380px; margin-inline: auto; }

  .fuss__gitter { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav-schalter { display: grid; }

  .navigation {
    position: fixed;
    inset: 72px 0 auto;
    background: var(--creme);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.8rem;
    border-bottom: 1px solid var(--sand);
    box-shadow: 0 24px 40px -30px rgba(46, 93, 102, 0.8);
    transform: translateY(-140%);
    transition: transform 0.35s ease;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .navigation.ist-offen { transform: translateY(0); }

  .navigation__liste {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .navigation__liste li + li { border-top: 1px solid var(--nebelgrau); }

  .navigation__liste a {
    display: block;
    padding: 0.95rem 0.2rem;
    font-size: 1.05rem;
  }

  .navigation__liste a::after { display: none; }

  .navigation .btn { margin-top: 1.1rem; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }

  .augenbraue {
    flex-wrap: wrap;
    justify-content: center;
  }

  .augenbraue::before,
  .augenbraue::after { display: none; }

  .abschnitt { padding: 3.5rem 0; }

  .feldpaar { grid-template-columns: 1fr; }

  .fuss__gitter { grid-template-columns: 1fr; gap: 2rem; }

  .karte { padding: 1.8rem 1.5rem; }

  .karte__fakten strong { min-width: 5.5rem; flex-basis: 5.5rem; }

  .hero__aktionen .btn { flex: 1 1 100%; }
}

@media print {
  .kopf, .nav-schalter, .abschluss, .formular { display: none; }
  body { background: #fff; }
}
