/* =========================================================================
   SCHMITT Brandschutzservice – Relaunch-Prototyp
   Design-System / Stylesheet
   ========================================================================= */

@import url("../fonts/fonts.css");

/* -------------------------------------------------------------------------
   1. Design-Tokens
   ---------------------------------------------------------------------- */
:root {
  /* Markenfarben (aus dem bestehenden Auftritt) */
  --rot:            #B12A28;
  --rot-dunkel:     #8C201E;
  --rot-hell:       #CE3B36;
  --rot-wash:       #FBF1F0;

  --anthrazit:      #3C3C3B;
  --anthrazit-900:  #232322;
  --anthrazit-700:  #4E4E4C;
  --anthrazit-500:  #6E6E6B;
  --anthrazit-300:  #A3A3A0;

  /* Neutrale Flächen – leicht warm, damit das Rot nicht kalt wirkt */
  --weiss:          #FFFFFF;
  --sand-50:        #FAF9F8;
  --sand-100:       #F4F2F0;
  --sand-200:       #E9E6E3;
  --sand-300:       #D8D4D0;

  --text:           #2A2A29;
  --text-mute:      #605F5D;

  /* Signalfarben für Hinweise */
  --gruen:          #2E7D4F;
  --gruen-wash:     #EDF6F0;

  /* Typografie */
  --ff-display: "Barlow Condensed", "Segoe UI Semibold", "Arial Narrow", sans-serif;
  --ff-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Maße */
  --container: 1360px;
  --container-narrow: 900px;
  --radius: 3px;
  --radius-lg: 5px;

  /* Schatten */
  --sh-sm: 0 1px 2px rgba(35,35,34,.06), 0 2px 8px rgba(35,35,34,.05);
  --sh-md: 0 2px 6px rgba(35,35,34,.07), 0 10px 28px rgba(35,35,34,.08);
  --sh-lg: 0 6px 18px rgba(35,35,34,.10), 0 26px 60px rgba(35,35,34,.13);

  --ease: cubic-bezier(.22,.61,.36,1);

  --header-h: 92px;
  --topbar-h: 38px;
}

