/* ==========================================================================
   LDS Transporte / Kran — Stylesheet
   Kein Framework. Design-Tokens ganz oben, danach Layout, dann Komponenten.
   Farben zentral änderbar: nur die Werte in :root anpassen.
   ========================================================================== */

/* --- 1. Tokens ----------------------------------------------------------- */

:root {
  /* Farben */
  --slate-900: #172230;   /* Struktur: Header, Hero-Panel, Footer */
  --slate-800: #1f2e3e;
  --slate-600: #46596b;
  --slate-400: #5a6b7a;   /* Sekundärtext */
  --paper:     #ecedea;   /* Seitengrund */
  --paper-2:   #e1e3df;
  --white:     #ffffff;
  --line:      #c9ccc6;   /* Hairlines, Messmarken */
  --line-dark: #33465a;
  --signal:    #f0a81c;   /* Aktionen, Akzente – sparsam */
  --signal-dk: #d4900a;
  --error:     #b03024;
  --ok:        #2f7d4f;

  /* Typografie */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-text: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;

  /* Modulare Skala, Basis 17px, Verhältnis ~1.25 */
  --t-xs:   0.8125rem;
  --t-sm:   0.9375rem;
  --t-base: 1.0625rem;
  --t-md:   1.1875rem;
  --t-lg:   1.5rem;
  --t-xl:   clamp(1.75rem, 1.3rem + 1.8vw, 2.5rem);
  --t-2xl:  clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  --t-3xl:  clamp(2.35rem, 1.5rem + 3.2vw, 3.75rem);

  /* Raster */
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 8vw, 7.5rem);
  --radius: 3px;

  --header-h: 92px;
}

/* --- 2. Reset ------------------------------------------------------------ */

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--slate-900);
  font-family: var(--font-text);
  font-size: var(--t-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 112%;          /* Archivo Variable: leicht breit = „trägt Last" */
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: var(--t-2xl); }
h2 { font-size: var(--t-xl); }
h3 { font-size: var(--t-lg); font-stretch: 105%; letter-spacing: -0.005em; }
h4 { font-size: var(--t-md); font-stretch: 105%; }

p { margin: 0 0 1.15em; max-width: 68ch; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.2em; }
li { margin-bottom: 0.35em; }

