/* ============================================================
   Caravan Solutions GmbH – style.css
   ------------------------------------------------------------
   Aufbau:
   01  Schriften (lokal eingebunden)
   02  Design-Tokens (Farben, Typografie, Abstände)
   03  Basis & Reset
   04  Utilities (Container, Buttons, Eyebrow, Skip-Link)
   05  Ladeanimation
   06  Header & Navigation
   07  Hero
   08  Sektionen (Über uns, Statistik, Leistungen, Vorteile)
   09  Galerie
   10  Bewertungen
   11  FAQ (Akkordeon)
   12  Formular
   13  CTA & Kontakt
   14  Footer
   15  Schnellkontakt & Scroll-to-Top
   16  Cookie-Banner
   17  Rechtstexte / Inhaltsseiten / 404
   18  Scroll-Reveal-Animationen
   19  Responsive Breakpoints
   20  Reduced Motion & Print
   ============================================================ */

/* ---------- 01 Schriften (lokal, keine externen Requests) ---------- */
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/manrope-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/manrope-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/manrope-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 800; font-display: swap; src: url('/assets/fonts/manrope-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/inter-latin-700-normal.woff2') format('woff2'); }

/* ---------- 02 Design-Tokens ---------- */
:root {
  /* Farbwelt: Weiss, Anthrazit, Dunkelgrau, Alpinblau als Akzent */
  --c-white:      #FFFFFF;
  --c-bg:         #F6F7F8;   /* Nebelgrau – heller Sektionshintergrund */
  --c-anthracite: #16181B;   /* Anthrazit – dunkle Flächen */
  --c-graphite:   #23262B;   /* Dunkelgrau – Karten auf dunklem Grund */
  --c-ink:        #1D2126;   /* Überschriften */
  --c-text:       #3E454D;   /* Fliesstext */
  --c-muted:      #6C737B;   /* Sekundärtext */
  --c-line:       #E4E7EA;   /* Hairlines */
  --c-line-dark:  #33373D;
  --c-accent:     #2F6DB5;   /* Alpinblau */
  --c-accent-dark:#245689;
  --c-accent-soft:#EAF1F8;
  --c-star:       #E8B84B;   /* dezentes Gold für Sterne */

  /* Typografie */
  --f-display: 'Manrope', 'Inter', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(22,24,27,.06), 0 4px 14px rgba(22,24,27,.05);
  --shadow-md: 0 2px 6px rgba(22,24,27,.07), 0 14px 34px rgba(22,24,27,.10);
  --header-h: 76px;

  /* Bewegung */
  --ease: cubic-bezier(.22,.61,.24,1);
  --dur: .45s;
}

/* ---------- 03 Basis & Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-family: var(--f-display); color: var(--c-ink); line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.015em; }
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.3rem; font-weight: 700; }
p  { margin: 0 0 1.1em; }
a  { color: var(--c-accent); text-decoration: none; }
a:hover { color: var(--c-accent-dark); }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--c-accent); color: #fff; }

/* ---------- 04 Utilities ---------- */
.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--tinted { background: var(--c-bg); }
.section--dark { background: var(--c-anthracite); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #C6CBD1; }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--f-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--c-accent);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--c-accent); }
.section-head--center .eyebrow::after { content: ""; width: 34px; height: 2px; background: var(--c-accent); }
.lead { font-size: 1.15rem; color: var(--c-muted); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--c-anthracite); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-display); font-weight: 700; font-size: 1rem;
  padding: .95rem 1.9rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn--sm { padding: .65rem 1.3rem; font-size: .92rem; }