/* -------------------------------------------------------------------------
   2. Reset & Grundlagen
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--text);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--rot); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--rot-dunkel); }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  color: var(--anthrazit-900);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.012em;
}

h1 { font-family: var(--ff-display); font-size: clamp(2.6rem, 5.2vw, 4.4rem); line-height: 1.02; letter-spacing: -.005em; text-transform: uppercase; }
h2 { font-family: var(--ff-display); font-size: clamp(2rem, 3.4vw, 3rem);   line-height: 1.06; text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.5rem); }
h4 { font-size: 1.08rem; }

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

ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

hr { border: 0; border-top: 1px solid var(--sand-200); margin: 3rem 0; }

::selection { background: var(--rot); color: #fff; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--rot); color: #fff; padding: .8rem 1.4rem; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* -------------------------------------------------------------------------
   3. Layout-Helfer
   ---------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 4.5vw, 4rem); }
.section--sand { background: var(--sand-100); }
.section--sand-50 { background: var(--sand-50); }
.section--dark { background: var(--anthrazit-900); color: #E6E5E3; }
.section--dark h2, .section--dark h3 { color: #fff; }

.stack > * + * { margin-top: 1.1em; }

/* Kicker – aufgegriffene Logo-Geometrie (schräges rotes Element) */
.kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--ff-display);
  font-size: 1.02rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--rot);
  margin-bottom: .85rem;
}
.kicker::before {
  content: ""; width: 26px; height: 9px;
  background: var(--rot);
  transform: skewX(-14deg);
  flex: none;
}
.section--dark .kicker { color: #E8827E; }
.section--dark .kicker::before { background: var(--rot-hell); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 3.5vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head p { color: var(--text-mute); font-size: 1.08rem; }
.section--dark .section-head p { color: #B9B7B4; }

.lead { font-size: 1.18rem; line-height: 1.6; color: var(--anthrazit-700); }

/* -------------------------------------------------------------------------
   4. Buttons
   ---------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .92em 1.7em;
  font-family: var(--ff-body); font-size: .97rem; font-weight: 600;
  letter-spacing: .01em;
  border: 2px solid transparent; border-radius: var(--radius);
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease);
  text-align: center;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--rot); color: #fff; border-color: var(--rot); }
.btn--primary:hover { background: var(--rot-dunkel); border-color: var(--rot-dunkel); color: #fff; transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn--ghost { background: transparent; color: var(--anthrazit-900); border-color: var(--sand-300); }
.btn--ghost:hover { background: var(--anthrazit-900); border-color: var(--anthrazit-900); color: #fff; transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--anthrazit-900); border-color: #fff; }
.btn--light:hover { background: var(--rot); border-color: var(--rot); color: #fff; transform: translateY(-2px); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: #fff; color: var(--anthrazit-900); border-color: #fff; transform: translateY(-2px); }

.btn--block { width: 100%; }
.btn--sm { padding: .68em 1.15em; font-size: .89rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .96rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   5. Topbar
   ---------------------------------------------------------------------- */
.topbar {
  background: var(--anthrazit-900);
  color: #C9C7C4;
  font-size: .83rem;
  height: var(--topbar-h);
  display: flex; align-items: center;
}
.topbar .container { display: flex; align-items: center; gap: 1.6rem; }
.topbar a { color: #C9C7C4; display: inline-flex; align-items: center; gap: .45rem; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; opacity: .75; }
.topbar__spacer { margin-left: auto; }
.topbar__sep { width: 1px; height: 15px; background: rgba(255,255,255,.16); }
.topbar__emergency { color: #fff !important; font-weight: 600; }
.topbar__emergency .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ED07C;
  box-shadow: 0 0 0 0 rgba(78,208,124,.75);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(78,208,124,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(78,208,124,0); }
  100% { box-shadow: 0 0 0 0 rgba(78,208,124,0); }
}
.topbar__hide-md { display: inline-flex; }
.topbar__hours { align-items: center; gap: .45rem; white-space: nowrap; }

/* -------------------------------------------------------------------------
   6. Header + Hauptnavigation
   ---------------------------------------------------------------------- */
/* Deckend statt durchscheinend: Eine Weichzeichnung hinter einer zu 97 Prozent
   deckenden Fläche ist nicht sichtbar, kostet beim Scrollen aber in jedem
   Einzelbild Rechenzeit. */
.header {
  position: sticky; top: 0; z-index: 200;
  background: var(--weiss);
  border-bottom: 1px solid var(--sand-200);
  transition: box-shadow .25s var(--ease);
}
.header.is-stuck { box-shadow: 0 4px 22px rgba(35,35,34,.09); }

.header__inner {
  display: flex; align-items: center; gap: 2rem;
  height: var(--header-h);
}

/* Die Logodatei ist auf den Inhalt beschnitten und transparent. Die Höhe
   entspricht daher direkt der sichtbaren Größe der Wortmarke. */
.logo { flex: none; display: block; }
.logo img { height: 52px; width: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__list > li { margin: 0; }

.nav__link {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .7rem .9rem;
  font-family: var(--ff-display);
  font-size: 1.06rem; font-weight: 600; letter-spacing: .055em;
  text-transform: uppercase;
  color: var(--anthrazit-900);
  border-radius: var(--radius);
  position: relative;
  background: none; border: 0;
  transition: color .18s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .38rem;
  height: 3px; background: var(--rot);
  transform: scaleX(0) skewX(-14deg); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__link:hover, .nav__link[aria-expanded="true"], .nav__link.is-active { color: var(--rot); }
.nav__link:hover::after, .nav__link[aria-expanded="true"]::after, .nav__link.is-active::after { transform: scaleX(1) skewX(-14deg); }

.nav__chev { width: 13px; height: 13px; transition: transform .25s var(--ease); }
.nav__link[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }

.header__tools { display: flex; align-items: center; gap: .6rem; flex: none; margin-left: auto; }

.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--sand-200);
  border-radius: var(--radius); color: var(--anthrazit-900);
  transition: all .2s var(--ease);
}
.icon-btn:hover { background: var(--anthrazit-900); border-color: var(--anthrazit-900); color: #fff; }
.icon-btn svg { width: 19px; height: 19px; }

/* Burger (mobil) */
.burger { display: none; }
.burger span {
  display: block; width: 21px; height: 2px; background: currentColor;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   7. Megamenü (Vollflächig – Vorbild fritzmanke.de)
   ---------------------------------------------------------------------- */
.megamenu {
  position: fixed; left: 0; right: 0;
  top: calc(var(--header-h) + var(--topbar-h));
  z-index: 190;
  background: var(--weiss);
  border-top: 1px solid var(--sand-200);
  box-shadow: 0 26px 60px rgba(35,35,34,.16);
  opacity: 0; visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .26s var(--ease), transform .3s var(--ease), visibility .26s;
  max-height: calc(100vh - var(--header-h) - var(--topbar-h));
  overflow-y: auto;
}
.header.is-stuck ~ .megamenu,
body.is-scrolled .megamenu { top: var(--header-h); }

.megamenu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.megamenu__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 28px;
}

.megamenu__main { padding: 2.6rem 2.6rem 2.6rem 0; }
.megamenu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand-200);
  border: 1px solid var(--sand-200);
}

.mm-card {
  background: #fff;
  padding: 1.35rem 1.3rem 1.5rem;
  display: flex; flex-direction: column;
  transition: background .22s var(--ease);
  position: relative;
}
.mm-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--rot); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.mm-card:hover { background: var(--sand-50); }
.mm-card:hover::before { transform: scaleX(1); }

.mm-card__icon {
  width: 40px; height: 40px; margin-bottom: .85rem;
  color: var(--rot);
}
.mm-card__icon svg { width: 100%; height: 100%; }

.mm-card__title {
  font-family: var(--ff-display);
  font-size: 1.24rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .015em; line-height: 1.12;
  color: var(--anthrazit-900);
  margin: 0 0 .7rem;
  display: block;
}
.mm-card:hover .mm-card__title { color: var(--rot); }

.mm-card__list { list-style: none; margin: 0; padding: 0; }
.mm-card__list li { margin: 0; }
.mm-card__list a {
  display: block; padding: .27rem 0;
  font-size: .915rem; line-height: 1.42;
  color: var(--text-mute);
  border-bottom: 1px solid transparent;
}
.mm-card__list a:hover { color: var(--rot); }

.mm-card__all {
  margin-top: auto; padding-top: .9rem;
  font-family: var(--ff-display); font-size: .95rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--rot);
  display: inline-flex; align-items: center; gap: .4rem;
}
.mm-card__all svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.mm-card:hover .mm-card__all svg { transform: translateX(4px); }

/* Rechte Servicespalte im Megamenü */
.megamenu__aside {
  background: var(--anthrazit-900);
  color: #C9C7C4;
  padding: 2.6rem 2rem;
  margin-block: 0;
}
.megamenu__aside h4 {
  font-family: var(--ff-display); text-transform: uppercase;
  letter-spacing: .1em; font-size: 1.02rem; color: #fff;
  margin-bottom: 1.1rem;
}
.mm-services { list-style: none; margin: 0 0 2rem; padding: 0; }
.mm-services li { margin: 0; }
.mm-services a {
  display: flex; align-items: center; gap: .7rem;
  padding: .6rem 0; color: #C9C7C4; font-size: .93rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.mm-services a:hover { color: #fff; }
.mm-services svg { width: 17px; height: 17px; color: var(--rot-hell); flex: none; }

.mm-contact {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  padding: 1.2rem;
  border-radius: var(--radius);
}
.mm-contact p { font-size: .88rem; color: #B9B7B4; margin-bottom: .9rem; }
.mm-contact .tel {
  display: block; font-family: var(--ff-display); font-size: 1.6rem;
  font-weight: 700; color: #fff; letter-spacing: .01em; margin-bottom: .8rem;
}
.mm-contact .tel:hover { color: var(--rot-hell); }

/* Overlay hinter dem Megamenü */
.nav-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(35,35,34,.42);
  opacity: 0; visibility: hidden;
  transition: opacity .26s var(--ease), visibility .26s;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* -------------------------------------------------------------------------
   8. Mobile Navigation
   ---------------------------------------------------------------------- */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%);
  z-index: 300; background: #fff;
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,.2);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.4rem; border-bottom: 1px solid var(--sand-200);
  min-height: 76px;
}
.mobile-nav__head img { height: 34px; }
.mobile-nav__body { overflow-y: auto; padding: 1rem 1.4rem 2rem; flex: 1; }
.mobile-nav__foot { padding: 1.2rem 1.4rem; border-top: 1px solid var(--sand-200); background: var(--sand-50); }

.m-acc { border-bottom: 1px solid var(--sand-200); }
.m-acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 0; background: none; border: 0;
  font-family: var(--ff-display); font-size: 1.14rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; color: var(--anthrazit-900);
  text-align: left;
}
.m-acc__btn svg { width: 16px; height: 16px; flex: none; transition: transform .25s var(--ease); color: var(--rot); }
.m-acc__btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.m-acc__panel { display: none; padding-bottom: 1rem; }
.m-acc__panel.is-open { display: block; }
.m-acc__panel ul { list-style: none; margin: 0; padding: 0; }
.m-acc__panel > ul > li > a {
  display: block; padding: .5rem 0; font-weight: 600; font-size: .98rem; color: var(--anthrazit-900);
}
.m-acc__panel ul ul { padding-left: .9rem; border-left: 2px solid var(--sand-200); margin: .2rem 0 .8rem; }
.m-acc__panel ul ul a { display: block; padding: .32rem 0; font-size: .9rem; color: var(--text-mute); font-weight: 400; }

