

:root {
  --color-bg: #ffffff;
  --color-surface: #F0F0F0;
  --color-surface-2: #FAFAFA;
  --color-text: #161616;
  --color-muted: #5B5755;
  --color-primary: #AC003A;
  --color-primary-dark: #8a002f;

  --color-accent: #AC003A;
  --color-grey-band: #5C5A5D;
  --color-dark: #161616;
  --color-border: #e2e8f0;

  --font-body: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 12px;
  --radius-sm: 3px;
  --radius-btn: 5px;
  --shadow: 0 4px 20px rgba(15, 23, 42, .08);

  --container: 1140px;
  --container-narrow: 760px;

  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
}

@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-Italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-BoldItalic.woff2') format('woff2'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('/assets/fonts/Lato-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }

img, picture, video { max-width: 100%; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);

  font-size: 14px;
  line-height: 25.2px;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; color: var(--color-text); }
h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 var(--space-2); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
p  { color: var(--color-text); }

a { color: var(--color-primary); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }

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

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

.text-center { text-align: center; }

.announce {
  background: var(--color-accent);
  color: #fff;
  font-size: .95rem;
}
.announce__inner { display: flex; align-items: center; gap: var(--space-2); padding-block: .5rem; }
.announce p { margin: 0; color: #fff; flex: 1; }
.announce a { color: #fff; text-decoration: underline; }
.announce__close {
  background: none; border: 0; color: #fff;
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0 .25rem;
}
.announce__close:hover { opacity: .8; }

.stats-section { padding-block: var(--space-4); background: var(--color-surface); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); text-align: center; }
.stat__value { display: block; font-size: 2rem; font-weight: 800; color: var(--color-primary); }
.stat__label { display: block; color: var(--color-muted); font-size: .95rem; }

.badges { list-style: none; padding: 0; margin: var(--space-2) 0 var(--space-3); display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.badge { background: var(--color-surface); color: var(--color-primary); border: 1px solid var(--color-border); border-radius: 999px; padding: .35rem .8rem; font-size: .9rem; font-weight: 600; }
.badge--award { background: #fffbeb; color: #92400e; border-color: #fde68a; }

.whatsapp-fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.whatsapp-fab:hover { background: #1ebe5a; }

.admin-bar { border-bottom: 2px solid var(--color-primary); }
.admin-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-2); flex-wrap: wrap;
  padding-top: .6rem; padding-bottom: .6rem;
}
.admin-nav { display: flex; flex-wrap: wrap; align-items: center; gap: .25rem .35rem; }
.admin-nav a {
  padding: .45rem .7rem; border-radius: var(--radius-sm, 6px);
  font-size: .9rem; font-weight: 500; color: var(--color-text); text-decoration: none;
  white-space: nowrap;
}
.admin-nav a:hover { background: var(--color-surface, #f1f5f9); }
.admin-nav a.is-active { background: var(--color-primary); color: #fff; }
.admin-nav__logout { color: var(--color-muted); }

.admin-nav__burger { display: none; }
.admin-nav__checkbox { display: none; }

@media (max-width: 720px) {
  .admin-bar__inner { flex-wrap: nowrap; }
  .admin-nav__burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
    width: 42px; height: 42px; padding: 9px; cursor: pointer; flex: 0 0 auto;
    border: 1px solid var(--color-border); border-radius: var(--radius-sm, 6px);
  }
  .admin-nav__burger span {
    display: block; height: 2px; width: 100%; background: var(--color-text);
    border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
  }

  .admin-nav {
    display: none; order: 3; width: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    margin: .5rem -1rem -0.6rem; padding: .25rem 1rem .5rem;
    border-top: 1px solid var(--color-border);
  }
  .admin-nav a { padding: .75rem .25rem; border-bottom: 1px solid var(--color-border); border-radius: 0; font-size: 1rem; }
  .admin-nav a:last-child { border-bottom: 0; }
  .admin-nav a.is-active { background: transparent; color: var(--color-primary); font-weight: 700; }

  .admin-nav__checkbox:checked ~ .admin-nav { display: flex; }
  .admin-nav__checkbox:checked ~ .admin-nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .admin-nav__checkbox:checked ~ .admin-nav__burger span:nth-child(2) { opacity: 0; }
  .admin-nav__checkbox:checked ~ .admin-nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
@media (prefers-reduced-motion: reduce) { .admin-nav__burger span { transition: none; } }

.btn--sm { padding: .35rem .75rem; font-size: .8rem; }

.dash__progress { margin: var(--space-3) 0; }
.dash__bar { height: 10px; border-radius: 999px; background: var(--color-border); overflow: hidden; margin-bottom: .4rem; }
.dash__bar span { display: block; height: 100%; background: var(--color-primary); transition: width .3s ease; }

.dash__groups { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
@media (min-width: 760px) { .dash__groups { grid-template-columns: 1fr 1fr; align-items: start; } }
.dash__group { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; overflow: hidden; }
.dash__group--done { border-color: #16a34a; }
.dash__group-head { display: flex; align-items: center; gap: .6rem; padding: .75rem var(--space-3); border-bottom: 1px solid var(--color-border); background: var(--color-surface, #f8fafc); }
.dash__group-head h2 { margin: 0; font-size: 1rem; flex: 1; }
.dash__count { font-size: .8rem; font-weight: 700; color: var(--color-muted); padding: .1rem .5rem; border-radius: 999px; background: #fff; border: 1px solid var(--color-border); }
.dash__count.is-done { color: #fff; background: #16a34a; border-color: #16a34a; }
.dash__list { list-style: none; margin: 0; padding: .35rem var(--space-3) var(--space-2); display: flex; flex-direction: column; }
.dash__item { display: flex; align-items: center; gap: .6rem; padding: .45rem 0; border-bottom: 1px solid var(--color-border); }
.dash__item:last-child { border-bottom: 0; }
.dash__mark { flex: 0 0 1.3rem; width: 1.3rem; height: 1.3rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; color: #fff; background: #cbd5e1; border: 1px solid #cbd5e1; }
.dash__item--done .dash__mark { background: #16a34a; border-color: #16a34a; }
.dash__item--todo .dash__mark { background: #fff; border-color: #cbd5e1; }
.dash__label { flex: 1; font-size: .9rem; }
.dash__item--todo .dash__label { color: var(--color-text); }
.dash__optional, .dash__manual { display: inline-block; margin-left: .4rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .03em; padding: .05rem .35rem; border-radius: 4px; vertical-align: middle; }
.dash__optional { color: var(--color-muted); background: var(--color-surface, #f1f5f9); }
.dash__manual { color: #b45309; background: #fef3c7; }
.dash__toggle { margin: 0; }

.trk__topbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; }
.trk__topbar h1 { margin: 0; }
.trk__ranges { display: flex; gap: .35rem; flex-wrap: wrap; }
.trk__intro { color: var(--color-muted); font-size: .9rem; }

.trk__controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; margin: .75rem 0 .25rem; }
.trk__daterange { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin: 0; font-size: .85rem; }
.trk__daterange input[type="date"] { padding: .35rem .5rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm, 6px); font: inherit; width: auto; }
.trk__daterange label { font-weight: 600; }
.trk__refresh { display: flex; align-items: center; gap: .6rem; font-size: .85rem; }
.trk__auto { display: inline-flex; align-items: center; gap: .35rem; color: var(--color-muted); white-space: nowrap; }
.trk__auto input { width: auto; margin: 0; }

.trk__realtime { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; padding: .65rem var(--space-2); margin: .75rem 0; border: 1px solid var(--color-border); border-left: 4px solid #16a34a; border-radius: var(--radius); background: #f0fdf4; font-size: .9rem; }
.trk__realtime__main { display: inline-flex; align-items: center; gap: .35rem; flex-wrap: wrap; }
.trk__realtime__pages { flex: 1 1 100%; }
.trk__realtime__time { margin-left: auto; font-variant-numeric: tabular-nums; }
.trk__sep { color: var(--color-muted); }
.trk__live { width: 9px; height: 9px; border-radius: 50%; background: #16a34a; margin-right: .3rem; flex: 0 0 auto; animation: trkpulse 2s ease-in-out infinite; }
@keyframes trkpulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .trk__live { animation: none; } }
@media (max-width: 640px) {
  .trk__controls { flex-direction: column; align-items: stretch; }
  .trk__refresh { justify-content: space-between; }
  .trk__realtime__time { margin-left: 0; flex: 1 1 100%; }
  .trk__daterange input[type="date"] { flex: 1 1 8rem; min-width: 0; }
}
.trk__meta { color: var(--color-muted); font-size: .82rem !important; }
.trk__kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin: var(--space-3) 0; }
@media (min-width: 520px) { .trk__kpis { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--space-2); } }
@media (max-width: 519px) {
  .trk__kpi { padding: .6rem .5rem; }
  .trk__kpi strong { font-size: 1.35rem; }
  .trk__topbar h1 { font-size: 1.5rem; }
  .trk__ranges { width: 100%; }
  .trk__ranges .btn { flex: 1 1 auto; text-align: center; }
}
.trk__kpi { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; padding: var(--space-2) var(--space-3); text-align: center; }
.trk__kpi strong { display: block; font-size: 1.8rem; line-height: 1.1; color: var(--color-primary); }
.trk__kpi span { font-size: .8rem; color: var(--color-muted); }
.trk__trend { display: inline-block; margin-top: .35rem; font-size: .72rem; font-weight: 700; padding: .1rem .45rem; border-radius: 999px; white-space: nowrap; }
.trk__trend--up { color: #15803d; background: #dcfce7; }
.trk__trend--down { color: #b91c1c; background: #fee2e2; }
.trk__trend--flat { color: var(--color-muted); background: var(--color-surface, #f1f5f9); }

.trk__legend { display: flex; flex-wrap: wrap; gap: 1.1rem; font-size: .82rem; margin: .3rem 0 .6rem; color: var(--color-text); }
.trk__lg { display: inline-flex; align-items: center; }
.trk__lg::before { content: ""; display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: .4rem; }
.trk__lg--pv::before { background: var(--color-primary); }
.trk__lg--app::before { background: #d97706; }
.trk__lg--visitors::before { width: 14px; height: 0; border-radius: 0; border-top: 3px solid #7c3aed; }
.trk__chartlabel { font-size: .78rem; color: var(--color-muted); margin: .5rem 0 .25rem; }
.trk__chart { position: relative; display: flex; align-items: flex-end; gap: 2px; height: 140px; padding: .5rem; border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; overflow-x: auto; }
.trk__chart--app { height: 64px; }

.trk__line { position: absolute; left: .5rem; top: .5rem; right: .5rem; bottom: .5rem; width: calc(100% - 1rem); height: calc(100% - 1rem); pointer-events: none; }
.trk__line polyline { fill: none; stroke: #7c3aed; stroke-width: 2px; vector-effect: non-scaling-stroke; stroke-linejoin: round; stroke-linecap: round; }
.trk__col { flex: 1 0 4px; min-width: 4px; height: 100%; display: flex; align-items: flex-end; }
.trk__colbar { display: block; width: 100%; background: var(--color-primary); border-radius: 2px 2px 0 0; min-height: 2px; }
.trk__col:hover .trk__colbar { background: var(--color-primary-dark, #0b5c55); }
.trk__chart--app .trk__colbar { background: #d97706; }
.trk__chart--app .trk__col:hover .trk__colbar { background: #b45309; }

.trk__cols { display: grid; grid-template-columns: 1fr; gap: var(--space-2); margin: .5rem 0 var(--space-3); }
@media (min-width: 760px) {
  .trk__cols { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .trk__cols--three { grid-template-columns: repeat(3, 1fr); }
  .trk__cols--wide { grid-template-columns: 1fr; }
}
.trk__panel { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; padding: var(--space-2) var(--space-3); }
.trk__panel h3 { margin: 0 0 .5rem; font-size: 1rem; }
.trk__list { width: 100%; border-collapse: collapse; font-size: .88rem; }
.trk__list td { padding: .3rem 0; border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.trk__list tr:last-child td { border-bottom: 0; }
.trk__k { word-break: break-word; padding-right: .5rem !important; }
.trk__v { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; width: 3rem; }
.trk__barcell { width: 40%; padding: 0 .5rem !important; }
.trk-mini { display: block; height: 7px; border-radius: 999px; background: var(--color-border); overflow: hidden; }
.trk-mini__fill { display: block; height: 100%; background: var(--color-primary); }
.trk__stats { display: flex; flex-wrap: wrap; gap: var(--space-2); margin: var(--space-2) 0; }
.trk__stat { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; padding: .6rem 1rem; min-width: 8rem; }
.trk__stat strong { display: block; font-size: 1.5rem; color: var(--color-primary); }
.trk__stat span { font-size: .8rem; color: var(--color-muted); }
.trk__tablewrap { overflow-x: auto; }
.trk__table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.trk__table th, .trk__table td { text-align: left; padding: .55rem .6rem; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.trk__table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; color: var(--color-muted); }

.kmp__table th.num, .kmp__table td.num { text-align: right; white-space: nowrap; }
.kmp__table tbody tr:hover { background: var(--color-surface); }
.kmp__table td strong { color: var(--color-primary); }

.kmp__flag {
  display: inline-block; margin-left: .4rem; padding: .05rem .4rem;
  font-size: .68rem; font-weight: 700; border-radius: 999px;
  color: #92400e; background: #fef3c7; border: 1px solid #fde68a;
  cursor: help;
}

.kmp__hint {
  border: 1px solid var(--color-border); border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm); background: var(--color-surface);
  padding: var(--space-2) var(--space-3); margin: var(--space-3) 0;
}
.kmp__hint h3 { margin: 0 0 .4rem; font-size: 1rem; }
.kmp__hint p { margin: 0; font-size: .9rem; }
.kmp__hint code { font-size: .85em; background: #fff; padding: .05rem .3rem; border-radius: 4px; border: 1px solid var(--color-border); }
.kmp__hint--warn { border-left-color: #b45309; background: #fffbeb; }

.kmp__note { margin: var(--space-4) 0 var(--space-3); font-size: .88rem; }
.kmp__note h3 { font-size: 1rem; margin: 0 0 .5rem; }
.kmp__note ul { margin: 0; padding-left: 1.1rem; color: var(--color-muted); }
.kmp__note li { margin-bottom: .5rem; }
.kmp__note code { font-size: .85em; background: var(--color-surface); padding: .05rem .3rem; border-radius: 4px; }

.kmp__refresh { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); margin-top: var(--space-2); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-2);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-5); }
.section--accent { background: var(--color-surface); }
.section__title { text-align: center; margin-bottom: var(--space-4); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-1) var(--space-2);
  z-index: 1000;
}
.skip-link:focus { left: var(--space-1); top: var(--space-1); text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 64px;
}
.logo { font-weight: 800; font-size: 1.15rem; color: var(--color-accent); margin-right: auto; }
.logo span { color: var(--color-primary); }
.header-actions { display: flex; align-items: center; gap: var(--space-1); }
.header-cta { padding: .55rem 1rem; display: inline-flex; align-items: center; gap: .4rem; }

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin: 0; padding: 0;
}
.site-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: .875rem;
  white-space: nowrap;
}
.site-nav a[aria-current="page"] { color: var(--color-primary); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px; height: 2px;
  background: var(--color-accent);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle__bar { top: 21px; }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after  { top: 7px; }

.hero {
  padding-block: var(--space-5);
  background: linear-gradient(180deg, var(--color-surface), var(--color-bg));
  text-align: center;
}
.hero--compact { padding-block: var(--space-4); }
.hero__lead {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1.15rem;
}
.hero__actions {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-3);
}

.btn {
  display: inline-block;
  padding: .8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }
.btn:hover { text-decoration: none; }
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-dark); }
.btn--ghost { border-color: var(--color-border); color: var(--color-accent); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }

.grid { display: grid; gap: var(--space-3); }
.grid--3 { grid-template-columns: 1fr; }

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow);
}
.card__icon { font-size: 2rem; margin-bottom: var(--space-1); }
.card h3 { margin: 0 0 var(--space-1); }

.cta { text-align: center; }
.cta h2 { margin-bottom: var(--space-1); }

.job { display: flex; flex-direction: column; }
.job__meta { font-size: .9rem; color: var(--color-primary); font-weight: 600; margin: 0 0 var(--space-1); }
.job .btn { margin-top: auto; align-self: flex-start; }

.card__link {
  display: inline-block;
  margin-top: var(--space-1);
  font-weight: 600;
}
.card__link::after { content: " \2192"; }
.card__icon--large { font-size: 3rem; margin-bottom: var(--space-2); }
.breadcrumb { font-size: .9rem; color: var(--color-muted); margin: 0 0 var(--space-1); }
.lead { font-size: 1.15rem; color: var(--color-text); }
.cta--inline { display: flex; gap: var(--space-1); flex-wrap: wrap; margin-top: var(--space-3); text-align: left; }

.tel-link { font-weight: 700; white-space: nowrap; }

.booking-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  text-align: center;
  margin-bottom: var(--space-2);
}
.booking-box h2 { margin: 0 0 var(--space-1); }
.booking-box p { margin: 0 0 var(--space-2); }
.booking-or { text-align: center; color: var(--color-muted); margin: 0 0 var(--space-2); }

.praxis-info { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
.praxis-info__col h3 { margin: 0 0 var(--space-1); }
.praxis-info__note { font-size: .9rem; color: var(--color-muted); }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .4rem 0; border-bottom: 1px solid var(--color-border); }
.hours th { font-weight: 600; color: var(--color-accent); width: 45%; }
.hours td { color: var(--color-muted); }

.social { display: flex; gap: var(--space-1); margin: 0 0 .5rem; }
.social__link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
}
.social__link:hover { background: var(--color-primary); color: #fff; }

.map-consent {
  margin-top: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}
.map-consent__inner { padding: var(--space-3); text-align: center; }
.map-consent__text { margin: 0 auto var(--space-2); max-width: 52ch; font-size: .95rem; color: var(--color-muted); }
.map-consent__frame { display: block; width: 100%; height: 360px; border: 0; }

.zone-title {
  margin: var(--space-4) 0 var(--space-2);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--color-primary);
}
.zone-title:first-child { margin-top: 0; }

.course { display: flex; flex-direction: column; }
.course__schedule { font-weight: 700; color: var(--color-primary); margin: 0 0 .25rem; }
.course__level { color: var(--color-muted); font-size: .9rem; margin: 0 0 var(--space-1); }
.course .btn { margin-top: auto; align-self: flex-start; }

.downloads__list { list-style: none; padding: 0; margin: var(--space-2) 0 0; display: grid; gap: var(--space-1); }
.downloads__item a {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2);
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: var(--color-bg); color: var(--color-text);
}
.downloads__item a:hover { border-color: var(--color-primary); text-decoration: none; }
.downloads__icon { font-size: 1.5rem; }
.downloads__item small { display: block; color: var(--color-muted); font-weight: 400; }

.location { padding-bottom: var(--space-4); margin-bottom: var(--space-4); border-bottom: 1px solid var(--color-border); }
.location:last-child { border-bottom: 0; margin-bottom: 0; }
.location__name { margin: 0 0 var(--space-2); }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 1.75rem; margin-bottom: .5rem; }
.checklist li::before {
  content: "\2713";
  position: absolute; left: 0;
  color: var(--color-primary); font-weight: 700;
}

.team__quals { list-style: none; padding: 0; margin: var(--space-1) 0 0; display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; }
.team__quals li {
  font-size: .8rem;
  background: var(--color-surface);
  color: var(--color-primary);
  padding: .2rem .6rem;
  border-radius: 999px;
}

.review {
  margin: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow);
}
.review p { margin: 0 0 var(--space-1); color: var(--color-text); font-style: italic; }
.review__author { color: var(--color-muted); font-weight: 600; }

.faq { display: grid; gap: var(--space-1); }
.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  padding: 0 var(--space-2);
}
.faq__q {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-accent);
  padding: var(--space-2) 0;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before { content: "+ "; color: var(--color-primary); font-weight: 700; }
.faq__item[open] .faq__q::before { content: "\2013 "; }
.faq__a { padding-bottom: var(--space-2); }
.faq__a p { margin: 0; }

.form { margin-top: var(--space-3); }
.form__hint { font-size: .9rem; margin-top: 0; }
.form__group { margin-bottom: var(--space-3); }
.form__group label { display: block; font-weight: 600; margin-bottom: var(--space-1); }
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: .75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--color-bg);
  color: var(--color-text);
}
.form__group input[type="file"] { padding: .5rem; background: var(--color-surface); }
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus { border-color: var(--color-primary); outline: none; }
.form__optional { font-weight: 400; color: var(--color-muted); font-size: .9rem; }
.form__group input[aria-invalid="true"],
.form__group textarea[aria-invalid="true"] { border-color: #dc2626; }
.form__group--check { display: flex; gap: var(--space-1); align-items: flex-start; }
.form__group--check label { font-weight: 400; margin: 0; }
.form__group--check input { width: auto; margin-top: .35rem; }
.req { color: #dc2626; }
.form__error { display: block; color: #dc2626; font-size: .9rem; margin-top: .35rem; }
.form__note { margin-top: var(--space-2); font-weight: 600; }
.form__note--ok { color: #15803d; }
.form__note--err { color: #dc2626; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal h2 { margin-top: var(--space-4); }
.legal ul { color: var(--color-muted); }
.legal__hint {
  margin-top: var(--space-4);
  padding: var(--space-2);
  background: var(--color-surface);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
}

.site-footer {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-4);
  margin-top: var(--space-5);
}
.footer-inner {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
.footer-brand__name { font-weight: 700; color: var(--color-accent); }
.site-footer p { margin: 0 0 .25rem; }
.footer-nav__title {
  font-size: .95rem;
  color: var(--color-accent);
  margin: 0 0 var(--space-1);
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin: 0; padding: 0;
}
.footer-nav a { color: var(--color-muted); }
.footer-nav a:hover { color: var(--color-primary); }
.link-btn {
  background: none; border: 0; padding: 0;
  color: var(--color-muted); cursor: pointer;
  font: inherit;
}
.link-btn:hover { color: var(--color-primary); text-decoration: underline; }

.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: var(--space-2);
  max-width: 760px;
  margin-inline: auto;
}
.steps__item {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-2);
}
.steps__item h3 { margin: 0 0 .25rem; }
.steps__item p { margin: 0; }
.steps__num {
  flex: 0 0 auto;
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}

.team { text-align: center; }
.team__avatar {
  width: 72px; height: 72px;
  margin: 0 auto var(--space-1);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}
.team__role { margin: 0; font-size: .95rem; }
.team__photo {
  width: 140px; height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto var(--space-1);
}

@media (min-width: 720px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .steps__item { padding: var(--space-3); }
  .praxis-info { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; align-items: start; }
}

@media (max-width: 719px) {
  .nav-toggle { display: block; }
  .header-cta { padding: .5rem .7rem; font-size: .9rem; }
  .header-cta__label { display: none; }
  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    display: none;
  }
  .site-nav[data-open="true"] { display: block; }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: var(--space-1);
  }
  .site-nav a {
    display: block;
    padding: var(--space-1) var(--space-2);
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

.consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: var(--color-bg);
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 -6px 24px rgba(15, 23, 42, .14);
}
.consent[hidden] { display: none; }
.consent__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-2) var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.consent__text { flex: 1 1 26rem; }
.consent__title { margin: 0 0 .35rem; font-size: 1.05rem; }
.consent__text p { margin: 0; font-size: .9rem; line-height: 1.55; color: var(--color-muted); max-width: 75ch; }
.consent__actions {
  display: flex;
  gap: var(--space-1);
  flex: 0 0 auto;
  margin-left: auto;
}

.consent__actions .btn { min-width: 10rem; justify-content: center; }

body.has-consent-banner .whatsapp-fab { display: none; }

@media (max-width: 640px) {
  .consent__inner { padding: var(--space-2) var(--space-2) var(--space-3); }
  .consent__actions { width: 100%; margin-left: 0; }
  .consent__actions .btn { flex: 1 1 0; min-width: 0; }
}

.form__notice {
  margin: 0 0 var(--space-2);
  padding: .7rem var(--space-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: .92rem;
}
.form__notice--ok  { border-color: #047857; background: #ecfdf5; color: #065f46; }
.form__notice--err { border-color: #b91c1c; background: #fef2f2; color: #991b1b; }

.kmp__pixel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  background: var(--color-surface);
}
.kmp__pixel-status { margin: 0 0 var(--space-3); font-size: .95rem; }
.kmp__pixel-status code { font-size: .9em; background: #fff; padding: .05rem .35rem; border-radius: 4px; border: 1px solid var(--color-border); }

.kmp__badge {
  display: inline-block; margin-right: .5rem;
  padding: .1rem .55rem; border-radius: 999px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.kmp__badge--on  { background: #047857; color: #fff; }
.kmp__badge--off { background: var(--color-muted); color: #fff; }

.kmp__pixel-form { display: flex; align-items: flex-start; gap: var(--space-2); flex-wrap: wrap; }
.kmp__pixel-form .form__group { flex: 1 1 20rem; margin-bottom: 0; }
.kmp__pixel-form .form__hint { display: block; margin-top: .4rem; color: var(--color-muted); }
.kmp__pixel-form .btn { margin-top: 1.85rem; }

.kmp__pixel-conflict {
  margin: var(--space-2) 0 0;
  padding: .6rem var(--space-2);
  border-left: 4px solid #b45309; background: #fffbeb;
  border-radius: var(--radius-sm); font-size: .9rem;
}
.kmp__pixel-info { margin-top: var(--space-3); border-top: 1px solid var(--color-border); padding-top: var(--space-2); }
.kmp__pixel-info h3 { margin: 0 0 .5rem; font-size: 1rem; }
.kmp__pixel-info ul { margin: 0; padding-left: 1.1rem; font-size: .88rem; color: var(--color-muted); }
.kmp__pixel-info li { margin-bottom: .5rem; }
.kmp__pixel-info code { font-size: .85em; background: #fff; padding: .05rem .3rem; border-radius: 4px; border: 1px solid var(--color-border); }
.kmp__pixel-warn { margin: var(--space-2) 0 0; font-size: .88rem; color: var(--color-text); font-weight: 600; }

@media (max-width: 640px) {
  .kmp__pixel-form .btn { margin-top: 0; width: 100%; }
}

.site-header { background: #fff; border-bottom: 0; }
.header-inner { min-height: 136px; display: flex; align-items: center; gap: var(--space-3); }
.site-header .logo { margin-right: auto; padding: 0; }
.site-header .logo img { width: 193px; height: 84px; object-fit: contain; }
.site-nav > ul { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; padding: 20px 6px;
  font-size: 20px; line-height: 20px; font-weight: 400;
  color: var(--color-text); text-decoration: none; white-space: nowrap;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--color-primary); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--color-primary); }
.site-nav .has-sub { position: relative; }
.sub-caret { display: inline-block; width: 0; height: 0; margin-left: .35rem; vertical-align: middle;
  border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; }
.sub-menu {
  position: absolute; left: 0; top: 100%; z-index: 60; min-width: 260px;
  list-style: none; margin: 0; padding: .35rem 0; background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.14); display: none;
}
.sub-menu li a { font-size: 16px; line-height: 24px; padding: .5rem 1rem; white-space: normal; }
.sub-menu .sub-gruppe > a { font-weight: 600; color: var(--color-primary); }
.has-sub:hover > .sub-menu, .has-sub:focus-within > .sub-menu { display: block; }
.nav-toggle { display: none; }

.bild-band { position: relative; isolation: isolate; background: #333 center/cover no-repeat; }
.bild-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: var(--band-bild); background-size: cover; background-position: center;
}
.bild-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--band-overlay, #AC003A); opacity: var(--band-deckung, .8);
}
.bild-band, .bild-band h1, .bild-band h2, .bild-band h3, .bild-band p, .bild-band li { color: #fff; }

.unterseite-hero { min-height: 900px; display: flex; align-items: center; padding-inline: 6%; }
.unterseite-hero .container { padding-inline: 0; }
.unterseite-hero h1 { font-size: 40px; line-height: 40px; font-weight: 400; margin: 0 0 var(--space-3); }
.unterseite-hero p { font-size: 20px; line-height: 30px; font-weight: 300; margin: 0 0 var(--space-4); max-width: 46ch; }

.btn-rot, .btn-weiss, .btn-grau {
  display: inline-block; padding: 12px 24px; border: 0; border-radius: var(--radius-sm);
  font-size: 22px; line-height: 22px; font-weight: 400; text-align: center;
  text-decoration: none; cursor: pointer; font-family: inherit;
}
.btn-rot   { background: var(--color-primary); color: #fff; }
.btn-weiss { background: #fff; color: var(--color-primary); }
.btn-grau  { background: var(--color-grey-band); color: #fff; }
.btn-rot:hover, .btn-grau:hover { background: var(--color-primary-dark); color: #fff; text-decoration: none; }
.btn-weiss:hover { background: #f2f2f2; text-decoration: none; }

.text-abschnitt { padding-block: 86px; background: #fff; }
.text-abschnitt h2 { font-size: 40px; line-height: 40px; font-weight: 400; color: var(--color-primary); text-align: center; margin: 0; }
.text-abschnitt .trenner { width: 100px; height: 2px; background: var(--color-primary); margin: var(--space-3) auto var(--space-4); border: 0; }
.text-abschnitt p { font-size: 20px; line-height: 30px; font-weight: 300; text-align: center; margin: 0 0 var(--space-3); }
.text-abschnitt p strong { font-weight: 600; }
.text-abschnitt ul { font-size: 20px; line-height: 30px; font-weight: 300; max-width: 62ch; margin: 0 auto var(--space-3); text-align: left; }
.text-abschnitt--links h2, .text-abschnitt--links p { text-align: left; }
.text-abschnitt--links .trenner { margin-inline: 0; }

.partner-band { background: var(--color-grey-band); color: #fff; text-align: center; min-height: 280px; display: flex; align-items: center; }
.partner-band h2 { font-size: 40px; line-height: 40px; font-weight: 600; color: #fff; margin: 0 0 var(--space-2); }
.partner-band p  { font-size: 20px; line-height: 36px; color: #fff; margin: 0; }
.partner-band__logo { display: inline-block; margin-top: var(--space-3); }
.partner-band__logo img { width: 187px; height: 104px; object-fit: contain; }
.partner-band--slim { min-height: 156px; }
.partner-band--slim h2 { margin-bottom: .35rem; }

.site-footer { background: var(--color-grey-band); color: #fff; min-height: 216px; padding-block: 28px; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
.site-footer p, .site-footer a, .site-footer span { font-size: 14px; line-height: 25.2px; color: #fff; }
.site-footer a { text-decoration: underline; }
.footer-col p { margin: 0; }
.social { display: flex; gap: .75rem; margin: 0; }
.social__link { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; color: #fff; }

.ai-hinweis { display: flex; align-items: center; gap: .5rem; font-size: 13px; line-height: 20px; color: #E9E9E9; margin: var(--space-3) 0 0; }
.ai-hinweis img { flex: none; width: 18px; height: 18px; }
.ai-hinweis span { font-size: 13px; line-height: 20px; color: #E9E9E9; }

.start-hero { position: relative; min-height: 765px; display: flex; align-items: center; overflow: hidden; padding-inline: 10px; }
.start-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.start-hero__abdeckung { position: absolute; inset: 0; background: rgba(0,0,0,.35); z-index: -1; }
.start-hero h1 { font-size: 70px; line-height: 77px; font-weight: 400; color: #fff; margin: 0 0 var(--space-4); }
.start-hero .btn-rot { font-size: 15px; line-height: 15px; font-weight: 500; padding: 12px 24px; }

.vm-band { display: grid; grid-template-columns: 1fr 1fr; }
.vm-kachel { min-height: 450px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-3); padding: 10px; text-align: center; }
.vm-kachel--bild { position: relative; isolation: isolate; background: center/cover no-repeat; }
.vm-kachel--bild::after { content: ""; position: absolute; inset: 0; z-index: -1; background: #000; opacity: .35; }
.vm-kachel--grau { background: var(--color-grey-band); }
.vm-kachel h2 { font-size: 40px; line-height: 40px; font-weight: 400; color: #fff; margin: 0; }
.vm-kachel .btn-rot { font-size: 22px; line-height: 22px; }

.start-intro { padding-block: 86px; text-align: center; }
.start-intro h2 { font-size: 40px; line-height: 40px; font-weight: 400; color: var(--color-primary); margin: 0 0 var(--space-2); }
.start-intro h3 { font-size: 18px; line-height: 25.2px; font-weight: 600; color: #333333; margin: 0 0 var(--space-3); }
.start-intro p { font-size: 18px; line-height: 27px; font-weight: 400; margin: 0 0 var(--space-3); }

.wir-band { background: var(--color-primary); color: #fff; padding-block: 60px; text-align: center; }
.wir-band h2 { font-size: 60px; line-height: 60px; font-weight: 400; color: #fff; margin: 0 0 var(--space-2); }
.wir-band p  { font-size: 20px; line-height: 36px; color: #fff; margin: 0 auto var(--space-4); max-width: 70ch; }

.reviews-band { background: var(--color-grey-band); color: #fff; min-height: 340px; display: flex; align-items: center; text-align: center; }
.reviews-band h2 { font-size: 40px; line-height: 40px; font-weight: 400; color: #fff; margin: 0 0 var(--space-2); }
.reviews-band p  { font-size: 20px; line-height: 30px; color: #fff; margin: 0 auto; max-width: 80ch; }

.video-facade { position: relative; max-width: 828px; margin: 0 auto; }
.video-facade__start { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; position: relative; }
.video-facade img { width: 100%; height: auto; }
.video-facade__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 78px; height: 55px; border-radius: 12px; background: rgba(0,0,0,.72); }
.video-facade__play::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-40%,-50%); border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff; }
.video-facade__hinweis { display: block; margin-top: .5rem; font-size: 14px; line-height: 20px; color: inherit; }
.video-facade iframe { width: 100%; aspect-ratio: 16/9; border: 0; }

.geschichte { padding-block: 86px; text-align: center; }
.geschichte h2 { font-size: 60px; line-height: 66px; font-weight: 500; color: var(--color-text); margin: 0 0 var(--space-4); }
.geschichte p { font-size: 20px; line-height: 36px; font-weight: 300; margin: 0 auto var(--space-3); max-width: 78ch; }
.geschichte p strong { font-weight: 600; }

.zeitleiste { position: relative; max-width: 1000px; margin: 0 auto; display: grid; gap: 30px; }
.zeitleiste::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--color-primary); transform: translateX(-50%); }
.zeitleiste__punkt { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.zeitleiste__karte { background: var(--color-surface); padding: 40px; }
.zeitleiste__punkt:nth-child(odd)  .zeitleiste__karte { grid-column: 1; text-align: right; }
.zeitleiste__punkt:nth-child(even) .zeitleiste__karte { grid-column: 2; text-align: left; }
.zeitleiste__jahr { font-size: 30px; line-height: 54px; color: var(--color-text); }
.zeitleiste__karte h3 { font-size: 18px; line-height: 25.2px; font-weight: 600; color: var(--color-primary); margin: 0; }
.zeitleiste__karte p { font-size: 14px; line-height: 25.2px; margin: 0; }

.team-band { background: var(--color-dark); color: #fff; padding-block: 60px; }
.team-band h2 { font-size: 60px; line-height: 66px; font-weight: 500; color: #fff; text-align: center; margin: 0 0 var(--space-4); }
.team-raster { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.team-kachel { position: relative; min-height: 450px; display: flex; flex-direction: column; justify-content: flex-end; padding: 10px; text-align: center;
  background: center/cover no-repeat; isolation: isolate; }
.team-kachel::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.72) 100%); }
.team-kachel h2 { font-size: 20px; line-height: 20px; font-weight: 600; color: #fff; margin: 0 0 .6rem; }
.team-kachel h3 { font-size: 18px; line-height: 18px; font-weight: 600; color: #fff; margin: 0; }

.ausstattung { padding-block: 86px; }
.ausstattung__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center; }
.ausstattung h2 { font-size: 40px; line-height: 40px; font-weight: 400; color: var(--color-primary); margin: 0 0 var(--space-3); }
.ausstattung p { font-size: 20px; line-height: 30px; font-weight: 300; margin: 0 0 var(--space-3); }

.fragen-band { background: var(--color-primary); color: #fff; min-height: 346px; display: flex; align-items: center; text-align: center; }
.fragen-band h2 { font-size: 40px; line-height: 40px; font-weight: 400; color: #fff; margin: 0 0 var(--space-2); }
.fragen-band p  { font-size: 20px; line-height: 30px; font-weight: 300; color: #fff; margin: 0 0 .35rem; }
.fragen-band .btn-weiss { margin-top: var(--space-3); }

.leistungs-gruppe { padding-block: var(--space-5); }
.leistungs-gruppe h2 { font-size: 40px; line-height: 40px; font-weight: 400; color: var(--color-primary); text-align: center; margin: 0 0 var(--space-2); }
.leistungs-gruppe > .container > p { font-size: 20px; line-height: 30px; font-weight: 300; text-align: center; margin: 0 0 var(--space-4); }
.leistungs-raster { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.leistungs-kachel { position: relative; isolation: isolate; min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3); text-align: center; background: center/cover no-repeat; }
.leistungs-kachel::after { content: ""; position: absolute; inset: 0; z-index: -1; background: #000; opacity: .45; }
.leistungs-kachel h3 { font-size: 23px; line-height: 32.2px; font-weight: 600; color: #fff; margin: 0; }
.leistungs-kachel a.mehr { font-size: 15px; line-height: 15px; font-weight: 500; color: #fff; text-decoration: underline; }

.kontakt-hero { background: var(--color-primary); color: #fff; padding-block: 86px; }
.kontakt-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: start; }
.kontakt-hero h1 { font-size: 40px; line-height: 40px; font-weight: 400; color: #fff; margin: 0 0 var(--space-3); }
.kontakt-hero p  { font-size: 20px; line-height: 30px; font-weight: 300; color: #fff; margin: 0; }
.kontakt-karte { background: #fff; padding: 30px; }
.kontakt-karte, .kontakt-karte p, .kontakt-karte label, .kontakt-karte legend { color: var(--color-text); font-size: 14px; line-height: 25.2px; }
.kontakt-karte .intro { margin: 0 0 var(--space-3); }
.kontakt-karte fieldset { border: 0; margin: 0 0 var(--space-2); padding: 0; }
.kontakt-karte legend { font-size: 14px; line-height: 25.2px; padding: 0; }
.kontakt-karte .auswahl { display: grid; gap: .1rem; margin-top: .35rem; }
.kontakt-karte .auswahl label { display: flex; align-items: center; gap: .5rem; font-weight: 400; }
.kontakt-karte .btn-rot { width: 269px; max-width: 100%; font-size: 12px; line-height: 12px; font-weight: 500; padding: 14px 20px; }

.anfahrt { padding-block: 86px; }
.anfahrt h2 { font-size: 40px; line-height: 40px; font-weight: 400; color: var(--color-primary); margin: 0 0 var(--space-3); }
.anfahrt p { font-size: 20px; line-height: 30px; font-weight: 300; margin: 0 0 var(--space-2); }
.anfahrt strong { font-weight: 600; }
.anfahrt__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: start; }
.kontaktdaten { padding-block: var(--space-5); }
.kontaktdaten h2 { font-size: 40px; line-height: 40px; font-weight: 400; color: var(--color-primary); margin: 0 0 var(--space-3); }
.kontaktdaten ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.kontaktdaten li, .kontaktdaten a { font-size: 20px; line-height: 36px; color: var(--color-text); }

.zeiten { padding-block: 86px; }
.zeiten h1 { font-size: 40px; line-height: 40px; font-weight: 400; color: var(--color-primary); margin: 0 0 var(--space-4); }
.zeiten__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: start; }
.zeiten p { font-size: 20px; line-height: 30px; font-weight: 300; margin: 0 0 var(--space-3); }
.zeiten strong { font-weight: 600; }

.faq-seite { padding-block: 86px; }
.faq-seite h1 { font-size: 60px; line-height: 72px; font-weight: 400; color: var(--color-primary); margin: 0 0 var(--space-4); }
.faq-seite__inner { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-5); align-items: start; }
.faq-liste details { border-bottom: 1px solid var(--color-border); }
.faq-liste summary { cursor: pointer; list-style: none; padding: 26px 0; font-size: 30px; line-height: 36px; color: var(--color-text); }
.faq-liste summary::-webkit-details-marker { display: none; }
.faq-liste summary::after { content: "+"; float: right; color: var(--color-primary); font-weight: 400; }
.faq-liste details[open] summary::after { content: "–"; }
.faq-liste p { font-size: 20px; line-height: 30px; font-weight: 300; margin: 0 0 var(--space-3); }
.faq-seite aside p { font-size: 20px; line-height: 30px; font-weight: 300; color: #1C1C1C; }

.danke-band { background: var(--color-grey-band); color: #fff; min-height: 757px; display: flex; align-items: center; text-align: center; }
.danke-band h1 { font-size: 50px; line-height: 50px; font-weight: 600; color: #fff; margin: 0 0 var(--space-2); }
.danke-band img { margin: var(--space-4) auto 0; width: 403px; height: auto; }
.danke-weg { padding-block: var(--space-5); }
.danke-weg__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center; }
.danke-weg h2 { font-size: 50px; line-height: 50px; font-weight: 600; color: var(--color-text); margin: 0 0 var(--space-2); }
.danke-weg p { font-size: 20px; line-height: 36px; margin: 0; }
.danke-schluss { padding-bottom: var(--space-5); text-align: center; }
.danke-schluss p { font-size: 20px; line-height: 36px; margin: 0 auto; max-width: 70ch; }

.karriere-hero { min-height: 900px; display: flex; align-items: flex-start; padding-top: 60px; text-align: center; }
.karriere-hero h1 { font-size: 45px; line-height: 45px; font-weight: 600; color: #fff; margin: 0 0 .5rem; }
.karriere-hero__mwd { font-size: 27px; line-height: 27px; font-weight: 600; color: #fff; margin: 0 0 var(--space-3); }
.karriere-hero p.einleitung { font-size: 20px; line-height: 36px; color: #fff; margin: 0 auto var(--space-3); max-width: 62ch; }
.karriere-hero .btn-rot { font-size: 15px; line-height: 15px; font-weight: 500; padding: 12px 24px; border-radius: var(--radius-btn); }
.karriere-hero__bilder { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2); margin-top: var(--space-4); }
.karriere-hero__bilder img { width: 100%; height: 309px; object-fit: cover; }

.karriere-wir { background: var(--color-primary); color: #fff; padding: 60px 0 90px; text-align: center; }
.karriere-wir h2 { font-size: 60px; line-height: 60px; font-weight: 400; color: #fff; margin: 0 0 var(--space-2); }
.karriere-wir p { font-size: 20px; line-height: 36px; color: #fff; margin: 0 auto var(--space-4); max-width: 70ch; }

.karten-band { padding-block: var(--space-5); }
.karten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); align-items: stretch; }
.info-karte { background: #fff; border-radius: 12px; padding: 36px 97px 36px 36px; box-shadow: var(--shadow); }
.info-karte__icon { width: 115px; height: 115px; margin-bottom: var(--space-2); }
.info-karte h3 { font-size: 28px; line-height: 44px; font-weight: 500; color: var(--color-text); margin: 0 0 var(--space-2); }
.info-karte h4 { font-size: 16px; line-height: 24px; font-weight: 600; color: var(--color-muted); margin: var(--space-2) 0 0; }
.info-karte p, .info-karte li { font-size: 16px; line-height: 24px; font-weight: 300; color: var(--color-muted); margin: 0; }
.info-karte ul { margin: 0; padding-left: 1.1rem; }
.karten-band .btn-rot { font-size: 18px; line-height: 14px; font-weight: 500; padding: 25px 50px; border-radius: var(--radius-btn); color: #F2FCFE; }

.ansprech-band { padding-block: var(--space-5); }

.ansprech-band__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0; align-items: center; }
.ansprech-band__inner > * { min-width: 0; }
.ansprech-band__inner img { width: 100%; height: 483px; object-fit: cover; }
.ansprech-band__box { background: var(--color-primary); border-radius: var(--radius-btn); padding: var(--space-4); text-align: center; }
.ansprech-band h2 { font-size: 35px; line-height: 35px; font-weight: 600; color: #fff; margin: 0 0 var(--space-3); }
.ansprech-band p { font-size: 18px; line-height: 32.4px; color: #fff; margin: 0 0 var(--space-2); }
.ansprech-band p strong { font-weight: 600; }
.ansprech-band .btn-rot { font-size: 18px; line-height: 14px; font-weight: 500; padding: 25px 50px; border-radius: var(--radius-btn); color: #F2FCFE; }

.prozess-band { background: var(--color-primary); color: #fff; padding-block: var(--space-5); }
.prozess-band__kicker { font-size: 20px; line-height: 24px; font-weight: 500; color: #fff; margin: 0 0 .5rem; }
.prozess-band h2 { font-size: 42px; line-height: 44px; font-weight: 500; color: #fff; margin: 0 0 var(--space-4); }
.prozess-schritte { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.prozess-schritt h3 { font-size: 26px; line-height: 31.2px; font-weight: 400; color: #fff; margin: 0 0 var(--space-2); }
.prozess-schritt p { font-size: 16px; line-height: 28.8px; font-weight: 300; color: #fff; margin: 0; }
.prozess-band .btn-grau { display: inline-block; margin-top: var(--space-4); font-size: 18px; line-height: 14px; font-weight: 500; padding: 25px 50px; border-radius: var(--radius-btn); color: #F2FCFE; }

.bereit-band { background: var(--color-grey-band); color: #fff; padding-block: var(--space-5); text-align: center; }
.bereit-band h2 { font-size: 52px; line-height: 52px; font-weight: 500; color: #fff; margin: 0 0 var(--space-3); }
.bereit-band p { font-size: 16px; line-height: 28.8px; font-weight: 300; color: #fff; margin: 0 auto var(--space-4); max-width: 60ch; }
.bereit-band .btn-rot { font-size: 18px; line-height: 14px; font-weight: 500; padding: 25px 50px; border-radius: var(--radius-btn); color: #F2FCFE; }

.bewerbung-band { padding-block: var(--space-5); background: #fff; }
.bewerbung-band__logo { display: block; width: 168px; height: auto; margin: 0 auto var(--space-3); }
.bewerbung-band h2 { font-size: 42px; line-height: 70px; font-weight: 600; color: #000; text-align: center; margin: 0; }
.bewerbung-band__hinweis { font-size: 20px; line-height: 30px; font-weight: 300; font-style: italic; color: #000; text-align: center; margin: 0 0 var(--space-4); }

.funnel__schritt { border: 0; margin: 0 0 var(--space-3); padding: 11px; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.funnel__anzeige { font-size: 16px; line-height: 24px; font-weight: 600; color: var(--color-muted); padding: 0; grid-column: 1 / -1; }
.funnel .feld { grid-column: 1 / -1; display: flex; flex-direction: column; gap: .35rem; }
.funnel .feld--halb { grid-column: span 1; }
.funnel label { font-size: 20px; line-height: 36px; font-weight: 600; color: #666666; }
.funnel input, .funnel select { font: inherit; font-size: 16px; padding: .6rem .75rem; border: 1px solid #cfcfcf; border-radius: var(--radius-sm); background: #fff; color: var(--color-text); }
.funnel .feld--check label { display: flex; align-items: flex-start; gap: .6rem; font-size: 16px; line-height: 24px; font-weight: 400; color: var(--color-text); }
.funnel .feld--check input { width: auto; }
.funnel button { font-size: 15px; line-height: 15px; font-weight: 500; padding: 12px 24px; border-radius: var(--radius-sm); }

.funnel--js .funnel__schritt:not(.ist-aktiv) { display: none; }
.hp-feld { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-meldung { padding: .8rem 1rem; border-radius: var(--radius-sm); margin-bottom: var(--space-3); font-size: 16px; }
.form-meldung--ok { background: #e7f6ec; color: #14532d; }
.form-meldung--fehler { background: #fdecec; color: #7f1d1d; }

.container--schmal { max-width: 1094px; margin-inline: auto; }

.rechtstext { padding-block: var(--space-5); }
.rechtstext h1 { font-size: 40px; line-height: 40px; font-weight: 400; color: var(--color-primary); margin: 0 0 var(--space-4); }
.rechtstext h2 { font-size: 24px; line-height: 32px; font-weight: 600; color: var(--color-text); margin: var(--space-4) 0 var(--space-2); }
.rechtstext h3 { font-size: 20px; line-height: 28px; font-weight: 600; margin: var(--space-3) 0 var(--space-1); }
.rechtstext p, .rechtstext li { font-size: 16px; line-height: 26px; }
.rechtstext ul { padding-left: 1.2rem; }
.rechtstext code { font-size: .95em; background: var(--color-surface); padding: .1em .3em; border-radius: 3px; }
.rechtstext__hinweis { margin-top: var(--space-4); padding: var(--space-2); background: var(--color-surface); border-left: 4px solid var(--color-primary); }

.rechtstext .text-center p { font-size: 20px; line-height: 36px; font-weight: 300; }

@media (max-width: 1023px) {
  .header-inner { min-height: 90px; flex-wrap: wrap; }
  .site-header .logo img { width: 150px; height: 65px; }
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: #fff; cursor: pointer; }
  .nav-toggle__bar, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; height: 2px; background: var(--color-text); border-radius: 2px; }
  .site-nav { display: none; width: 100%; }
  .site-nav[data-open="true"] { display: block; }
  .site-nav > ul { flex-direction: column; align-items: stretch; }
  .site-nav a { padding: .75rem 0; font-size: 18px; border-bottom: 1px solid var(--color-border); }
  .sub-menu { position: static; display: block; box-shadow: none; padding-left: 1rem; }

  .vm-band, .ausstattung__inner, .kontakt-hero__inner, .anfahrt__inner, .zeiten__inner,
  .faq-seite__inner, .danke-weg__inner, .ansprech-band__inner { grid-template-columns: minmax(0, 1fr); }
  .team-raster, .leistungs-raster, .karten-grid, .prozess-schritte, .karriere-hero__bilder { grid-template-columns: 1fr; }
  .zeitleiste::before { left: 8px; }
  .zeitleiste__punkt { grid-template-columns: 1fr; gap: 0; padding-left: 32px; }
  .zeitleiste__punkt:nth-child(odd) .zeitleiste__karte,
  .zeitleiste__punkt:nth-child(even) .zeitleiste__karte { grid-column: 1; text-align: left; }
  .funnel__schritt { grid-template-columns: 1fr; }
  .funnel .feld--halb { grid-column: 1 / -1; }
  .info-karte { padding: 28px; }
}

@media (max-width: 640px) {

  .unterseite-hero { min-height: 520px; text-align: center; padding-inline: 5%; }
  .unterseite-hero p { max-width: none; }
  .start-hero { min-height: 520px; text-align: center; }
  .start-hero h1 { font-size: 40px; line-height: 46px; }
  .karriere-hero { min-height: auto; padding-block: 40px; }
  .karriere-hero h1 { font-size: 34px; line-height: 38px; }
  .wir-band h2, .geschichte h2, .team-band h2, .faq-seite h1 { font-size: 40px; line-height: 46px; }
  .bereit-band h2, .danke-band h1, .danke-weg h2 { font-size: 34px; line-height: 40px; }
  .prozess-band h2, .bewerbung-band h2 { font-size: 32px; line-height: 38px; }
  .text-abschnitt, .start-intro, .geschichte, .anfahrt, .zeiten, .faq-seite { padding-block: 48px; }
  .karriere-hero__bilder img { height: 220px; }
  .ansprech-band__inner img { height: 260px; }
  .danke-band img { width: 100%; }
}

.site-nav .sub-menu { display: none; }
.site-nav .has-sub:hover > .sub-menu,
.site-nav .has-sub:focus-within > .sub-menu { display: block; }

.skip-link { background: #fff; color: #333333; font-size: 14px; line-height: 25.2px; border: 1px solid var(--color-border); }

.site-footer a { text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { text-decoration: underline; }

.bild-band {
  position: relative; isolation: isolate;
  background-color: var(--band-overlay, #AC003A);
  background-image: var(--band-bild);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bild-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--band-dunkel, #161616);
  opacity: var(--band-deckung, .5);
  background-image: none;
}
.bild-band::after { content: none; }

.unterseite-hero { min-height: 100vh; padding-inline: 6%; }

@media (max-width: 640px) {
  .unterseite-hero h1 { font-size: 30px; line-height: 30px; }
}

.unterseite-hero h1 { margin: 0 0 64px; }
.unterseite-hero p  { margin: 0 0 40px; }

@media (max-width: 1023px) {
  .unterseite-hero { min-height: 0; padding: 10% 0; }
  .unterseite-hero h1 { margin-bottom: 48px; }
}
@media (max-width: 767px) {
  .unterseite-hero { margin-top: 20%; }
}

.site-footer { padding-block: 28px; }
.footer-inner { gap: 20px; }

.site-footer a { font-weight: 400; }

.kontakt-hero { min-height: 1152px; padding-block: 86px; }
.kontakt-karte {

  width: 614px; max-width: 100%;
  background: rgba(255,255,255,.88);
}
.kontakt-karte p, .kontakt-karte label, .kontakt-karte legend { font-weight: 400; }

.kontakt-karte a { color: #000; text-decoration: underline; }
.kontakt-karte .btn-rot {

  padding: 0 20px; height: 40px; line-height: 40px; letter-spacing: 1.2px;
}
.kontakt-karte .feld { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.kontakt-karte textarea { font: inherit; font-size: 14px; padding: .5rem; border: 1px solid #cfcfcf; border-radius: var(--radius-sm); }
.kontakt-karte input[type="text"], .kontakt-karte input[type="tel"], .kontakt-karte input[type="email"] {
  font: inherit; font-size: 14px; padding: .5rem; border: 1px solid #cfcfcf; border-radius: var(--radius-sm);
}

.anfahrt h2, .kontaktdaten h2 { margin: 0 0 84px; }
.anfahrt p { margin: 0 0 47px; }
.anfahrt p:last-child { margin-bottom: 0; }
.kontaktdaten ul { gap: 0; }
.kontaktdaten li { margin: 0; }

@media (max-width: 640px) {
  .kontakt-hero { min-height: 0; padding-block: 40px; }
  .kontakt-hero h1 { font-size: 30px; line-height: 30px; }
  .anfahrt h2, .kontaktdaten h2, .zeiten h1 { margin-bottom: 40px; }
}

.danke-band__satz { font-size: 50px; line-height: 50px; font-weight: 600; color: #fff; margin: 0; }
.danke-band__satz strong { font-weight: 600; }
.danke-weg h2, .danke-weg p { text-align: left; }

@media (max-width: 640px) {
  .header-inner { min-height: 69px; }
  .site-header .logo img { width: 114px; height: 50px; }
  .danke-band { min-height: 0; padding-block: 40px; }
  .danke-band h1, .danke-band__satz { font-size: 33px; line-height: 33px; }
  .danke-weg h2, .danke-weg p, .danke-weg { text-align: center; }
  .danke-weg h2 { font-size: 33px; line-height: 33px; }
}

.info-karte h3 { letter-spacing: -1px; }

.ausstattung .btn-rot { padding-inline: 37px; }

.kontakt-karte { width: min(614px, 100%); }

.info-karte p { font-size: 16px; line-height: 24px; font-weight: 300; color: var(--color-muted); margin: 0 0 4px; }
.info-karte p strong { font-weight: 600; }

.prozess-band__kicker { letter-spacing: 3px; }
.bereit-band h2 { line-height: 44px; }

.karriere-hero { min-height: 900px; }

.ansprech-band__inner { gap: 0; }
.ansprech-band__box { width: min(720px, 100%); padding: var(--space-4) var(--space-3); }

.text-abschnitt strong, .geschichte strong { font-weight: 600; }

.text-abschnitt h4 { font-size: 17px; line-height: 25.2px; font-weight: 600; color: #333333; margin: var(--space-3) 0 .5rem; }
.text-abschnitt h4 strong { font-weight: 600; }

.geschichte h2 { letter-spacing: -2px; }
.geschichte p { font-weight: 300; }

.zeitleiste__jahr { font-size: 30px; line-height: 54px; text-align: center; }
.zeitleiste__karte p:not(.zeitleiste__jahr) { font-weight: 400; }

.team-kachel { width: 316px; max-width: 100%; padding: 0; }
.team-raster { justify-content: center; }
.team-kachel::after { content: none; }
.team-kachel::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.72) 100%);
}

.knopf-band { padding-bottom: var(--space-5); }

.zeitleiste__karte .zeitleiste__jahr {
  font-size: 30px; line-height: 54px; font-weight: 400; text-align: center; margin: 0;
}
.geschichte .zeitleiste__karte p { font-weight: 400; }
.geschichte .zeitleiste__karte .zeitleiste__jahr { font-weight: 400; }

.team-kachel { padding: 10px; }
.team-band h2 { letter-spacing: -2px; }
.team-kachel h2 { letter-spacing: 1.3px; }

@media (max-width: 640px) {
  .geschichte h2, .team-band h2 { font-size: 30px; line-height: 36px; }
  .zeitleiste__karte { padding: 30px; }
}

.text-abschnitt--links h2 { text-align: center; }
.text-abschnitt--links .trenner { margin-inline: auto; }
.text-abschnitt--links p, .text-abschnitt--links ul, .text-abschnitt--links li { text-align: left; }

.text-abschnitt li { margin-bottom: 3px; }

.leistungs-gruppe h2 { margin-bottom: 64px; }
.ausstattung h2 { margin-bottom: 84px; }
.ausstattung p { margin-bottom: 62px; }
.ausstattung p:last-child { margin-bottom: 0; }
.fragen-band p { margin-bottom: 20px; }
.fragen-band p + p { margin-bottom: 52px; }

.rechtstext { text-align: center; }
.rechtstext ul { display: inline-block; text-align: left; }

@media (max-width: 640px) {

  .unterseite-hero { min-height: 710px; }
  .unterseite-hero h1 { margin-bottom: 30px; }

  .start-intro p { font-size: 14px; line-height: 21px; }
  .start-intro h3 { font-size: 14px; line-height: 21px; }

  .faq-liste summary { font-size: 25px; line-height: 30px; }

  .team-band > .container > h2 { font-size: 30px; line-height: 36px; }
  .team-kachel h2 { font-size: 20px; line-height: 20px; }
  .team-kachel h3 { font-size: 18px; line-height: 18px; }

  .zeitleiste__karte { max-width: 296px; }

  .info-karte h3 { font-size: 26px; line-height: 28.6px; }

  .site-footer { padding-block: 60px 28px; }
}

.zeitleiste__karte p:last-child { margin-bottom: 0; }
.zeitleiste__karte h3 { margin: 0 0 4px; }

.geschichte h2 + p { margin-top: 60px; }

.team-kachel { padding: 0 10px; }
.team-kachel h3 { letter-spacing: 1.3px; }

@media (max-width: 640px) {

  .leistungs-gruppe h2 { font-size: 30px; line-height: 30px; margin-bottom: 48px; }

  .leistungs-raster { gap: 14px; }
  .leistungs-kachel { min-height: 250px; }

  .ausstattung { text-align: center; }
  .ausstattung h2 { margin-bottom: 68px; }
  .unterseite-hero h1 { margin-bottom: 48px; }
}

.prozess-band h2, .prozess-schritt h3 { letter-spacing: -1px; }

@media (max-width: 640px) {

  .prozess-band { text-align: center; }
  .prozess-band__kicker { font-size: 16px; line-height: 20px; }
  .prozess-band h2 { font-size: 26px; line-height: 28.6px; }
  .prozess-schritt h3 { font-size: 20px; line-height: 24px; }
  .prozess-schritt p { font-size: 14px; line-height: 25.2px; }
  .karriere-wir h2 { font-size: 40px; line-height: 40px; }
  .ansprech-band h2 { font-size: 30px; line-height: 30px; }
  .karriere-hero h1 { font-size: 34px; line-height: 34px; }

  .funnel label { font-size: 15px; line-height: 27px; }

  .karten-band .btn-rot, .ansprech-band .btn-rot, .bereit-band .btn-rot { width: 312px; max-width: 100%; }
}

h1, h2, h3, h4 { overflow-wrap: break-word; hyphens: auto; }

.social__link { position: relative; }
.social__link::after,
.site-footer .footer-col a::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: max(100%, 44px); height: 44px;
}
.site-footer .footer-col a { position: relative; }
.skip-link { min-height: 44px; display: inline-flex; align-items: center; }

.start-intro a, .text-abschnitt a, .rechtstext a, .faq-seite a, .geschichte a { text-decoration: underline; }
.start-intro a.btn-rot, .text-abschnitt a.btn-rot { text-decoration: none; }

.partner-band       { display: block; min-height: 0; padding: 30px 1rem 10px; }
.partner-band--slim { min-height: 0; padding: 30px 1rem; }
.partner-band h2    { margin: 0 0 20px; line-height: 40px; }
.partner-band p     { margin: 0; line-height: 36px; }
.partner-band__logo { display: block; width: 187px; margin: 40px auto 0; }
.partner-band__logo img { width: 187px; height: 104px; }

.site-footer { margin-top: 0; padding: 39px 0 18px; }
.site-footer p { margin-bottom: 4px; }

@media (max-width: 960px) {
  .partner-band__logo { width: 175px; }
  .partner-band__logo img { width: 175px; height: 98px; }
  .site-footer { padding-top: 69px; }
}
@media (max-width: 960px) {

  .partner-band > .container { max-width: 330px; }
}

@media (min-width: 961px) {
  .site-footer .footer-inner { grid-template-columns: auto 1fr auto; gap: 2rem; align-items: start; }
}

.rechtstext a { color: #333; }

.text-abschnitt { padding-block: 52px 56px; }

@media (max-width: 960px) {
  .text-abschnitt { padding-bottom: 34px; }
  .text-abschnitt .trenner { margin-bottom: var(--space-3); }

  .site-footer { padding-top: 51px; }
}

.text-abschnitt + .text-abschnitt { padding-top: 0; }

.text-abschnitt:has(+ .text-abschnitt) { padding-bottom: 14px; }

.text-abschnitt h4 { text-align: center; }
.text-abschnitt--links h4 { text-align: left; }

.faq-liste summary { padding: 43px 0; }
.faq-liste summary > span { display: block; font-size: 30px; line-height: 36px; }

@media (max-width: 960px) {
  .faq-seite h1 { font-size: 32px; line-height: 38.4px; text-align: center; }
  .faq-liste summary > span { font-size: 25px; line-height: 30px; }
  .faq-seite aside p { text-align: center; }
}

.btn-rot.kontakt-karte__senden { display: flex; align-items: center; justify-content: center;
                                 height: 40px; padding: 0 20px; font-size: 12px; line-height: 12px;
                                 letter-spacing: 1.2px; border: 0; cursor: pointer; }
.kontakt-karte .feld textarea { display: block; height: 45px; padding: 8px 12px; }
.kontakt-anfahrt p strong { display: block; margin-bottom: 24px; }

@media (max-width: 960px) {
  .kontakt-hero h1, .kontakt-hero p,
  .kontakt-anfahrt h2, .kontakt-anfahrt p, .kontakt-daten h2 { text-align: center; }
}

.team-kachel::after { content: none; }
.team-kachel::before { content: ""; position: absolute; inset: 0; z-index: -1;
                       background-image: linear-gradient(rgba(255,255,255,.05) 75%, rgb(172,0,58) 75%); }

@media (max-width: 960px) {
  .team-kachel::before { opacity: .9; }
}