a { color: inherit; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { text-decoration-color: var(--signal); }

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

/* --- 3. Layout-Bausteine ------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Schmale Lesespalte: Container bleibt gleich breit, nur der Inhalt wird begrenzt.
   Dadurch steht die linke Kante auf jeder Seite an derselben Stelle. */
.wrap--narrow > * { max-width: 68ch; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark { background: var(--slate-900); color: var(--paper); }
.section--dark p { color: #b9c3cd; }
.section--white { background: var(--white); }

/* Messlatte: Teilstriche als Trenner – verweist auf Maß & Präzision */
.rule {
  height: 9px;
  background-image: repeating-linear-gradient(
    to right, var(--line) 0 1px, transparent 1px 13px
  );
}
.section--dark .rule,
.rule--dark {
  background-image: repeating-linear-gradient(
    to right, var(--line-dark) 0 1px, transparent 1px 13px
  );
}

/* Überschriftenblock mit Signalbalken */
.head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.head::before {
  content: "";
  display: block;
  width: 54px;
  height: 5px;
  background: var(--signal);
  margin-bottom: 1.4rem;
}
.head p {
  font-size: var(--t-md);
  color: var(--slate-400);
  margin-bottom: 0;
}
.section--dark .head p { color: #a9b5c1; }

.lead { font-size: var(--t-md); line-height: 1.6; }

/* --- 4. Buttons ---------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 600;
  font-stretch: 108%;
  font-size: var(--t-sm);
  letter-spacing: 0.01em;
  padding: 0.85em 1.5em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--slate-900);
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.btn:hover { background: var(--slate-800); }

.btn--signal { background: var(--signal); color: var(--slate-900); }
.btn--signal:hover { background: var(--signal-dk); }

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--ghost:hover { background: var(--signal); border-color: var(--signal); color: var(--slate-900); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* --- 5. Kopfzeile -------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--signal);
  color: var(--slate-900);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--slate-900);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

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

.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { height: 52px; width: auto; }
.nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-stretch: 105%;
  font-size: var(--t-sm);
  color: #c6cfd8;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--white); }
.nav a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--signal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-stretch: 108%;
  font-size: var(--t-sm);
  background: var(--signal);
  color: var(--slate-900);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
}
.header-cta:hover { background: var(--signal-dk); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .header-cta { padding: 0.7rem 0.9rem; }

  /* Reihenfolge auf Mobil: Logo – Telefon – Menü.
     Der Umschalter sitzt am äußersten Rand und ist durch eine deutliche Lücke
     vom Anruf-Knopf getrennt, damit man nicht danebengreift. */
  :root { --header-h: 76px; }
  .brand img   { height: 42px; }
  .site-header__inner { gap: 0.5rem; }
  .brand       { order: 1; }
  .header-cta  { order: 2; margin-left: auto; min-height: 48px; }
  .nav-toggle  { order: 3; margin-left: 1.5rem; width: 48px; height: 48px; }
  .nav         { order: 4; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--slate-800);
    border-bottom: 1px solid var(--line-dark);
    display: none;
  }
  .nav[data-open="true"] { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem var(--gutter) 1.25rem; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line-dark); font-size: var(--t-md); }
  .nav a[aria-current="page"] { border-bottom-color: var(--signal); }
}

/* Auf sehr schmalen Geräten enger setzen, damit die Nummer sichtbar bleibt.
   Sie ist der wichtigste Knopf der Seite und soll nicht zum Rätselraten werden. */
@media (max-width: 430px) {
  :root { --gutter: 1rem; }
  .brand img  { height: 36px; }
  .header-cta { font-size: 0.8125rem; padding: 0.7rem 0.7rem; gap: 0.4em; }
  .header-cta span { display: none; }
  .nav-toggle { margin-left: 0.9rem; }
}

/* --- 6. Hero (Startseite) ------------------------------------------------ */

.hero { background: var(--slate-900); color: var(--white); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: stretch;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem)
           max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
}
.hero__text h1 {
  font-size: var(--t-3xl);
  font-stretch: 118%;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  text-wrap: initial;      /* Zeilenumbruch steht im Markup, nicht im Browser */
}
.hero__text p {
  font-size: var(--t-md);
  color: #b9c3cd;
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero__media { position: relative; min-height: 340px; background: var(--slate-800); }

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero__slide[data-active="true"] { opacity: 1; }

/* Bildwechsler */
.hero__dots {
  position: absolute;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 1.75rem);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.hero__dots button {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: background-color .2s ease;
}
.hero__dots button:hover { background: rgba(255, 255, 255, 0.7); }
.hero__dots button[aria-selected="true"] { background: var(--signal); }

/* Ohne JavaScript bleibt das erste Bild stehen, die Punkte sind dann sinnlos. */
.no-js .hero__dots { display: none; }
.no-js .hero__slide:first-of-type { opacity: 1; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { min-height: 46vh; order: -1; }
  .hero__text { padding-inline: var(--gutter); }
}

/* Einstiegsband unter dem Hero: direkte Wege in die drei Leistungsbereiche */
.quickbar { background: var(--slate-800); color: var(--white); }
.quickbar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
}
.quickbar__item {
  background: var(--slate-800);
  padding: 1.6rem clamp(1rem, 3vw, 2rem);
  text-decoration: none;
  display: block;
}
.quickbar__item:hover { background: #26374a; }
.quickbar__item h2 {
  font-size: var(--t-md);
  font-stretch: 108%;
  margin-bottom: 0.3rem;
}
.quickbar__item p { font-size: var(--t-sm); color: #a9b5c1; margin: 0; max-width: 34ch; }

@media (max-width: 700px) {
  .quickbar__grid { grid-template-columns: 1fr; }
}

/* --- 7. Seitenkopf (Unterseiten) ----------------------------------------- */

.pagehead {
  background: var(--slate-900);
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.pagehead h1 { margin-bottom: 0.6rem; }
.pagehead p {
  font-size: var(--t-md);
  color: #b9c3cd;
  max-width: 58ch;
  margin: 0;
}
.breadcrumb {
  font-size: var(--t-xs);
  color: #8fa0b0;
  margin-bottom: 1.1rem;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--signal); }

/* --- 8. Leistungen ------------------------------------------------------- */

/* Teaser-Raster auf der Startseite */
.teasers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.teaser {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
}
.teaser img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.teaser__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.teaser h3 { margin-bottom: 0.4rem; }
.teaser p { font-size: var(--t-sm); color: var(--slate-400); margin-bottom: 1.1rem; }
.teaser__more {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-sm);
  color: var(--slate-900);
  border-bottom: 2px solid var(--signal);
  align-self: flex-start;
  padding-bottom: 2px;
}
.teaser:hover .teaser__more { background: var(--signal); }

/* Wechselseitige Detailblöcke auf der Leistungsseite */
.service {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding-block: clamp(2.75rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}
.service:first-of-type { border-top: 0; padding-top: 0; }
@media (min-width: 821px) {
  .service__media { position: sticky; top: calc(var(--header-h) + 2rem); }
}
.service__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.service--flip .service__media { order: 2; }

@media (max-width: 820px) {
  .service { grid-template-columns: 1fr; }
  .service--flip .service__media { order: 0; }
}

/* Ausstattungs-/Merkmalsliste */
.speclist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}
.speclist li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  font-size: var(--t-sm);
}
.speclist li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: var(--signal);
  transform: translateY(-1px);
}