/* -------------------------------------------------------------------------
   9. Hero (Startseite)
   ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(76vh, 720px);
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--anthrazit-900);
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(28,28,27,.93) 0%, rgba(28,28,27,.80) 38%, rgba(28,28,27,.30) 72%, rgba(28,28,27,.15) 100%),
    linear-gradient(to top, rgba(28,28,27,.72), transparent 55%);
}
.hero .container { position: relative; z-index: 2; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero__content { max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 em {
  font-style: normal; color: #fff;
  background: linear-gradient(transparent 62%, var(--rot) 62%, var(--rot) 94%, transparent 94%);
  padding-inline: .12em;
}
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #DEDDDB; max-width: 620px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero__badges {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.6rem;
  margin-top: 2.6rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero__badge { display: flex; align-items: center; gap: .7rem; font-size: .93rem; color: #DEDDDB; }
.hero__badge svg { width: 22px; height: 22px; color: var(--rot-hell); flex: none; }
.hero__badge strong { color: #fff; font-weight: 600; }

/* Schnellzugriff-Leiste direkt unter dem Hero */
.quickbar { background: var(--rot); }
.quickbar__inner {
  display: flex; align-items: stretch;
  overflow-x: auto; scrollbar-width: none;
}
.quickbar__inner::-webkit-scrollbar { display: none; }
.quickbar__label {
  display: flex; align-items: center; gap: .6rem; flex: none;
  padding: 1.15rem 1.6rem 1.15rem 0;
  font-family: var(--ff-display); font-size: 1rem; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase; color: #fff;
  white-space: nowrap;
}
.quickbar__label svg { width: 18px; height: 18px; }
.quickbar a {
  display: flex; align-items: center; flex: none;
  padding: 1.15rem 1.15rem;
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9);
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,.18);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.quickbar a:last-child { border-right: 1px solid rgba(255,255,255,.18); }
.quickbar a:hover { background: rgba(0,0,0,.16); color: #fff; }

/* -------------------------------------------------------------------------
   10. Geschäftsbereiche – Kachelraster (Startseite)
   ---------------------------------------------------------------------- */
.gb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

.gb-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.gb-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }

.gb-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand-200); }
.gb-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gb-card:hover .gb-card__media img { transform: scale(1.06); }
.gb-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,27,.55), rgba(28,28,27,0) 58%);
}

/* Variante ohne Foto: gestaltete Icon-Fläche in der Markenwelt */
.gb-card__media--icon {
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(114deg, rgba(255,255,255,.035) 0 2px, transparent 2px 16px),
    linear-gradient(140deg, #343433 0%, #232322 60%, #1B1B1A 100%);
}
.gb-card__media--icon::after {
  content: ""; position: absolute; right: -46px; bottom: -60px;
  width: 190px; height: 190px;
  background: var(--rot); opacity: .12;
  transform: skewX(-14deg);
}
.gb-card__media--icon svg {
  width: 74px; height: 74px; color: var(--rot-hell);
  position: relative; z-index: 1;
  transition: transform .5s var(--ease), color .3s var(--ease);
}
.gb-card:hover .gb-card__media--icon svg { transform: scale(1.08); color: #fff; }

.gb-card__no {
  position: absolute; top: 0; left: 0; z-index: 2;
  font-family: var(--ff-display); font-size: 1rem; font-weight: 700;
  color: #fff; background: var(--rot);
  padding: .4rem 1.1rem .4rem .9rem;
  letter-spacing: .1em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 11px) 100%, 0 100%);
}

.gb-card__body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.gb-card__title {
  font-family: var(--ff-display); font-size: 1.5rem; text-transform: uppercase;
  line-height: 1.1; margin-bottom: .6rem; color: var(--anthrazit-900);
}
.gb-card:hover .gb-card__title { color: var(--rot); }
.gb-card__text { font-size: .95rem; color: var(--text-mute); margin-bottom: 1.1rem; }

.gb-card__tags { list-style: none; margin: 0 0 1.3rem; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.gb-card__tags li { margin: 0; }
.gb-card__tags span {
  display: inline-block; padding: .28rem .62rem;
  font-size: .78rem; color: var(--anthrazit-700);
  background: var(--sand-100); border-radius: 2px;
}

.gb-card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-display); font-size: 1rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--rot);
}
.gb-card__cta svg { width: 15px; height: 15px; transition: transform .22s var(--ease); }
.gb-card:hover .gb-card__cta svg { transform: translateX(5px); }

.gb-card__link { position: absolute; inset: 0; z-index: 3; text-indent: -9999px; }

/* -------------------------------------------------------------------------
   11. 360°-Service
   ---------------------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}
.service-item { background: var(--anthrazit-900); padding: 1.7rem 1.5rem; transition: background .25s var(--ease); }
.service-item:hover { background: #2C2C2B; }
.service-item__icon { width: 32px; height: 32px; color: var(--rot-hell); margin-bottom: 1rem; }
.service-item__icon svg { width: 100%; height: 100%; }
.service-item h3 { font-size: 1.06rem; color: #fff; margin-bottom: .5rem; }
.service-item p { font-size: .89rem; line-height: 1.6; color: #A8A6A3; }

/* -------------------------------------------------------------------------
   12. Kennzahlen / Vertrauen
   ---------------------------------------------------------------------- */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem; }
