

@import url('../fonts/_fontface.css');

:root {
  --farbe-marke:       #440B52;
  --farbe-marke-hell:  #5D3971;
  --farbe-signal:      #F1C40F;
  --farbe-text:        #000000;
  --farbe-text-leise:  #555555;
  --farbe-weiss:       #FFFFFF;
  --farbe-text-hell:   #F0F0F0;
  --farbe-kopf:        #4D4D4D;
  --farbe-karte:       #F4F4F4;
  --farbe-grau-hell:   #E9E9E9;
  --farbe-grau-dunkel: #C6C3C3;
  --farbe-icon:        #69727D;
  --farbe-marke-blass: #B5AFCF;

  --schrift-text:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --schrift-display: 'Lato', 'Inter', system-ui, sans-serif;

  --fs-h1:      56px;
  --fs-h1-unter: 50px;
  --fs-h2:      45px;
  --fs-h3:      36px;
  --fs-h4:      28px;
  --fs-h5:      24px;
  --fs-lead:    20px;
  --fs-body:    19px;
  --fs-klein:   15px;
  --fs-mini:    14px;
  --fs-micro:   12px;

  --lh-body:   31.4px;
  --lh-h1:     78.4px;
  --lh-h1-unter: 70px;
  --lh-h2:     58.5px;
  --lh-h3:     46.8px;
  --lh-h4:     33.6px;
  --lh-h5:     28.8px;
  --lh-knopf:    20px;

  --breite-inhalt: 1140px;
  --breite-hero:   1200px;
  --rand-seite:      40px;
  --kopf-hoehe:     111px;

  --r-knopf:      30px;
  --r-knopf-klein: 50px;
  --r-band:       24px;
  --r-karte:      20px;
  --r-kasten:     16px;
  --r-klein:      12px;

  --p-knopf:       15px 45px;
  --p-knopf-mittel: 15px 30px;
  --p-knopf-klein: 12px 24px;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote) {
  margin: 0;
}
:where(ul, ol) {
  padding-left: 0;
  list-style: none;
}
:where(img, picture, svg, video) {
  display: block;
  max-width: 100%;
  height: auto;
}
:where(a) {
  color: inherit;
  text-decoration: none;
}
:where(button, input, select, textarea) {
  font: inherit;
  color: inherit;
}
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--schrift-text);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  color: var(--farbe-text);
  background: var(--farbe-weiss);

}

.sprungmarke {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--farbe-weiss);
  color: var(--farbe-text);
  box-shadow: 0 0 0 2px var(--farbe-marke);
}
.sprungmarke:focus { left: 0; }

.band {
  padding-inline: var(--rand-seite);
}
.band__inhalt {
  max-width: var(--breite-inhalt);
  margin-inline: auto;
}

h1, .h1 {
  font-family: var(--schrift-display);
  font-size: var(--fs-h1-unter);
  line-height: var(--lh-h1-unter);
  font-weight: 400;
  color: var(--farbe-marke);
}
h2, .h2 {
  font-family: var(--schrift-display);
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  font-weight: 400;
  color: var(--farbe-text);
}
h3, .h3 {
  font-family: var(--schrift-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  font-weight: 400;
}
h4, .h4 {
  font-family: var(--schrift-display);
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  font-weight: 400;
}

.kicker {
  font-size: var(--fs-body);
  line-height: 19px;
  font-weight: 300;
  color: var(--farbe-marke);
  text-transform: uppercase;
}

strong, b { font-weight: 700; }

:where(.fliess) > * + * { margin-top: 1em; }

.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: var(--p-knopf-mittel);
  border: 0;
  border-radius: var(--r-knopf);
  background: var(--farbe-marke);
  color: var(--farbe-weiss);
  font-family: var(--schrift-display);
  font-size: var(--fs-lead);
  line-height: var(--lh-knopf);
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}
.knopf:hover  { background: var(--farbe-marke-hell); }
.knopf:active { transform: translateY(1px); }
.knopf:focus-visible {
  outline: 3px solid var(--farbe-marke);
  outline-offset: 3px;
}
.knopf__symbol {
  flex: none;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  fill: currentColor;
}

.nur-vorlesen {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.kopf {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--kopf-hoehe);
  padding-inline: 10px;
  background: var(--farbe-kopf);
  color: var(--farbe-weiss);
}
.kopf__inhalt {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1420px;
  margin-inline: auto;
}
.kopf__logo img { width: 199px; height: 64px; object-fit: contain; }