.btn--lg { padding: 1.1rem 2.3rem; font-size: 1.06rem; }
.btn--primary { background: var(--c-accent); color: #fff; }
.btn--primary:hover { background: var(--c-accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(47,109,181,.35); }
.btn--dark { background: var(--c-anthracite); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.28); }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.btn--ghost:hover { border-color: var(--c-ink); color: var(--c-ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--c-ink); }
.btn--light:hover { color: var(--c-ink); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.3); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

/* ---------- 05 Ladeanimation ---------- */
.page-loader {
  position: fixed; inset: 0; z-index: 400; display: grid; place-items: center;
  background: var(--c-anthracite);
  transition: opacity .5s var(--ease), visibility .5s;
}
.page-loader.is-done { opacity: 0; visibility: hidden; }
.page-loader__mark { text-align: center; }
.page-loader__word {
  display: block; font-family: var(--f-display); font-weight: 800; letter-spacing: .04em;
  color: #fff; font-size: clamp(1.2rem, 3.5vw, 1.7rem); margin-bottom: .9rem;
}
.page-loader__bar {
  display: block; width: 150px; height: 2px; margin-inline: auto;
  background: rgba(255,255,255,.18); position: relative; overflow: hidden; border-radius: 2px;
}
.page-loader__bar::after {
  content: ""; position: absolute; inset: 0; width: 40%;
  background: var(--c-accent); border-radius: 2px;
  animation: loaderSlide 1s var(--ease) infinite;
}
@keyframes loaderSlide { from { transform: translateX(-120%);} to { transform: translateX(300%);} }

/* ---------- 06 Header & Navigation ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 200; height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Auf dunklem Hero: helle Schrift; nach dem Scrollen: weisser Balken */
.site-header .brand, .site-header .nav__link, .site-header .nav__phone { color: #fff; }
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-line), 0 8px 26px rgba(22,24,27,.06);
}
.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav__link,
.site-header.is-scrolled .nav__phone { color: var(--c-ink); }
.site-header.is-scrolled .brand__mark { --brand-window: #fff; }

/* Auf hellen Unterseiten (body.page-light) ist der Header immer hell */
.page-light .site-header { background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--c-line); }
.page-light .site-header .brand, .page-light .site-header .nav__link, .page-light .site-header .nav__phone { color: var(--c-ink); }
.page-light .site-header .brand__mark { --brand-window: #fff; }

.brand { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--f-display); }
.brand__mark { width: 44px; height: 32px; flex: none; }
.brand__text { font-weight: 800; font-size: 1.06rem; letter-spacing: .01em; line-height: 1.1; display: flex; flex-direction: column; }
.brand__text small { font-weight: 500; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; opacity: .75; }

.nav__list { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  font-weight: 600; font-size: .98rem; position: relative; padding: .3rem 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--c-accent); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav__contact { display: flex; align-items: center; gap: 1.1rem; }
.nav__phone { font-weight: 600; font-size: .95rem; }

