/* ============================================================
   Basdorf, Lampe & Partner - Design-System
   Statisch, keine externen Ressourcen, Schriften lokal gehostet.
   ============================================================ */

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

:root {
  --blau: #10448c;
  --blau-tief: #0b2f63;
  --blau-nacht: #0e1c33;
  --blau-hell: #6f96cd;
  --ink: #1a1f26;
  --ink-2: #333944;
  --grau: #5b636e;
  --grau-hell: #8b929c;
  --linie: #dde1e7;
  --flaeche: #f4f6f8;
  --flaeche-2: #e9edf1;
  --weiss: #ffffff;

  --font-display: "Archivo", -apple-system, "Segoe UI", sans-serif;
  --font-text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius: 3px;
  --radius-lg: 6px;
  --header-h: 84px;
  --shadow: 0 2px 10px rgba(14, 28, 51, .07);
  --shadow-lg: 0 14px 44px rgba(14, 28, 51, .16);
  --transition: .2s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 720;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.018em;
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); font-weight: 680; }
h4 { font-size: 1.02rem; font-weight: 700; margin: 0 0 .5em; color: var(--ink); letter-spacing: .01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--blau); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blau-tief); }
strong { color: var(--ink); font-weight: 650; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.2rem, 6.5vw, 5.6rem) 0; }
.section--flaeche { background: var(--flaeche); }
.section--dunkel { background: var(--blau-nacht); color: #ccd4de; }
.section--dunkel h2, .section--dunkel h3 { color: #fff; }
.section--dunkel strong { color: #fff; }
.section--dunkel a { color: var(--blau-hell); }

.section-kopf { max-width: 64ch; margin-bottom: clamp(1.8rem, 3.6vw, 2.8rem); }
.section-kopf p { color: var(--grau); font-size: 1.04rem; }
.section--dunkel .section-kopf p { color: #aeb8c4; }

.eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blau);
  margin-bottom: .85rem;
}
.section--dunkel .eyebrow, .hero .eyebrow, .seitenkopf .eyebrow { color: var(--blau-hell); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.55rem;
  min-height: 48px;
  font-family: var(--font-text);
  font-size: 1rem; font-weight: 640;
  white-space: nowrap;
  color: #fff; background: var(--blau);
  border: 1px solid var(--blau);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { background: var(--blau-tief); border-color: var(--blau-tief); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(26,31,38,.35); }
.btn--ghost:hover { background: rgba(26,31,38,.06); color: var(--ink); border-color: var(--ink); }
.hero .btn--ghost, .section--dunkel .btn--ghost, .seitenkopf .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn--ghost:hover, .section--dunkel .btn--ghost:hover, .seitenkopf .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--gross { padding: .95rem 1.9rem; font-size: 1.05rem; }
.btn-reihe { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* ---------- Header ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--blau); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; gap: 1.4rem;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { width: clamp(215px, 24vw, 290px); height: auto; }

.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: inline-block; padding: .55rem .78rem;
  color: var(--ink-2); text-decoration: none;
  font-size: .98rem; font-weight: 560;
  border-radius: var(--radius);
}
.main-nav a:hover { color: var(--blau); background: var(--flaeche); }
.main-nav a[aria-current="page"] { color: var(--blau); font-weight: 660; }
.nav-karriere a {
  color: #fff; background: var(--blau);
  font-weight: 640;
}
.nav-karriere a:hover, .nav-karriere a[aria-current="page"] { color: #fff; background: var(--blau-tief); }

/* Dropdown Leistungen (Desktop) */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ""; display: inline-block; margin-left: .42em; vertical-align: .14em;
  border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor;
}
.nav-dropdown ul {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  list-style: none; margin: 0; padding: .45rem;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-dropdown:hover ul, .nav-dropdown:focus-within ul { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown ul a { display: block; padding: .55rem .75rem; }

.header-kontakt { display: flex; align-items: center; gap: 1rem; margin-left: .4rem; }
.header-tel {
  display: flex; flex-direction: column; align-items: flex-end;
  text-decoration: none; color: var(--ink); line-height: 1.25;
  font-weight: 700; font-size: 1.02rem; white-space: nowrap;
}
.header-tel span { font-size: .72rem; font-weight: 560; color: var(--grau); letter-spacing: .04em; text-transform: uppercase; }
.header-tel:hover { color: var(--blau); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; padding: 0;
  background: none; border: 1px solid var(--linie); border-radius: var(--radius);
  cursor: pointer; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--ink); transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span { top: 22px; }
.nav-toggle span::before { top: -7px; left: 0; right: 0; }
.nav-toggle span::after { top: 7px; left: 0; right: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (Start) ---------- */
.hero { position: relative; display: flex; align-items: center; min-height: min(88vh, 780px); background: var(--blau-nacht); }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(78deg, rgba(9,17,31,.92) 0%, rgba(9,17,31,.62) 46%, rgba(9,17,31,.18) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: clamp(3.4rem, 8vw, 6rem) 0; }
.hero h1 { color: #fff; max-width: 17ch; }
.hero-sub { color: #ccd5df; font-size: clamp(1.05rem, 1.6vw, 1.22rem); max-width: 56ch; }
.hero-fakten {
  display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3.2rem);
  margin-top: clamp(2.2rem, 4.5vw, 3.4rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-fakten div { display: flex; flex-direction: column; gap: .1rem; }
.hero-fakten b { font-family: var(--font-display); font-size: 1.45rem; font-weight: 720; color: #fff; letter-spacing: -.01em; }
.hero-fakten span { font-size: .88rem; color: #a9b4c1; }

/* ---------- Seitenkopf (Unterseiten) ---------- */
.seitenkopf { position: relative; background: var(--blau-nacht); display: flex; align-items: flex-end; min-height: 340px; }
.seitenkopf-media { position: absolute; inset: 0; overflow: hidden; }
.seitenkopf-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.seitenkopf-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(12deg, rgba(9,17,31,.9) 8%, rgba(9,17,31,.35) 70%);
}
.seitenkopf-inner { position: relative; z-index: 1; padding: clamp(2.6rem, 5vw, 3.6rem) 0; }
.seitenkopf h1 { color: #fff; margin-bottom: .3em; }
.seitenkopf p { color: #ccd5df; max-width: 62ch; font-size: 1.06rem; margin: 0; }

/* ---------- Karten ---------- */
.grid { display: grid; gap: clamp(1.2rem, 2.4vw, 1.8rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.karte {
  display: flex; flex-direction: column;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.karte:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; color: inherit; }
.karte-bild { aspect-ratio: 3 / 2; overflow: hidden; background: var(--flaeche-2); }
.karte-bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.karte:hover .karte-bild img { transform: scale(1.045); }
.karte-inhalt { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.karte-inhalt p { color: var(--grau); font-size: .96rem; margin: 0; }
.karte-link { margin-top: auto; padding-top: .9rem; font-weight: 650; font-size: .95rem; color: var(--blau); }
.karte:hover .karte-link { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4.5vw, 4rem); align-items: center; }
.split img { border-radius: var(--radius-lg); width: 100%; height: 100%; object-fit: cover; }
.split--breit { grid-template-columns: 1.15fr 1fr; }

/* ---------- Listen ---------- */
.liste { list-style: none; margin: 1.1rem 0 0; padding: 0; }
.liste li { padding: .78rem 0; border-bottom: 1px solid var(--linie); }
.liste li:first-child { border-top: 1px solid var(--linie); }
.section--dunkel .liste li { border-color: rgba(255,255,255,.14); }
.liste--kompakt li { padding: .5rem 0; }

/* Spec-Tabellenoptik (Technik) */
.spec { margin: 1rem 0 0; }
.spec dt { font-weight: 700; color: var(--ink); padding-top: .9rem; }
.spec dd { margin: .15rem 0 .9rem; color: var(--grau); border-bottom: 1px solid var(--linie); padding-bottom: .9rem; }
.spec dd:last-child { border-bottom: 0; }

/* ---------- Zahlenband ---------- */
.zahlenband { background: var(--blau); color: #fff; padding: clamp(2.2rem, 4.5vw, 3.2rem) 0; }
.zahlenband-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.zahl { display: flex; flex-direction: column; gap: .15rem; }
.zahl b { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 740; letter-spacing: -.015em; line-height: 1; }
.zahl span { font-size: .92rem; color: #bcd0ea; }

/* ---------- Galerie ---------- */
.galerie { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.galerie figure { margin: 0; background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-lg); overflow: hidden; }
.galerie .gal-bild { aspect-ratio: 4 / 3; overflow: hidden; background: var(--flaeche-2); }
.galerie img { width: 100%; height: 100%; object-fit: cover; }
.galerie figcaption { padding: .8rem 1rem .9rem; font-size: .9rem; color: var(--grau); line-height: 1.45; }
.galerie figcaption b { display: block; color: var(--ink); font-size: .95rem; margin-bottom: .1rem; }

/* ---------- Prozess ---------- */
.schritte { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.4vw, 1.8rem); counter-reset: schritt; }
.schritt { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-lg); padding: 1.4rem 1.4rem 1.5rem; }
.section--flaeche .schritt { background: var(--weiss); }
.schritt h3 { counter-increment: schritt; font-size: 1.08rem; margin-bottom: .45em; }
.schritt h3::before { content: counter(schritt) ". "; color: var(--blau); }
.schritt p { color: var(--grau); font-size: .95rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; }
.faq details { border-bottom: 1px solid var(--linie); }
.faq details:first-of-type { border-top: 1px solid var(--linie); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.05rem 2.2rem 1.05rem 0;
  font-weight: 650; color: var(--ink); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--blau); line-height: 1;
  transition: transform var(--transition);
}
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-antwort { padding: 0 0 1.2rem; color: var(--grau); max-width: 68ch; }

/* ---------- Stellen ---------- */
.stelle {
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.4rem;
}
.stelle-kopf { display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem 1.2rem; margin-bottom: .9rem; }
.stelle-kopf h3 { margin: 0; font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.stelle-meta { color: var(--grau); font-size: .92rem; }
.stelle-spalten { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 2.4rem; margin: 1.1rem 0 1.3rem; }
.stelle ul { list-style: none; margin: .4rem 0 0; padding: 0; }
.stelle ul li { padding: .42rem 0; border-bottom: 1px solid var(--flaeche-2); color: var(--grau); font-size: .96rem; }
.stelle ul li:last-child { border-bottom: 0; }

/* ---------- Formular ---------- */
.formular { max-width: 720px; }
.form-feld { margin-bottom: 1.15rem; }
.form-feld label { display: block; font-weight: 640; font-size: .95rem; margin-bottom: .35rem; color: var(--ink); }
.form-feld input, .form-feld select, .form-feld textarea {
  width: 100%;
  padding: .78rem .9rem;
  font: inherit; font-size: 16px;
  color: var(--ink);
  background: var(--weiss);
  border: 1px solid #c3cad3;
  border-radius: var(--radius);
}
.form-feld input:focus, .form-feld select:focus, .form-feld textarea:focus {
  outline: 2px solid var(--blau); outline-offset: 1px; border-color: var(--blau);
}
.form-check { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--grau); margin: 1.1rem 0 1.4rem; }
.form-check input { width: 19px; height: 19px; margin-top: .18rem; flex-shrink: 0; accent-color: var(--blau); }
.form-hinweis { font-size: .92rem; color: var(--grau); }
.form-status { margin-top: 1rem; padding: .95rem 1.1rem; border-radius: var(--radius); display: none; font-size: .97rem; }
.form-status.ok { display: block; background: #e8f3ea; color: #1d5a2a; border: 1px solid #b9dcc1; }
.form-status.fehler { display: block; background: #fdeeec; color: #8c2a1f; border: 1px solid #f0c4bd; }
.hp-feld { position: absolute; left: -9999px; top: -9999px; }

/* ---------- Kontakt-Info ---------- */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 4.5vw, 4rem); align-items: start; }
.kontakt-block { border: 1px solid var(--linie); border-radius: var(--radius-lg); padding: 1.5rem 1.6rem; margin-bottom: 1.2rem; background: var(--weiss); }
.kontakt-block h3 { font-size: 1.05rem; margin-bottom: .6em; }
.kontakt-block p { color: var(--grau); font-size: .98rem; }
.kontakt-zeile { display: flex; gap: .8rem; padding: .45rem 0; }
.kontakt-zeile b { min-width: 76px; color: var(--ink); font-weight: 640; }

/* ---------- CTA-Block ---------- */
.cta-block { text-align: left; }
.cta-block .btn-reihe { margin-top: 1.4rem; }
.cta-trust { margin-top: 1.1rem; color: #aeb8c4; font-size: .92rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blau-nacht); color: #b9c2cd; padding: clamp(2.8rem, 5.5vw, 4.2rem) 0 1.6rem; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.2rem; padding-bottom: 2.2rem; }
.footer-marke { font-family: var(--font-display); font-weight: 720; font-size: 1.25rem; color: #fff; letter-spacing: -.01em; margin-bottom: .5rem; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: .7rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: .22rem 0; }
.site-footer a { color: #b9c2cd; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-unten {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; justify-content: space-between;
  font-size: .88rem; color: #8b95a1;
}
.footer-unten a { color: #8b95a1; }

/* ---------- Karriere: Sticky-Bewerben-Bar (mobil) ---------- */
.bewerben-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none;
  gap: .6rem;
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: var(--weiss);
  border-top: 1px solid var(--linie);
  box-shadow: 0 -6px 24px rgba(14,28,51,.12);
}
.bewerben-bar .btn { flex: 1; }
.bewerben-bar .btn--ghost { flex: 0 0 auto; color: var(--ink); border-color: var(--linie); }
body.hat-bewerben-bar { padding-bottom: 76px; }
@media (min-width: 768px) { .bewerben-bar { display: none !important; } body.hat-bewerben-bar { padding-bottom: 0; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.sichtbar { opacity: 1; transform: none; }
.kein-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Utilities ---------- */
.mt-gross { margin-top: 1.8rem; }
.max-breit { max-width: 72ch; }
.text-klein { font-size: .9rem; color: var(--grau); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .header-tel { display: none; }
}
@media (max-width: 960px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--weiss);
    padding: 1.2rem 1.4rem 2rem;
    overflow-y: auto;
    display: none;
    border-top: 1px solid var(--linie);
  }
  .main-nav.offen { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { display: block; padding: .85rem .4rem; font-size: 1.12rem; border-bottom: 1px solid var(--flaeche-2); border-radius: 0; }
  .main-nav a:hover { background: none; }
  .nav-dropdown > a::after { display: none; }
  .nav-dropdown ul {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: 0; box-shadow: none; padding: 0 0 0 1rem; min-width: 0;
  }
  .nav-dropdown ul a { font-size: 1.02rem; color: var(--grau); }
  .nav-karriere { margin-top: 1rem; }
  .nav-karriere a { text-align: center; border-radius: var(--radius); border-bottom: 0; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-kontakt { margin-left: auto; }
  .logo img { width: 200px; }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .galerie { grid-template-columns: repeat(2, 1fr); }
  .schritte { grid-template-columns: repeat(2, 1fr); }
  .zahlenband-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split--breit { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .stelle-spalten { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4, .galerie, .schritte { grid-template-columns: 1fr; }
  .zahlenband-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero { min-height: 0; }
  .hero-fakten { gap: 1.1rem 1.8rem; }
  .btn { width: 100%; }
  .btn-reihe { flex-direction: column; }
  .bewerben-bar .btn { width: auto; }
}