.kopf__nav { margin-left: auto; }
.kopf__liste {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
}
.kopf__liste a {
  display: block;
  padding-block: 15px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  color: var(--farbe-weiss);
}
.kopf__liste a:hover { text-decoration: underline; }

.kopf__sozial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 8px;
}
.kopf__sozial a { display: block; width: 20px; }
.kopf__sozial svg { width: 20px; height: 20px; fill: currentColor; }

.kopf__schalter { display: none; }

.nach-oben {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #000000;
  color: var(--farbe-weiss);
  cursor: pointer;
}
.nach-oben[hidden] { display: none; }
.nach-oben:focus-visible { outline: 3px solid var(--farbe-marke); outline-offset: 2px; }

.fuss {
  padding: 60px var(--rand-seite);
  background: linear-gradient(135deg, var(--farbe-grau-hell) 0%, var(--farbe-grau-dunkel) 100%);
  color: var(--farbe-text);
}
.fuss__inhalt {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: var(--breite-inhalt);
  margin-inline: auto;
}
.fuss__logo img { width: 300px; height: 64px; object-fit: contain; }
.fuss__sozial {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
.fuss__sozial a { color: var(--farbe-icon); }
.fuss__sozial svg { width: 20px; height: 20px; fill: currentColor; }
.fuss ul > li + li { margin-top: 4px; }
.fuss a:hover { text-decoration: underline; }

.hero {
  position: relative;
  min-height: 675px;
  padding: 118px var(--rand-seite) 60px;
  background: url('/assets/img/seite/img-0952.webp') center / cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--farbe-weiss);
  opacity: .85;
  z-index: 0;
}
.hero__inhalt {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(0, 510px);
  justify-content: space-between;
  gap: 60px;
  max-width: var(--breite-inhalt);
  margin-inline: auto;
}
.hero__titel {
  margin-top: 46px;
  color: var(--farbe-marke);
}
.hero__text { margin-top: 30px; }
.hero__ort {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 22px;
  line-height: 36.3px;
}
.hero__ort svg { width: 20px; height: 20px; fill: var(--farbe-marke); }

.hero__video-karte {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 510 / 287;
  padding: 0;
  border: 0;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}
.hero__video-karte img { width: 100%; height: 100%; object-fit: cover; }
.hero__video-karte:focus-visible { outline: 3px solid var(--farbe-marke); outline-offset: 3px; }
.hero__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--farbe-marke);
  color: var(--farbe-weiss);
  display: grid;
  place-items: center;
  transition: transform .18s ease;
}
.hero__video-karte:hover .hero__play { transform: scale(1.08); }
.hero__play svg { width: 24px; height: 24px; fill: currentColor; margin-left: 4px; }
.hero__iframe-halter { aspect-ratio: 510 / 287; border-radius: 15px; overflow: hidden; }
.hero__iframe-halter iframe { width: 100%; height: 100%; border: 0; }

.hero__knopf { margin-top: 20px; text-align: center; }
.hero__stellen {
  margin-top: 20px;
  text-align: center;
}

.vorstellung {
  padding: 0 var(--rand-seite) 120px;
  background: url('/assets/img/seite/logo-hintergrund.webp') center / cover no-repeat,
              var(--farbe-weiss);
}
.vorstellung__inhalt {
  display: grid;
  grid-template-columns: minmax(0, 466px) minmax(0, 524px);
  justify-content: space-between;
  gap: 60px;
  max-width: var(--breite-inhalt);
  margin-inline: auto;
}
.vorstellung__foto {
  width: 466px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 466 / 698;
  object-fit: cover;
  border-radius: 15px;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
.vorstellung__text { padding-top: 149px; }
.vorstellung__text h2 { margin-top: 20px; color: var(--farbe-marke); }
.vorstellung__text .vorstellung__flies { margin-top: 19px; }
.vorstellung__knopf {
  margin-top: 100px;
  text-align: center;
}

.erwartung { padding-top: 100px; text-align: center; }
.erwartung h2 { margin-top: 30px; color: var(--farbe-marke); }
.erwartung__karten {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 10px auto 0;
}
.erwartung__karte {
  display: flex;
  flex-direction: column;
  min-height: 494px;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(160deg, #3a3a3a 0%, #000000 70%);
  color: var(--farbe-weiss);
  text-align: center;
}
.erwartung__symbol {
  width: 59px; height: 59px;
  margin-inline: auto;
  border-radius: 50%;
}
.erwartung__karte h3 {
  margin-top: 44px;
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  color: var(--farbe-weiss);
}
.erwartung__punkte {
  margin-top: 53px;
  text-align: left;
  font-size: var(--fs-mini);
  line-height: 23.1px;
}
.erwartung__punkte li {
  position: relative;
  padding-left: 18px;
}
.erwartung__punkte li + li { margin-top: 14px; }
.erwartung__punkte li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--farbe-weiss);
}
.erwartung__flies {
  margin-top: 53px;
  text-align: left;
  font-size: var(--fs-mini);
  line-height: 23.1px;
}
.erwartung__knopf { margin-top: 100px; }