/* --- 9. Werte / Unternehmen ---------------------------------------------- */

.values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.value { background: var(--white); padding: clamp(1.75rem, 3vw, 2.5rem); }
@media (max-width: 620px) { .values { grid-template-columns: 1fr; } }
.value h3 { margin-bottom: 0.5rem; }
.value p { font-size: var(--t-sm); color: var(--slate-400); margin-bottom: 0; }
.value h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  background: var(--signal);
  margin-bottom: 1.1rem;
}

/* --- 10. Fuhrpark-Galerie ------------------------------------------------ */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}
.gallery a {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery a:hover img { transform: scale(1.035); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(9, 15, 22, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[data-open="true"] { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__count {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #c6cfd8;
  font-family: var(--font-display);
  font-size: var(--t-sm);
}
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox button:hover { background: var(--signal); border-color: var(--signal); color: var(--slate-900); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* --- 11. Kontakt --------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--slate-400);
  margin-bottom: 0.1rem;
}
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; text-decoration-color: var(--signal); }

/* Formular */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field--full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: var(--t-base);
  padding: 0.75rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--slate-900);
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--slate-900); outline-offset: 0; }
.field textarea { resize: vertical; min-height: 150px; }

.honeypot {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--t-sm); }
.consent input { width: auto; margin-top: 0.35rem; flex: 0 0 auto; }

.form-status {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: var(--t-sm);
  margin-bottom: 1rem;
  display: none;
}
.form-status[data-state="loading"] { display: block; background: var(--paper-2); }
.form-status[data-state="ok"] { display: block; background: #e3f1e8; color: var(--ok); border: 1px solid var(--ok); }
.form-status[data-state="error"] { display: block; background: #f8e5e3; color: var(--error); border: 1px solid var(--error); }

/* Karte mit Einwilligung */
.map-box {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}
.map-box[data-loaded="true"] { padding: 0; display: block; }
.map-box iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.map-box__notice p { max-width: 42ch; margin-inline: auto; color: var(--slate-400); font-size: var(--t-sm); }

/* --- 12. Handlungsaufforderung ------------------------------------------- */

.cta-band {
  background: var(--signal);
  color: var(--slate-900);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.cta-band h2 { margin-bottom: 0.25rem; }
.cta-band p { margin: 0; max-width: 52ch; }

/* --- 13. Fußzeile -------------------------------------------------------- */

.site-footer {
  background: var(--slate-900);
  color: #a9b5c1;
  padding-block: clamp(3rem, 5vw, 4rem) 2rem;
  font-size: var(--t-sm);
}
.site-footer h4 {
  color: var(--white);
  font-size: var(--t-sm);
  font-weight: 600;
  font-stretch: 108%;
  margin-bottom: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--signal); }
.site-footer p { margin-bottom: 0.6rem; }
.footer-logo { height: 54px; margin-bottom: 1.25rem; }

.social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--white);
}
.social a:hover { background: var(--signal); border-color: var(--signal); color: var(--slate-900); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: var(--t-xs);
}
.footer-bottom ul { display: flex; gap: 1.25rem; }
.footer-bottom li { margin: 0; }

/* --- 14. Cookie-Hinweis -------------------------------------------------- */

.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 250;
  width: min(720px, calc(100% - 2rem));
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--signal);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(23, 34, 48, 0.22);
  padding: 1.25rem 1.5rem;
  display: none;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-bar[data-open="true"] { display: flex; }
.cookie-bar p { margin: 0; font-size: var(--t-sm); flex: 1 1 320px; }

/* --- 15. Rechtstexte ----------------------------------------------------- */

.legal h2 { font-size: var(--t-lg); margin-top: 2.5rem; }
.legal h2:first-child { margin-top: 0; }
.legal dl { margin: 0 0 1.5rem; }
.legal dt { font-weight: 600; margin-top: 0.75rem; }
.legal dd { margin: 0; }

/* --- 16. Symbole ---------------------------------------------------------- */

.icon { flex: 0 0 auto; display: inline-block; vertical-align: -0.22em; }
.header-cta .icon, .btn .icon { vertical-align: -0.2em; }
.contact-list .icon { color: var(--signal); margin-top: 0.3rem; }
.quickbar__item .icon { color: var(--signal); vertical-align: -0.24em; margin-right: 0.55rem; }

/* --- 17. Hilfsklassen & Bewegung ----------------------------------------- */

.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;
}

body.no-scroll { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__slide { transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header, .site-footer, .cookie-bar, .cta-band, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
}