/* Hamburger */
.nav-toggle {
  display: none; position: relative; z-index: 220;
  width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-toggle__line { width: 26px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.site-header .nav-toggle { color: #fff; }
.site-header.is-scrolled .nav-toggle, .page-light .nav-toggle, .nav-open .nav-toggle { color: var(--c-ink); }
.nav-open .site-header .nav-toggle { color: #fff; }
.nav-open .nav-toggle__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle__line:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 07 Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: -12% 0; z-index: -2; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { /* Verlaufsüberlagerung für Lesbarkeit */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(75deg, rgba(12,14,16,.78) 0%, rgba(12,14,16,.55) 45%, rgba(12,14,16,.22) 100%);
}
.hero__inner { padding: calc(var(--header-h) + 3rem) 0 6rem; max-width: 780px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--f-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .2em; text-transform: uppercase; color: #DDE5EC; margin-bottom: 1.4rem;
}
.hero__eyebrow::before { content: ""; width: 40px; height: 2px; background: var(--c-accent); }
.hero h1 { color: #fff; margin-bottom: 1.1rem; text-wrap: balance; }
.hero__text { font-size: clamp(1.08rem, 2vw, 1.28rem); color: #D8DDE2; max-width: 560px; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Scroll-Indikator */
.hero__scroll {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: #C9CFD6; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 44px; background: rgba(255,255,255,.35); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: #fff;
  animation: scrollHint 2.1s var(--ease) infinite;
}
@keyframes scrollHint { 0% { transform: translateY(-100%);} 55% { transform: translateY(0);} 100% { transform: translateY(100%);} }

/* ---------- 08 Sektionen ---------- */
/* Über uns */
.about { display: grid; gap: clamp(2rem, 5vw, 4.5rem); grid-template-columns: 1.05fr .95fr; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about__badge {
  position: absolute; right: -1rem; bottom: -1.2rem;
  background: var(--c-anthracite); color: #fff; border-radius: var(--radius);
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-md); text-align: center;
}
.about__badge strong { display: block; font-family: var(--f-display); font-size: 1.9rem; font-weight: 800; line-height: 1; }
.about__badge span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #AEB4BB; }

/* Statistikband (Signature-Element) */
.stats { border-block: 1px solid var(--c-line-dark); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: clamp(2.2rem, 4vw, 3.4rem) 1.2rem; text-align: center;
  border-left: 1px solid var(--c-line-dark);
}
.stat:first-child { border-left: 0; }
.stat__icon { width: 34px; height: 34px; margin: 0 auto .9rem; color: var(--c-accent); }
.stat__icon svg { width: 100%; height: 100%; }
.stat__value { font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; line-height: 1; }
.stat__label { margin-top: .55rem; color: #9AA1A8; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }

/* Leistungs-Karten */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.service-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card__media { overflow: hidden; aspect-ratio: 16/10; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 1.7rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.service-card__body p { color: var(--c-muted); flex: 1; }
.service-card__link {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-family: var(--f-display); color: var(--c-ink);
}
.service-card__link svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.service-card__link:hover { color: var(--c-accent); }
.service-card__link:hover svg { transform: translateX(5px); }

/* Vorteile */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.benefit {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; display: flex; flex-direction: column; gap: .8rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.benefit__icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--c-accent-soft); color: var(--c-accent);
}
.benefit__icon svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 1.02rem; margin: 0; }
.benefit p { font-size: .92rem; color: var(--c-muted); margin: 0; }

/* ---------- 09 Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3;
}
.gallery__item--wide { grid-column: span 2; aspect-ratio: auto; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0; padding: 2rem 1.1rem .9rem;
  background: linear-gradient(transparent, rgba(12,14,16,.72));
  color: #fff; font-size: .88rem; font-weight: 500;
  opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery__item:hover figcaption, .gallery__item:focus-within figcaption { opacity: 1; transform: none; }

/* ---------- 10 Bewertungen ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.review {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 1.9rem; display: flex; flex-direction: column; gap: 1rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review__stars { display: flex; gap: .25rem; color: var(--c-star); }
.review__stars svg { width: 18px; height: 18px; }
.review__text { color: var(--c-text); font-size: 1rem; flex: 1; margin: 0; }
.review__author { display: flex; align-items: center; gap: .85rem; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--c-anthracite); color: #fff; font-family: var(--f-display); font-weight: 700; font-size: .95rem;
}
.review__name { font-weight: 700; color: var(--c-ink); font-family: var(--f-display); }
.review__meta { font-size: .85rem; color: var(--c-muted); }

/* ---------- 11 FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__item:first-child { border-top: 1px solid var(--c-line); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--f-display); font-weight: 700; font-size: 1.08rem; color: var(--c-ink);
  transition: color .3s var(--ease);
}
.faq__question:hover { color: var(--c-accent); }
.faq__icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: currentColor; border-radius: 2px;
  transition: transform .4s var(--ease);
}
.faq__icon::before { width: 16px; height: 2px; }
.faq__icon::after { width: 2px; height: 16px; }
.faq__item.is-open .faq__icon::after { transform: rotate(90deg); }
.faq__answer { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease); }
.faq__answer-inner { padding: 0 2.4rem 1.4rem 0; color: var(--c-muted); }

/* ---------- 12 Formular ---------- */
.form-wrap {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem 1.3rem; }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: .93rem; color: var(--c-ink); }
.form-field label .req { color: var(--c-accent); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; color: var(--c-ink); background: var(--c-bg);
  border: 1.5px solid var(--c-line); border-radius: 10px; padding: .85rem 1rem;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--c-accent); background: #fff; box-shadow: 0 0 0 4px rgba(47,109,181,.12);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field .field-error { display: none; font-size: .84rem; color: #B4342A; }
.form-field.has-error input, .form-field.has-error textarea, .form-field.has-error select { border-color: #B4342A; }
.form-field.has-error .field-error { display: block; }

/* Datei-Upload */
.file-drop {
  border: 2px dashed var(--c-line); border-radius: 12px; background: var(--c-bg);
  padding: 1.6rem 1.2rem; text-align: center; cursor: pointer; color: var(--c-muted);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.file-drop:hover, .file-drop.is-drag { border-color: var(--c-accent); background: var(--c-accent-soft); }
.file-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-drop strong { color: var(--c-accent); }
.file-list { list-style: none; margin: .7rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.file-list li {
  font-size: .85rem; background: var(--c-accent-soft); color: var(--c-accent-dark);
  border-radius: 999px; padding: .35rem .9rem;
}

/* Checkbox */
.form-check { display: flex; gap: .8rem; align-items: flex-start; font-size: .95rem; }
.form-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--c-accent); flex: none; }

/* Honeypot – für Menschen unsichtbar */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Statusmeldungen */
.form-status { display: none; border-radius: 12px; padding: 1.1rem 1.3rem; margin-bottom: 1.4rem; font-weight: 500; }
.form-status.is-visible { display: block; }
.form-status--success { background: #EAF6EE; color: #1F6B3A; border: 1px solid #BFE3CC; }
.form-status--error { background: #FBEDEC; color: #9E2F27; border: 1px solid #F0C7C3; }
.btn[disabled] { opacity: .6; cursor: wait; transform: none !important; box-shadow: none !important; }

/* ---------- 13 CTA & Kontakt ---------- */
.cta { position: relative; overflow: hidden; text-align: center; }
.cta::before { /* dezente Lichtkante */
  content: ""; position: absolute; inset: auto 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
}
.cta h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
.cta p { max-width: 540px; margin-inline: auto; margin-bottom: 2.2rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Kontaktbereich */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.contact-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm);
}
.contact-item { display: flex; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--c-line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item__icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--c-accent-soft); color: var(--c-accent);
}
.contact-item__icon svg { width: 21px; height: 21px; }
.contact-item h3 { font-size: .98rem; margin: 0 0 .2rem; }
.contact-item p, .contact-item a { margin: 0; font-size: .98rem; color: var(--c-text); }
.contact-item a:hover { color: var(--c-accent); }

/* Karte (2-Klick-Lösung, DSG-konform) */
.map-embed {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--c-graphite); box-shadow: var(--shadow-sm);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-embed__consent {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: 1rem;
  align-items: center; justify-content: center; text-align: center; padding: 2rem;
  color: #C6CBD1; background:
    radial-gradient(60% 60% at 50% 40%, rgba(47,109,181,.18), transparent),
    var(--c-graphite);
}
.map-embed__consent p { max-width: 420px; font-size: .93rem; margin: 0; }

/* ---------- 14 Footer ---------- */
.footer { background: var(--c-anthracite); color: #B8BEC4; padding: clamp(3.2rem, 7vw, 5rem) 0 2rem; }
.footer a { color: #DDE1E5; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.4rem; }
.brand--footer { color: #fff; margin-bottom: 1rem; }
.footer__desc { font-size: .95rem; max-width: 340px; }
.footer__title { color: #fff; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer__title--gap { margin-top: 1.6rem; }
.footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; font-size: .95rem; }
.footer__cookie-link { background: none; border: 0; padding: 0; color: #DDE1E5; font: inherit; cursor: pointer; text-align: left; }
.footer__cookie-link:hover { color: #fff; }
.footer__domain {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--c-line-dark); text-align: center;
}
.footer__domain a {
  font-family: var(--f-display); font-weight: 800; letter-spacing: .04em;
  font-size: clamp(1.2rem, 3vw, 1.7rem); color: #fff;
}
.footer__domain a:hover { color: var(--c-accent); }
.footer__bottom { text-align: center; margin-top: 1.4rem; font-size: .85rem; color: #7C838B; }
.footer__bottom p { margin: 0; }

/* ---------- 15 Schnellkontakt & Scroll-to-Top ---------- */
.quick-contact { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 150; display: flex; flex-direction: column; gap: .7rem; }
.quick-contact__btn {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quick-contact__btn svg { width: 24px; height: 24px; }
.quick-contact__btn--call { background: var(--c-accent); }
.quick-contact__btn--mail { background: var(--c-anthracite); }
.quick-contact__btn:hover { transform: translateY(-3px) scale(1.05); color: #fff; }

.to-top {
  position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 150;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--c-line);
  background: rgba(255,255,255,.92); color: var(--c-ink); cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.to-top svg { width: 20px; height: 20px; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--c-anthracite); color: #fff; border-color: var(--c-anthracite); }

/* ---------- 16 Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; z-index: 250; left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 620px; margin-inline: auto;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 1.4rem 1.5rem;
  animation: cookieIn .6s var(--ease);
}
@keyframes cookieIn { from { opacity: 0; transform: translateY(24px);} to { opacity: 1; transform: none;} }
.cookie-banner__text { font-size: .93rem; margin-bottom: 1rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: flex-end; }
.cookie-banner__settings { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--c-line); display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
.cookie-option { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; }
.cookie-option input { accent-color: var(--c-accent); width: 18px; height: 18px; margin-top: 2px; flex: none; }

/* ---------- 17 Rechtstexte / Inhaltsseiten / 404 ---------- */
.page-hero { background: var(--c-anthracite); color: #fff; padding: calc(var(--header-h) + clamp(3rem, 7vw, 5rem)) 0 clamp(2.6rem, 6vw, 4rem); }
.page-hero h1 { color: #fff; margin-bottom: .4rem; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.page-hero p { color: #B8BEC4; max-width: 640px; margin: 0; }
.legal { max-width: 800px; }
.legal h2 { font-size: 1.45rem; margin-top: 2.4rem; }
.legal h3 { font-size: 1.12rem; margin-top: 1.8rem; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: .4rem; }

.error-page { min-height: 100svh; display: grid; place-items: center; text-align: center; background: var(--c-anthracite); color: #fff; padding: 2rem; }
.error-page h1 { color: #fff; font-size: clamp(4rem, 14vw, 8rem); margin-bottom: .2rem; }
.error-page .error-page__accent { color: var(--c-accent); }
.error-page p { color: #B8BEC4; max-width: 460px; margin-inline: auto; margin-bottom: 2rem; }

/* ---------- 18 Scroll-Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal--left { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal.is-visible { opacity: 1; transform: none; }
/* gestaffelte Verzögerung für Kartenraster */
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ---------- 19 Responsive ---------- */
@media (max-width: 1080px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .nav__phone { display: none; }
}

@media (max-width: 920px) {
  /* Mobile: Vollbild-Menü */
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0; z-index: 210; flex-direction: column; justify-content: center; gap: 3rem;
    background: rgba(22,24,27,.98);
    opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
  }
  .nav-open .nav { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 1.6rem; text-align: center; }
  .nav__link { color: #fff !important; font-family: var(--f-display); font-size: 1.5rem; font-weight: 700;
    opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .nav-open .nav__link { opacity: 1; transform: none; }
  .nav-open .nav__list li:nth-child(1) .nav__link { transition-delay: .08s; }
  .nav-open .nav__list li:nth-child(2) .nav__link { transition-delay: .14s; }
  .nav-open .nav__list li:nth-child(3) .nav__link { transition-delay: .20s; }
  .nav-open .nav__list li:nth-child(4) .nav__link { transition-delay: .26s; }
  .nav-open .nav__list li:nth-child(5) .nav__link { transition-delay: .32s; }
  .nav-open .nav__list li:nth-child(6) .nav__link { transition-delay: .38s; }
  .nav__contact { flex-direction: column; }
  .nav__contact .nav__phone { display: block; color: #fff; }
  body.nav-open { overflow: hidden; }

  .about { grid-template-columns: 1fr; }
  .about__badge { right: 1rem; bottom: -1rem; }
  .services, .reviews { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--c-line-dark); }
  .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: auto; }
  .benefits { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--c-line-dark); }
  .stat:first-child { border-top: 0; }
  .hero__actions .btn { width: 100%; }
  .brand__text small { display: none; }
  .to-top { left: auto; right: 1.2rem; bottom: 9.4rem; }
}

/* ---------- 20 Reduced Motion & Print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__media { transform: none !important; }
}
@media print {
  .site-header, .quick-contact, .to-top, .cookie-banner, .page-loader, .hero__scroll { display: none !important; }
}