.wachstum {
  position: relative;
  padding: 60px var(--rand-seite) 60px;
  background: linear-gradient(135deg, var(--farbe-grau-hell) 0%, var(--farbe-grau-dunkel) 100%);
  isolation: isolate;
}

.wachstum::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/img/seite/2.webp') center / cover no-repeat;
  opacity: .5;
  z-index: -1;
}
.wachstum__inhalt {
  display: grid;
  grid-template-columns: minmax(0, 466px) minmax(0, 524px);
  justify-content: space-between;
  gap: 46px;
  max-width: var(--breite-inhalt);
  margin-inline: auto;
}
.wachstum__text h2 { margin-top: 30px; color: var(--farbe-marke); }
.wachstum__punkte { margin-top: 30px; }
.wachstum__punkte li {
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-lead);
  line-height: 33px;
}
.wachstum__punkte li + li { margin-top: 20px; }
.wachstum__punkte li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--farbe-marke);
}
.wachstum__foto {
  width: 524px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 524 / 349;
  object-fit: cover;
  border-radius: 15px;
}
.wachstum__knopf {
  margin-top: 100px;
  text-align: center;
}

.passung {
  padding: 60px var(--rand-seite);
  background: url('/assets/img/seite/img-1497.webp') center / cover no-repeat;
}
.passung__inhalt {
  display: grid;
  grid-template-columns: minmax(0, 555px) minmax(0, 555px);
  justify-content: space-between;
  gap: 30px;
  max-width: var(--breite-inhalt);
  margin-inline: auto;
}
.passung__fotos { position: relative; }
.passung__foto1 {
  width: 535px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 535 / 357;
  object-fit: cover;
  border-radius: 15px;
}
.passung__foto2 {
  width: 377px;
  max-width: 70%;
  height: auto;
  aspect-ratio: 377 / 562;
  object-fit: cover;
  border-radius: 15px;
  margin: -100px 0 0 180px;
  position: relative;
  z-index: 2;
}
.passung__text h2 { margin-top: 30px; }
.passung__punkte { margin-top: 37px; }
.passung__punkte li + li { margin-top: 19px; }
.passung__knopf {
  margin-top: 68px;
  text-align: center;
}

.weg { padding: 90px var(--rand-seite) 90px; }
.weg__kopf { max-width: var(--breite-inhalt); margin-inline: auto; }
.weg__kopf h2 { margin-top: 30px; }
.weg__zeit {
  position: relative;
  max-width: var(--breite-inhalt);
  margin: 71px auto 0;
}
.weg__zeit::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: var(--farbe-grau-hell);
}
.weg__schritt {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 480px);
  justify-content: space-between;
  gap: 120px;
}
.weg__schritt + .weg__schritt { margin-top: 63px; }
.weg__karte {
  grid-column: 1;
  padding: 40px;
  border-radius: 4px;
  background: var(--farbe-grau-hell);
  text-align: right;
}
.weg__schritt--rechts .weg__karte { grid-column: 2; text-align: left; }
.weg__karte h3 {
  font-size: 30px;
  line-height: 39px;
}
.weg__karte p { margin-top: 20px; }
.weg__punkt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--farbe-grau-hell);
  display: grid;
  place-items: center;
  color: var(--farbe-text);
}
.weg__punkt svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.weg__zitat {
  max-width: var(--breite-inhalt);
  margin: 30px auto 0;
  text-align: center;
}
.weg__knopf {
  margin-top: 30px;
  text-align: center;
}