.fact { border-left: 3px solid var(--rot); padding-left: 1.2rem; }
.fact__value {
  font-family: var(--ff-display); font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1; color: var(--anthrazit-900); margin-bottom: .3rem;
}
.section--dark .fact__value { color: #fff; }
.fact__label { font-size: .92rem; color: var(--text-mute); }
.section--dark .fact__label { color: #A8A6A3; }

/* -------------------------------------------------------------------------
   13. Split-Sektion (Text + Bild)
   ---------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: -1; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); width: 100%; }
.split__media--framed::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 2px solid var(--rot); border-radius: var(--radius-lg); z-index: -1;
}

.checklist { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.checklist li {
  position: relative; padding-left: 2rem; margin-bottom: .75rem;
  font-size: 1rem; line-height: 1.55;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--rot-wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B12A28' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.section--dark .checklist li::before { background-color: rgba(206,59,54,.2); }

/* -------------------------------------------------------------------------
   14. Region / Einsatzgebiet
   ---------------------------------------------------------------------- */
.regions { display: flex; flex-wrap: wrap; gap: .55rem; }
.regions span {
  display: inline-block; padding: .5rem .95rem;
  background: #fff; border: 1px solid var(--sand-200);
  border-radius: 100px; font-size: .89rem; color: var(--anthrazit-700);
  transition: all .2s var(--ease);
}
.regions span:hover { border-color: var(--rot); color: var(--rot); }

/* -------------------------------------------------------------------------
   15. Referenzen-Logos
   ---------------------------------------------------------------------- */
.logos {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px; background: var(--sand-200); border: 1px solid var(--sand-200);
}
@media (max-width: 1100px) { .logos { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 700px)  { .logos { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.logos figure {
  margin: 0; background: #fff; aspect-ratio: 5/3;
  display: grid; place-items: center; padding: 1.2rem;
}
.logos img {
  max-height: 52px; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .55;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.logos figure:hover img { filter: grayscale(0); opacity: 1; }

/* -------------------------------------------------------------------------
   16. Team-Karten
   ---------------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.3rem; }
.team-card {
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.team-card img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.team-card__body { padding: 1.1rem 1.15rem 1.25rem; }
.team-card__name { font-weight: 700; font-size: 1.02rem; margin-bottom: .1rem; color: var(--anthrazit-900); }
.team-card__role { font-size: .85rem; color: var(--rot); margin-bottom: .7rem; font-weight: 500; }
.team-card__meta { font-size: .87rem; color: var(--text-mute); display: grid; gap: .25rem; }
.team-card__meta a { color: var(--text-mute); display: flex; align-items: center; gap: .45rem; }
.team-card__meta a:hover { color: var(--rot); }
.team-card__meta svg { width: 14px; height: 14px; flex: none; opacity: .6; }

/* -------------------------------------------------------------------------
   17. Seiten-Hero (Unterseiten)
   ---------------------------------------------------------------------- */
.page-hero {
  position: relative; background: var(--anthrazit-900); color: #fff;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(28,28,27,.95) 12%, rgba(28,28,27,.62) 62%, rgba(28,28,27,.42) 100%);
}
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(2.6rem, 5vw, 4.4rem); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.2vw, 3.6rem); margin-bottom: .8rem; }
.page-hero__sub { max-width: 660px; color: #D5D3D1; font-size: 1.1rem; }

/* Variante ohne Foto – gestalteter Kopf in der Markenwelt */
.page-hero--plain {
  background:
    repeating-linear-gradient(114deg, rgba(255,255,255,.028) 0 2px, transparent 2px 17px),
    linear-gradient(138deg, #3A3A39 0%, #262625 52%, #1A1A19 100%);
}
.page-hero--plain::after {
  content: ""; position: absolute; right: -90px; top: -60px; bottom: -60px; width: 380px;
  background: var(--rot); opacity: .13; transform: skewX(-14deg);
}
.page-hero__mark {
  position: absolute; right: 5%; top: 50%; z-index: 1;
  width: clamp(180px, 22vw, 300px); height: auto; aspect-ratio: 1;
  transform: translateY(-50%);
  color: #fff; opacity: .13;
  pointer-events: none;
}
.page-hero__mark svg { width: 100%; height: 100%; stroke-width: 1; }
@media (max-width: 900px) { .page-hero__mark { display: none; } }

.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0 0 1.4rem; padding: 0; font-size: .84rem; }
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: .45rem; color: #9E9C99; }
.breadcrumb li::after { content: "/"; color: #6B6967; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: #C9C7C4; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: #fff; }

/* -------------------------------------------------------------------------
   18. Unterseiten-Layout: Sidebar links / Inhalt / Kontakt rechts
   ---------------------------------------------------------------------- */
.page-layout {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr) 322px;
  gap: 2.4rem;
  align-items: start;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.page-layout--no-aside { grid-template-columns: 252px minmax(0, 1fr); }

/* --- Linke Themen-Navigation (Vorbild fritzmanke.de) --- */
.sidenav { position: sticky; top: calc(var(--header-h) + 24px); }
.sidenav__box { border: 1px solid var(--sand-200); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.sidenav__head {
  background: var(--anthrazit-900); color: #fff;
  padding: 1rem 1.15rem;
  font-family: var(--ff-display); font-size: 1.06rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; line-height: 1.2;
}
.sidenav__list { list-style: none; margin: 0; padding: 0; }
.sidenav__list li { margin: 0; border-bottom: 1px solid var(--sand-200); }
.sidenav__list li:last-child { border-bottom: 0; }
.sidenav__list a {
  display: flex; align-items: center; gap: .6rem;
  padding: .78rem 1.15rem;
  font-size: .935rem; color: var(--anthrazit-700); line-height: 1.35;
  border-left: 3px solid transparent;
  transition: all .2s var(--ease);
}
.sidenav__list a:hover { background: var(--sand-50); color: var(--rot); border-left-color: var(--rot); }
.sidenav__list a[aria-current="page"] {
  background: var(--rot-wash); color: var(--rot); font-weight: 600;
  border-left-color: var(--rot);
}
.sidenav__list svg { width: 14px; height: 14px; flex: none; opacity: .55; margin-left: auto; }

.sidenav__more { margin-top: 1.2rem; }
.sidenav__more-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  background: var(--sand-100); border: 1px solid var(--sand-200); border-radius: var(--radius);
  padding: .8rem 1rem;
  font-family: var(--ff-display); font-size: 1rem; font-weight: 600;
  letter-spacing: .045em; text-transform: uppercase; color: var(--anthrazit-900);
  text-align: left; line-height: 1.2;
}
.sidenav__more-btn svg { width: 15px; height: 15px; color: var(--rot); transition: transform .25s var(--ease); }
.sidenav__more-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.sidenav__more-panel { display: none; padding-top: .5rem; }
.sidenav__more-panel.is-open { display: block; }
.sidenav__more-panel ul { list-style: none; margin: 0; padding: 0; }
.sidenav__more-panel a {
  display: block; padding: .5rem .5rem .5rem 0; font-size: .9rem; color: var(--text-mute);
  border-bottom: 1px solid var(--sand-200);
}
.sidenav__more-panel a:hover { color: var(--rot); }

/* Download-Box in der Sidebar */
.sidenav__download {
  margin-top: 1.2rem; padding: 1.2rem;
  background: var(--sand-100); border-radius: var(--radius-lg);
}
.sidenav__download h4 { font-size: .96rem; margin-bottom: .5rem; }
.sidenav__download p { font-size: .85rem; color: var(--text-mute); margin-bottom: .9rem; }
.sidenav__download-meta {
  margin: .6rem 0 0 !important;
  font-size: .76rem !important; text-align: center;
  color: var(--anthrazit-300) !important; letter-spacing: .02em;
}

/* --- Hauptinhalt --- */
.content > * + * { margin-top: 1.15em; }
.content h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-top: 2.6rem; }
.content h2:first-child { margin-top: 0; }
.content h3 { margin-top: 2rem; font-size: 1.28rem; }
.content ul:not([class]) { padding-left: 1.3em; }
.content ul:not([class]) li::marker { color: var(--rot); }
.content img { border-radius: var(--radius-lg); }
.content figure { margin: 2rem 0; }
.content figcaption { font-size: .85rem; color: var(--text-mute); margin-top: .6rem; }

/* Hervorgehobener Intro-Absatz */
.content .intro {
  font-size: 1.15rem; line-height: 1.62; color: var(--anthrazit-700);
  border-left: 3px solid var(--rot); padding-left: 1.4rem;
}

/* Normen-/Fakten-Kasten */
.factbox {
  background: var(--sand-100); border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem; margin: 2rem 0;
}
.factbox h4 {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .08em;
  font-size: 1.06rem; margin-bottom: .9rem;
}
.factbox h4 svg { width: 19px; height: 19px; color: var(--rot); }
.factbox ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.factbox li { display: flex; gap: .8rem; font-size: .95rem; margin: 0; }
.factbox li strong { flex: none; min-width: 172px; color: var(--anthrazit-900); }

/* Hinweis-Box */
.notebox {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--rot-wash); border-left: 3px solid var(--rot);
  padding: 1.2rem 1.4rem; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0; font-size: .96rem;
}
.notebox svg { width: 21px; height: 21px; color: var(--rot); flex: none; margin-top: .15rem; }
.notebox strong { display: block; margin-bottom: .2rem; color: var(--anthrazit-900); }

/* Leistungs-/Produkt-Zweispalter */
.two-col-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin: 2rem 0; }
.list-card { border: 1px solid var(--sand-200); border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; background: #fff; }
.list-card h4 {
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .08em;
  font-size: 1.1rem; margin-bottom: .9rem; padding-bottom: .7rem;
  border-bottom: 1px solid var(--sand-200);
}
.list-card ul { list-style: none; margin: 0; padding: 0; }
.list-card li {
  position: relative; padding-left: 1.3rem; margin-bottom: .5rem; font-size: .94rem; line-height: 1.5;
}
.list-card li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 7px; height: 7px; background: var(--rot); transform: skewX(-14deg);
}

/* Tabellen */
.table-wrap { overflow-x: auto; margin: 2rem 0; border: 1px solid var(--sand-200); border-radius: var(--radius-lg); }
table { width: 100%; border-collapse: collapse; font-size: .89rem; line-height: 1.5; min-width: 460px; }
thead th {
  background: var(--anthrazit-900); color: #fff; text-align: left;
  font-family: var(--ff-display); font-size: .96rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .75rem .9rem; white-space: nowrap;
}
tbody td { padding: .75rem .9rem; border-top: 1px solid var(--sand-200); vertical-align: top; }
tbody tr:nth-child(even) { background: var(--sand-50); }
tbody th {
  padding: .75rem .9rem; border-top: 1px solid var(--sand-200);
  text-align: left; vertical-align: top; font-weight: 600; color: var(--anthrazit-900);
}

/* Inhaltsverzeichnis auf langen Detailseiten */
.toc {
  background: var(--sand-100); border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem; margin: 2rem 0;
}
.toc h4 {
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .09em;
  font-size: .98rem; margin-bottom: .85rem; color: var(--anthrazit-900);
}
.toc ol { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 2rem; }
.toc li { margin: 0 0 .4rem; break-inside: avoid; }
.toc a {
  display: flex; gap: .55rem; align-items: baseline;
  font-size: .93rem; color: var(--anthrazit-700);
}
.toc a::before { content: "→"; color: var(--rot); font-size: .85em; }
.toc a:hover { color: var(--rot); }
.toc a[aria-current] { color: var(--rot); font-weight: 600; }
@media (max-width: 700px) { .toc ol { columns: 1; } }

/* Bild mit Bildunterschrift im Fließtext */
.content .media-note {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; align-items: center;
  margin: 2rem 0;
}
@media (max-width: 700px) { .content .media-note { grid-template-columns: 1fr; } }

/* Prozess-Schritte */
.steps { counter-reset: step; display: grid; gap: 1rem; margin: 2rem 0; }
.step {
  display: grid; grid-template-columns: 54px 1fr; gap: 1.2rem; align-items: start;
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover { border-color: var(--rot); box-shadow: var(--sh-sm); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--ff-display); font-size: 1.9rem; font-weight: 700;
  color: var(--rot); line-height: 1;
}
.step h4 { margin-bottom: .3rem; font-size: 1.06rem; }
.step p { font-size: .93rem; color: var(--text-mute); margin: 0; }

/* -------------------------------------------------------------------------
   19. Akkordeon / FAQ
   ---------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--sand-200); margin: 1.6rem 0 0; }
.acc-item { border-bottom: 1px solid var(--sand-200); }
.acc-btn {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.4rem;
  background: none; border: 0; padding: 1.25rem 0;
  text-align: left; font-size: 1.06rem; font-weight: 600; line-height: 1.45;
  color: var(--anthrazit-900);
  transition: color .2s var(--ease);
}
.acc-btn:hover { color: var(--rot); }
.acc-btn__icon {
  flex: none; width: 26px; height: 26px; margin-top: .1rem;
  border-radius: 50%; background: var(--sand-100);
  display: grid; place-items: center;
  transition: background .25s var(--ease), transform .3s var(--ease);
}
.acc-btn__icon svg { width: 13px; height: 13px; color: var(--rot); }
.acc-btn[aria-expanded="true"] { color: var(--rot); }
.acc-btn[aria-expanded="true"] .acc-btn__icon { background: var(--rot); transform: rotate(180deg); }
.acc-btn[aria-expanded="true"] .acc-btn__icon svg { color: #fff; }

.acc-panel { overflow: hidden; height: 0; transition: height .32s var(--ease); }
.acc-panel__inner { padding: 0 3rem 1.5rem 0; color: var(--text-mute); font-size: .99rem; }
.acc-panel__inner > *:first-child { margin-top: 0; }

/* -------------------------------------------------------------------------
   20. Kontakt-Sidebar rechts (Vorbild minimax-mobile.com)
   ---------------------------------------------------------------------- */
/* Die Spalte füllt die Zeilenhöhe. Der Block darin wird von main.js bewegt:
   Er scrollt zunächst normal mit, bleibt dann an der Fensterunterkante stehen
   und dockt beim Zurückscrollen wieder oben an. Ohne JavaScript scrollt er
   einfach ganz normal mit. */
.contact-aside { align-self: stretch; position: relative; }
.contact-aside__inner { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-card {
  background: var(--anthrazit-900); color: #D5D3D1;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--sh-md);
}
.contact-card__head {
  padding: 1.3rem 1.4rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; gap: 1rem; align-items: center;
}
.contact-card__head img {
  width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex: none;
  border: 2px solid var(--rot);
}
.contact-card__head .who { font-size: .95rem; }
.contact-card__head .who strong { display: block; color: #fff; font-size: 1.02rem; }
.contact-card__head .who span { font-size: .84rem; color: #A8A6A3; }

.contact-card__body { padding: 1.3rem 1.4rem 1.5rem; }
.contact-card__title {
  font-family: var(--ff-display); font-size: 1.28rem; text-transform: uppercase;
  letter-spacing: .04em; color: #fff; margin-bottom: .5rem; line-height: 1.16;
}
.contact-card__body > p { font-size: .89rem; color: #A8A6A3; margin-bottom: 1.1rem; }

.contact-direct { display: grid; gap: .5rem; margin-bottom: 1.2rem; }
.contact-direct a {
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem .85rem; border-radius: var(--radius);
  background: rgba(255,255,255,.06); color: #fff; font-size: .92rem; font-weight: 500;
  transition: background .2s var(--ease);
}
.contact-direct a:hover { background: var(--rot); }
.contact-direct svg { width: 17px; height: 17px; color: var(--rot-hell); flex: none; transition: color .2s var(--ease); }
.contact-direct a:hover svg { color: #fff; }

.contact-card__divider {
  display: flex; align-items: center; gap: .8rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: #7C7A78; margin-bottom: 1.1rem;
}
.contact-card__divider::before, .contact-card__divider::after {
  content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.13);
}

/* Formular */
.form-field { margin-bottom: .8rem; }
.form-field label {
  display: block; font-size: .8rem; font-weight: 500;
  color: #A8A6A3; margin-bottom: .3rem;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .7rem .8rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  color: #fff; font-family: inherit; font-size: .92rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 84px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #6E6C6A; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--rot-hell); background: rgba(255,255,255,.11);
}
.form-field select option { background: var(--anthrazit-900); }

.form-check { display: flex; gap: .6rem; align-items: flex-start; margin: 1rem 0; }
.form-check input { margin-top: .25rem; accent-color: var(--rot); flex: none; }
.form-check label { font-size: .78rem; color: #94918F; line-height: 1.5; }
.form-check a { color: #C9C7C4; text-decoration: underline; }

.form-note { font-size: .76rem; color: #7C7A78; margin-top: .8rem; text-align: center; }

/* Helle Variante des Formulars (Kontaktsektion) */
.form--light .form-field label { color: var(--text-mute); }
.form--light .form-field input,
.form--light .form-field textarea,
.form--light .form-field select {
  background: #fff; border-color: var(--sand-300); color: var(--text);
}
.form--light .form-field input::placeholder,
.form--light .form-field textarea::placeholder { color: var(--anthrazit-300); }
.form--light .form-field input:focus,
.form--light .form-field textarea:focus { border-color: var(--rot); background: #fff; }
.form--light .form-check label { color: var(--text-mute); }
.form--light .form-check a { color: var(--rot); }

/* Vertrauens-Punkte unter dem Formular */
.aside-usps { padding: 1.2rem 1.3rem; background: var(--sand-100); border-radius: var(--radius-lg); }
.aside-usps ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.aside-usps li { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; line-height: 1.45; margin: 0; }
.aside-usps svg { width: 17px; height: 17px; color: var(--rot); flex: none; margin-top: .12rem; }

/* -------------------------------------------------------------------------
   21. Große Kontaktsektion (Seitenende)
   ---------------------------------------------------------------------- */
.contact-band { background: var(--sand-100); }
.contact-band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.contact-methods { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-method {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.contact-method:hover { border-color: var(--rot); transform: translateX(4px); }
.contact-method__icon {
  width: 44px; height: 44px; flex: none; border-radius: var(--radius);
  background: var(--rot-wash); color: var(--rot); display: grid; place-items: center;
}
.contact-method__icon svg { width: 21px; height: 21px; }
.contact-method h4 { margin-bottom: .15rem; font-size: 1.02rem; }
.contact-method p { font-size: .89rem; color: var(--text-mute); margin: 0; }
.contact-method .val { display: block; font-weight: 600; color: var(--anthrazit-900); margin-top: .3rem; }

.form-panel { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.2rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }

/* -------------------------------------------------------------------------
   22. Verwandte Themen / Kachel-Links
   ---------------------------------------------------------------------- */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.tile {
  display: flex; flex-direction: column; gap: .5rem;
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  transition: all .25s var(--ease);
}
.tile:hover { border-color: var(--rot); box-shadow: var(--sh-md); transform: translateY(-3px); }
.tile__icon { width: 28px; height: 28px; color: var(--rot); }
.tile__icon svg { width: 100%; height: 100%; }
.tile h4 { margin: 0; font-size: 1.04rem; color: var(--anthrazit-900); }
.tile p { font-size: .89rem; color: var(--text-mute); margin: 0; }
.tile__more {
  margin-top: auto; padding-top: .7rem;
  font-size: .86rem; font-weight: 600; color: var(--rot);
  display: inline-flex; align-items: center; gap: .4rem;
}
.tile__more svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.tile:hover .tile__more svg { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   22b. Seminare
   ---------------------------------------------------------------------- */

/* --- Zwei Wege: offenes Seminar oder Inhouse --- */
.choice { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.choice-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: 1.9rem 1.9rem 1.7rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.choice-card:hover { border-color: var(--rot); box-shadow: var(--sh-md); transform: translateY(-3px); }
.choice-card--dark { background: var(--anthrazit-900); border-color: var(--anthrazit-900); color: #B9B7B4; }
.choice-card--dark:hover { border-color: var(--rot); }
.choice-card__icon {
  width: 42px; height: 42px; color: var(--rot); margin-bottom: 1rem;
}
.choice-card__icon svg { width: 100%; height: 100%; }
.choice-card--dark .choice-card__icon { color: var(--rot-hell); }
.choice-card h3 {
  font-family: var(--ff-display); font-size: 1.6rem; text-transform: uppercase;
  line-height: 1.08; margin-bottom: .4rem;
}
.choice-card--dark h3 { color: #fff; }
.choice-card__lead { font-size: .96rem; color: var(--text-mute); margin-bottom: 1.2rem; }
.choice-card--dark .choice-card__lead { color: #A8A6A3; }
.choice-card ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.choice-card li {
  position: relative; padding-left: 1.7rem; margin-bottom: .6rem;
  font-size: .94rem; line-height: 1.5;
}
.choice-card li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 8px; height: 8px; background: var(--rot); transform: skewX(-14deg);
}
.choice-card--dark li::before { background: var(--rot-hell); }
.choice-card .btn { margin-top: auto; align-self: flex-start; }

/* --- Seminarkarten --- */
.sem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.4rem; }

.sem-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem 1.6rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.sem-card:hover { border-color: var(--rot); box-shadow: var(--sh-md); transform: translateY(-3px); }

.sem-card__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: 1rem;
}
.sem-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .7rem;
  font-family: var(--ff-display); font-size: .88rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px; white-space: nowrap;
}
.sem-badge svg { width: 14px; height: 14px; }
.sem-badge--vor-ort { background: var(--rot-wash); color: var(--rot); }
.sem-badge--online { background: #EAF1F8; color: #2E5F9E; }

.sem-card__price {
  text-align: right; flex: none;
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700;
  color: var(--anthrazit-900); line-height: 1;
}
.sem-card__price small {
  display: block; font-family: var(--ff-body); font-size: .72rem; font-weight: 400;
  color: var(--text-mute); letter-spacing: 0; margin-top: .25rem;
}
.sem-card__price--frei { color: var(--gruen); }

.sem-card h3 {
  font-family: var(--ff-display); font-size: 1.42rem; text-transform: uppercase;
  line-height: 1.1; margin-bottom: .3rem;
}
.sem-card__norm {
  font-size: .82rem; color: var(--rot); font-weight: 500;
  letter-spacing: .02em; margin-bottom: .8rem;
}
.sem-card__text { font-size: .94rem; color: var(--text-mute); margin-bottom: 1.1rem; }

.sem-facts { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: .45rem; }
.sem-facts li { display: flex; align-items: center; gap: .6rem; font-size: .89rem; margin: 0; }
.sem-facts svg { width: 16px; height: 16px; color: var(--rot); flex: none; }

.sem-card__next {
  margin-top: auto;
  background: var(--sand-100); border-radius: var(--radius);
  padding: .75rem .9rem; margin-bottom: 1rem;
  display: flex; align-items: baseline; justify-content: space-between; gap: .8rem;
}
.sem-card__next span { font-size: .78rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: .08em; }
.sem-card__next strong { font-family: var(--ff-display); font-size: 1.1rem; letter-spacing: .02em; color: var(--anthrazit-900); }
.sem-card__next--offen strong { color: var(--text-mute); font-size: 1rem; }

.sem-card__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* --- Terminübersicht --- */
.termine { border-top: 1px solid var(--sand-300); }
.termin {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 190px 160px;
  gap: 1.4rem; align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--sand-300);
}
.termin__datum {
  font-family: var(--ff-display); font-size: 1.24rem; font-weight: 700;
  color: var(--anthrazit-900); line-height: 1.15;
}
.termin__datum small { display: block; font-family: var(--ff-body); font-size: .78rem; font-weight: 400; color: var(--text-mute); }
.termin__titel { font-weight: 600; font-size: 1rem; color: var(--anthrazit-900); }
.termin__titel span { display: block; font-weight: 400; font-size: .86rem; color: var(--text-mute); margin-top: .15rem; }
.termin__info { font-size: .88rem; color: var(--text-mute); }
.termin__status {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .84rem; font-weight: 600;
}
.termin__status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.termin__status--frei { color: var(--gruen); }
.termin__status--frei::before { background: var(--gruen); }
.termin__status--wenig { color: #B5730E; }
.termin__status--wenig::before { background: #E09A1E; }
.termin__aktion { text-align: right; }

/* --- Inhouse-Bausteine --- */
.inhouse-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
@media (max-width: 1100px) { .inhouse-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px)  { .inhouse-grid { grid-template-columns: minmax(0, 1fr); } }
.inhouse-item { background: var(--anthrazit-900); padding: 1.6rem 1.5rem; }
.inhouse-item__icon { width: 30px; height: 30px; color: var(--rot-hell); margin-bottom: .9rem; }
.inhouse-item__icon svg { width: 100%; height: 100%; }
.inhouse-item h3 { font-size: 1.04rem; color: #fff; margin-bottom: .45rem; }
.inhouse-item p { font-size: .88rem; line-height: 1.55; color: #A8A6A3; }
.inhouse-item .dauer {
  display: inline-block; margin-top: .7rem;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: #7C7A78;
}

/* --- Auswahlkacheln im Formular --- */
.check-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: .6rem; }
.check-tile { position: relative; display: block; cursor: pointer; }
.check-tile input {
  position: absolute; width: 1px; height: 1px; opacity: 0; margin: 0;
}
.check-tile span {
  display: block; padding: .7rem .85rem;
  border: 1px solid var(--sand-300); border-radius: var(--radius);
  background: #fff; font-size: .9rem; line-height: 1.35;
  transition: border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.check-tile span::before {
  content: ""; display: inline-block; vertical-align: -2px;
  width: 14px; height: 14px; margin-right: .6rem;
  border: 1.5px solid var(--sand-300); border-radius: 2px;
  background: #fff;
  transition: all .18s var(--ease);
}
.check-tile:hover span { border-color: var(--anthrazit-300); }
.check-tile input:checked + span { border-color: var(--rot); background: var(--rot-wash); color: var(--anthrazit-900); font-weight: 500; }
.check-tile input:checked + span::before {
  border-color: var(--rot); background: var(--rot) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.check-tile input:focus-visible + span { outline: 3px solid var(--rot); outline-offset: 2px; }

/* --- Ja/Nein-Auswahl --- */
.radio-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; width: 1px; height: 1px; opacity: 0; margin: 0; }
.radio-pill span {
  display: block; padding: .5rem 1.1rem;
  border: 1px solid var(--sand-300); border-radius: 100px;
  background: #fff; font-size: .89rem; cursor: pointer;
  transition: all .18s var(--ease);
}
.radio-pill input:checked + span { border-color: var(--rot); background: var(--rot); color: #fff; }
.radio-pill input:focus-visible + span { outline: 3px solid var(--rot); outline-offset: 2px; }

.field-group { margin-bottom: 1.4rem; }
.field-group > legend,
.field-group > .field-label {
  display: block; padding: 0;
  font-size: .88rem; font-weight: 600; color: var(--anthrazit-900);
  margin-bottom: .6rem;
}
.field-group .hint { font-size: .82rem; color: var(--text-mute); font-weight: 400; }
fieldset.field-group { border: 0; margin-inline: 0; }

/* -------------------------------------------------------------------------
   22c. Unternehmen
   ---------------------------------------------------------------------- */

/* --- Zeitstrahl --- */
.timeline { list-style: none; margin: 2rem 0 0; padding: 0; }
.tl-item {
  position: relative;
  display: grid; grid-template-columns: 112px minmax(0, 1fr);
  gap: 2.2rem;
  padding-bottom: 2.6rem;
}
.tl-item::before {                    /* durchgehende Linie */
  content: ""; position: absolute;
  left: 129px; top: .9rem; bottom: 0; width: 2px;
  background: var(--sand-300);
}
.tl-item:last-child::before { display: none; }
.tl-item::after {                     /* Marke auf der Linie */
  content: ""; position: absolute;
  left: 123px; top: .55rem;
  width: 14px; height: 14px;
  background: var(--rot); transform: skewX(-14deg);
}
.tl-item--wichtig::after { width: 18px; height: 18px; left: 121px; top: .45rem; }

.tl-year {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.7rem; line-height: 1.05; letter-spacing: 0;
  color: var(--rot); text-align: right; white-space: nowrap;
}
.tl-year small {
  display: block; font-family: var(--ff-body); font-size: .74rem; font-weight: 500;
  color: var(--text-mute); letter-spacing: .02em; margin-top: .3rem;
}
.tl-body { padding-top: .1rem; }
.tl-body h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.tl-body p { font-size: .97rem; color: var(--text-mute); }
.tl-body figure { margin: 1.1rem 0 0; }
.tl-body figure img {
  width: 100%; max-width: 420px; border-radius: var(--radius-lg);
  border: 1px solid var(--sand-200);
}
.tl-body figcaption { font-size: .82rem; color: var(--anthrazit-300); margin-top: .5rem; max-width: 420px; }
.tl-body--breit figure img { max-width: 100%; }

@media (max-width: 700px) {
  .tl-item { grid-template-columns: minmax(0, 1fr); gap: .5rem; padding-left: 1.7rem; padding-bottom: 2rem; }
  .tl-item::before { left: 5px; top: 1.6rem; }
  .tl-item::after { left: 0; top: 1.1rem; }
  .tl-year { text-align: left; font-size: 1.6rem; }
  .tl-year small { display: inline; margin-left: .6rem; }
}

/* --- Hervorgehobene Aussage --- */
.box-zitat {
  position: relative;
  background: var(--sand-100);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem 1.6rem 3.4rem;
  margin: 1.6rem 0 1.4rem;
}
.box-zitat::before {
  content: ""; position: absolute; left: 1.4rem; top: 1.9rem;
  width: 12px; height: 12px; background: var(--rot); transform: skewX(-14deg);
}
.box-zitat .intro { border-left: 0; padding-left: 0; }

/* --- Werte --- */
.werte { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.wert {
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.wert:hover { border-color: var(--rot); transform: translateY(-3px); }
.wert h3 {
  font-family: var(--ff-display); font-size: 1.28rem; text-transform: uppercase;
  letter-spacing: .03em; color: var(--rot); margin-bottom: .35rem;
}
.wert p { font-size: .93rem; color: var(--text-mute); margin: 0; }

/* --- Geschäftsführung --- */
.gf-card {
  display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 1.6rem;
  align-items: center;
  background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.gf-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); }
.gf-card__name { font-family: var(--ff-display); font-size: 1.5rem; text-transform: uppercase; line-height: 1.1; color: var(--anthrazit-900); }
.gf-card__rolle { font-size: .9rem; color: var(--rot); font-weight: 500; margin-bottom: .8rem; }
.gf-card p { font-size: .95rem; color: var(--text-mute); }
.gf-card__kontakt { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin-top: .9rem; font-size: .9rem; }
.gf-card__kontakt a { display: inline-flex; align-items: center; gap: .45rem; color: var(--anthrazit-700); }
.gf-card__kontakt a:hover { color: var(--rot); }
.gf-card__kontakt svg { width: 15px; height: 15px; opacity: .6; }
@media (max-width: 700px) { .gf-card { grid-template-columns: minmax(0,1fr); } .gf-card img { max-width: 200px; } }

/* -------------------------------------------------------------------------
   23. Footer
   ---------------------------------------------------------------------- */
.footer { background: var(--anthrazit-900); color: #A8A6A3; padding-top: clamp(3rem, 6vw, 4.5rem); font-size: .93rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.4rem;
  padding-bottom: 3rem;
}
.footer__logo { height: 46px; width: auto; margin-bottom: 1.2rem; }
.footer h4 {
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .1em;
  font-size: .98rem; color: #fff; margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .5rem; }
.footer a { color: #A8A6A3; }
.footer a:hover { color: #fff; }
.footer__contact li { display: flex; gap: .7rem; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; flex: none; margin-top: .28rem; color: var(--rot-hell); }
.footer__hours { background: rgba(255,255,255,.05); border-radius: var(--radius); padding: .9rem 1rem; font-size: .86rem; line-height: 1.7; }
.footer__hours strong { color: #fff; display: block; margin-bottom: .3rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center;
  font-size: .84rem;
}
.footer__bottom nav { margin-left: auto; display: flex; flex-wrap: wrap; gap: 1.4rem; }

/* -------------------------------------------------------------------------
   24. Mobile Aktionsleiste (fix unten)
   ---------------------------------------------------------------------- */
.mobilebar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  background: #fff; border-top: 1px solid var(--sand-200);
  box-shadow: 0 -4px 20px rgba(35,35,34,.1);
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
}
.mobilebar__inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .5rem; }
.mobilebar a {
  display: flex; flex-direction: column; align-items: center; gap: .22rem;
  padding: .5rem .3rem; border-radius: var(--radius);
  font-size: .73rem; font-weight: 600; color: var(--anthrazit-900);
  background: var(--sand-100);
}
.mobilebar a.is-primary { background: var(--rot); color: #fff; }
.mobilebar svg { width: 19px; height: 19px; }

/* -------------------------------------------------------------------------
   25. Hilfsklassen
   ---------------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }

/* Sanftes Einblenden beim Scrollen */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Demo-Hinweisleiste (nur im Prototyp) */
.protobar {
  background: #1B1B1A; color: #8E8C8A; font-size: .76rem;
  padding: .5rem 0; text-align: center; letter-spacing: .02em;
}
.protobar strong { color: #C9C7C4; font-weight: 600; }
.protobar a { color: var(--rot-hell); }

/* -------------------------------------------------------------------------
   26. Responsive
   ---------------------------------------------------------------------- */
@media (max-width: 1240px) {
  .page-layout { grid-template-columns: 232px minmax(0,1fr) 300px; gap: 2rem; }
  .megamenu__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
  :root { --header-h: 78px; }
  .nav, .header__tools .icon-btn--search { display: none; }
  .burger { display: grid; }
  .logo img { height: 40px; }
  .megamenu { display: none; }

  .page-layout { grid-template-columns: minmax(0,1fr); gap: 2.4rem; }
  .sidenav, .contact-aside { position: static; }
  .contact-aside__inner { position: static !important; top: auto !important; }
  .contact-aside { order: 3; }
  .sidenav { order: 1; }
  .content { order: 2; }

  .topbar__hide-md { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .termin { grid-template-columns: 110px minmax(0, 1fr) 150px; }
  .termin__aktion { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media--framed::before { display: none; }
  .contact-band__inner { grid-template-columns: 1fr; }
  .two-col-lists { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}

@media (max-width: 700px) {
  .container { padding-inline: 20px; }
  .topbar .container > *:not(.topbar__emergency):not(.topbar__spacer) { display: none; }
  .mobilebar { display: block; }
  body { padding-bottom: 74px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom nav { margin-left: 0; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .choice { grid-template-columns: 1fr; }
  .termin { grid-template-columns: 1fr; gap: .5rem; padding: 1.2rem 0; }
  .termin__aktion { text-align: left; }
  .acc-panel__inner { padding-right: 0; }
  .factbox li { flex-direction: column; gap: .1rem; }
  .factbox li strong { min-width: 0; }
  .hero__badges { gap: 1rem 1.6rem; }
  .service-grid { grid-template-columns: minmax(0, 1fr); }
  .hero__bg img { object-position: 62% 62%; }
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(28,28,27,.86) 0%, rgba(28,28,27,.80) 45%, rgba(28,28,27,.90) 100%);
  }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 2.9rem); }
  .hero__actions .btn { width: 100%; }
  .step { grid-template-columns: 40px 1fr; gap: .9rem; }
  .step::before { font-size: 1.5rem; }
}

@media print {
  .topbar, .header, .megamenu, .mobilebar, .contact-aside, .sidenav, .protobar { display: none !important; }
  body { font-size: 11pt; }
}