.galerie {
  position: relative;
  padding: 120px var(--rand-seite) 121px;
  background: linear-gradient(135deg, var(--farbe-grau-hell) 0%, var(--farbe-grau-dunkel) 100%);
  isolation: isolate;
  text-align: center;
}
.galerie::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/img/seite/2.webp') center / cover no-repeat;
  opacity: .5;
  z-index: -1;
}
.galerie h2 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
}
.galerie__lead { margin-top: 60px; }
.galerie__raster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: var(--breite-inhalt);
  margin: 61px auto 0;
}
.galerie__raster img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.bewerbung { padding: 73px var(--rand-seite) 83px; }
.bewerbung h2 { text-align: center; }
.bewerbung__inhalt { max-width: var(--breite-inhalt); margin-inline: auto; }
.bewerbung__hinweis { margin-top: 33px; }

.bwb { padding: 127px var(--rand-seite) 117px; }
.bwb__titel {
  font-family: var(--schrift-display);
  font-size: 56px;
  line-height: 78.4px;
  font-weight: 700;
  color: var(--farbe-text);
  text-align: center;
}
.bwb__hinweis {
  margin-top: 43px;
  line-height: 19px;
  text-align: center;
}
.bwb__meldung {
  max-width: var(--breite-inhalt);
  margin: 24px auto 0;
  padding: 16px 20px;
  border-radius: 4px;
  background: var(--farbe-karte);
  text-align: center;
}
.bwb__form {
  max-width: var(--breite-inhalt);
  margin: 37px auto 0;
  padding: 30px;
}
.bwb__falle {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.bwb__punkte {
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.bwb__punkt {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--farbe-weiss);
  border: 1px solid var(--farbe-marke);
  color: var(--farbe-marke);
  font-size: var(--fs-mini);
}
.bwb__punkt--aktiv { background: var(--farbe-marke); color: var(--farbe-weiss); }
.bwb__stufe { margin: 0; padding: 0; border: 0; }
.bwb__feld  { margin-top: 10px; }
.bwb__feld:first-of-type { margin-top: 0; }
.bwb__label {
  display: block;
  font-size: var(--fs-lead);
  line-height: 20px;
  font-weight: 600;
  color: #666666;
}
.bwb__eingabe {
  display: block;
  width: 100%;
  min-height: 40px;
  margin-top: 10px;
  padding: 8px 14px;
  border: 1px solid #D5D8DC;
  border-radius: 4px;
  background: var(--farbe-weiss);
  font-size: var(--fs-body);
}
.bwb__eingabe:focus-visible { outline: 3px solid var(--farbe-marke); outline-offset: 2px; }
.bwb__fehler { display: block; margin-top: 6px; color: #B00020; font-size: var(--fs-mini); }
.bwb__zustimmung { display: flex; gap: 12px; align-items: flex-start; }
.bwb__zustimmung a { text-decoration: underline; }
.bwb__knopfzeile {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.bwb__weiter {
  display: block;
  flex: 1;
  min-height: 40px;
  padding: 0 30px;
  border: 0;
  border-radius: var(--r-knopf);
  background: var(--farbe-marke);
  color: var(--farbe-weiss);
  font-family: var(--schrift-display);
  font-size: var(--fs-lead);
  line-height: 20px;
  cursor: pointer;
}
.bwb__weiter:hover { background: var(--farbe-marke-hell); }

.bwb__weiter[hidden] { display: none; }

.bwb__zurueck {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--farbe-marke);
  color: var(--farbe-marke);
}
.bwb__zurueck:hover { background: var(--farbe-marke); color: var(--farbe-weiss); }

.dnk {
  padding: 70px var(--rand-seite);
  background: #F2F2F2;
  text-align: center;
}
.dnk__titel {
  color: var(--farbe-text);
  font-family: var(--schrift-display);
  font-size: var(--fs-h1-unter);
  line-height: var(--lh-h1-unter);
  font-weight: 400;
}
.dnk__titel--zwei { margin-top: 20px; }
.dnk__bild {
  width: 403px;
  max-width: 100%;
  height: auto;
  margin: 54px auto 0;
  border-radius: var(--r-karte);
}
.dnw {
  padding: 100px var(--rand-seite) 42px;
  background: var(--farbe-weiss);
}
.dnw__inhalt {
  display: grid;
  grid-template-columns: 550px 550px;
  gap: 20px;
  justify-content: space-between;
  max-width: var(--breite-inhalt);
  margin-inline: auto;
}
.dnw__text h2 {
  color: #606060;
  font-family: var(--schrift-display);
  font-size: var(--fs-h1-unter);
  line-height: 65px;
  font-weight: 400;
}
.dnw__text p { margin-top: 20px; font-size: var(--fs-lead); line-height: 33px; }
.dnw__karte {
  padding: 24px;
  border-radius: 4px;
  background: #FAFAFA;
}
.dnw__knopf { margin-top: 16px; }
.dnk__schluss {
  max-width: var(--breite-inhalt);
  margin: 60px auto 76px;
  padding-inline: var(--rand-seite);
  font-size: var(--fs-lead);
  line-height: 33px;
  text-align: center;
}

.persoenlich { padding: 60px var(--rand-seite) 106px; }
.persoenlich__inhalt {
  display: grid;
  grid-template-columns: minmax(0, 554px) minmax(0, 524px);
  justify-content: space-between;
  gap: 60px;
  max-width: var(--breite-inhalt);
  margin-inline: auto;
}
.persoenlich__foto {
  width: 554px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 554 / 843;
  object-fit: cover;
}
.persoenlich__text { padding-top: 93px; }
.persoenlich__text h2 { margin-top: 30px; }
.persoenlich__text .persoenlich__flies { margin-top: 30px; }
.persoenlich__flies p + p { margin-top: 20px; }
.persoenlich__knopf { margin-top: 60px; }
.persoenlich__frage {
  margin-top: 30px;
  text-align: center;
  max-width: 281px;
}

.whatsapp { padding: 90px var(--rand-seite) 90px; }
.whatsapp__inhalt { max-width: var(--breite-inhalt); margin-inline: auto; }
.whatsapp__bild {
  width: 810px;
  max-width: 100%;
  height: auto;
  margin: 79px auto 0;
}
.whatsapp__knopf {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 1240px) {
  .fuss__inhalt        { max-width: 100%; }
  .hero__inhalt        { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .vorstellung__inhalt { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .vorstellung__foto   { width: 100%; }
  .wachstum__inhalt    { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .wachstum__foto      { width: 100%; }
  .passung__inhalt     { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .passung__foto1      { width: 100%; }
  .passung__foto2      { width: 70%; margin: -60px 0 0 auto; }
  .erwartung__karten   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .erwartung__karte    { min-height: 0; }
  .weg__schritt        { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 100px; }
  .galerie__raster     { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .persoenlich__inhalt { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .persoenlich__foto   { width: 100%; }
  .dnw__inhalt         { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root {
    --fs-h1-unter: 30px;
    --lh-h1-unter: 42px;
    --fs-h2:      32px;
    --lh-h2:    41.6px;
    --fs-h3:      28px;
    --lh-h3:    36.4px;
    --fs-h5:      26px;
    --lh-h5:    31.2px;
    --fs-body:    18px;
    --lh-body:  29.7px;
    --rand-seite: 30px;
    --kopf-hoehe: 100px;
  }
  .kicker { font-size: 18px; line-height: 18px; }
  .kopf__nav { display: none; }
  .kopf__nav--offen {
    display: block;
    position: absolute;
    left: 0; right: 0; top: 100%;
    padding: 16px 20px;
    background: var(--farbe-kopf);
    z-index: 20;
  }
  .kopf__nav--offen .kopf__liste { flex-direction: column; align-items: flex-start; gap: 14px; }
  .kopf__schalter {
    display: inline-flex;
    margin-left: auto;
    padding: 8px;
    border: 0;
    background: none;
    cursor: pointer;
  }
  .fuss__inhalt { grid-template-columns: minmax(0, 1fr); gap: 28px; text-align: center; }
  .fuss__logo img { margin-inline: auto; }
  .fuss__sozial { justify-content: center; }

  .hero { min-height: 0; padding-block: 100px 119px; }
  .hero__inhalt { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .hero__titel { margin-top: 0; }

  .hero__ort { margin-top: 48px; font-size: 18px; line-height: 29.7px; }

  .hero__seite { display: flex; flex-direction: column; }
  .hero__stellen { order: 1; margin-top: 0; text-align: left; }
  .hero__knopf   { order: 2; margin-top: 79px; }
  .hero__video-karte, .hero__iframe-halter { order: 3; margin-top: 60px; }

  .vorstellung { padding-bottom: 60px; }
  .vorstellung__inhalt { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .vorstellung__foto { margin-top: -70px; }
  .vorstellung__text { padding-top: 30px; }
  .vorstellung__text .vorstellung__flies { margin-top: 21px; }
  .vorstellung__knopf { margin-top: 29px; }

  .erwartung { padding-top: 30px; }

  .erwartung__karten { grid-template-columns: minmax(0, 1fr); gap: 19px; margin-top: 46px; }
  .erwartung__karte  { min-height: 489px; }
  .erwartung__karte h3 { text-align: left; }
  .erwartung__punkte { margin-top: 40px; font-size: 17px; line-height: 28.1px; }
  .erwartung__flies  { margin-top: 40px; font-size: 17px; line-height: 28.1px; text-align: left; }
  .erwartung__symbol { margin-inline: 0; }
  .erwartung__knopf  { margin-top: 44px; }

  .wachstum__inhalt { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .wachstum__punkte li { font-size: 18px; line-height: 29.7px; }
  .wachstum__knopf  { margin-top: 40px; }

  .passung__inhalt { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .passung__knopf  { margin-top: 107px; }
  .passung__fotos  { padding-bottom: 0; }
  .passung__foto2  { margin-top: -60px; }

  .weg { padding-top: 60px; }
  .weg__zeit { margin-top: 60px; }
  .weg__zeit::before { left: 20px; }
  .weg__zeit { margin-right: -30px; }
  .weg__schritt { grid-template-columns: minmax(0, 1fr); gap: 0; padding-left: 70px; }
  .weg__karte,
  .weg__schritt--rechts .weg__karte { grid-column: 1; text-align: left; padding: 40px; }
  .weg__karte h3 { font-size: 20px; line-height: 26px; }
  .weg__karte p { font-size: 16px; line-height: 26.4px; }
  .weg__punkt { left: 20px; width: 40px; height: 40px; }
  .weg__schritt + .weg__schritt { margin-top: 60px; }
  .weg { padding-bottom: 60px; }
  .weg__zitat { margin-top: 30px; }
  .weg__knopf { margin-top: 30px; }

  .galerie { padding-block: 60px; }
  .galerie__lead   { margin-top: 30px; }
  .galerie__raster { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 40px; }

  .bewerbung { padding-block: 60px; }

  .persoenlich { padding-bottom: 60px; }
  .persoenlich__inhalt { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .persoenlich__text { padding-top: 0; }
  .persoenlich__text .persoenlich__flies { margin-top: 30px; }
  .persoenlich__knopf { margin-top: 40px; }
  .persoenlich__frage { max-width: none; }

  .whatsapp { padding-block: 60px; }
  .whatsapp__bild { margin-top: 40px; }

  .whatsapp__knopf .knopf { white-space: nowrap; margin-inline: -14px; }

  .bewerbung__hinweis { text-align: center; }
  .bwb            { padding: 63px 30px 57px; }
  .bwb__titel     { font-size: 36px; line-height: 50.4px; }
  .bwb__hinweis   { margin-top: 41px; font-size: 18px; line-height: 18px; }
  .bwb__form      { margin-top: 38px; padding: 30px 15px; }
  .bwb__punkte    { gap: 0; }
  .bwb__label     { font-size: 15px; }
  .bwb__knopfzeile { flex-direction: column; align-items: center; }
  .bwb__weiter     { flex: none; width: 268px; max-width: 100%; }
  .dnk            { padding: 45px 10px 45px; }
  .dnk__titel     { font-size: 33px; line-height: 46.2px; }
  .dnk__titel--zwei { font-size: 21px; line-height: 29.4px; margin-top: 21px; }
  .dnk__bild      { width: 100%; max-width: 300px; margin-top: 54px; }
  .dnw            { padding: 110px 10px 0; }
  .dnw__inhalt    { grid-template-columns: minmax(0, 1fr); gap: 40px; text-align: center; }
  .dnw__text h2   { font-size: 30px; line-height: 39px; }
  .dnk__schluss   { margin-block: 60px 80px; font-size: 16px; line-height: 26.4px; }
}

@media (max-width: 360px) {
  .kopf__logo img { width: 160px; height: auto; }
  .erwartung__karte { min-height: 0; }

  .whatsapp__knopf .knopf { white-space: normal; margin-inline: 0; }

  .bwb__weiter { width: 100%; }
  .weg__zeit { margin-right: 0; }

  .weg__schritt { padding-left: 50px; }
  .weg__karte,
  .weg__schritt--rechts .weg__karte { padding: 24px; }
  .weg__karte h3 { hyphens: auto; overflow-wrap: break-word; }
}
