/* ============================================================
   MOVE UMZUGPROFI, Hannover
   Eigenstaendiges Design-System, Schwarz + Gold (#f4b600)
   Fonts lokal: Outfit (Display, variable) + Inter (Text, variable)
   ============================================================ */

/* ---------- Fonts (selbst gehostet, kein CDN) ---------- */
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/outfit-var.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-var.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --ink: #16130e;
  --ink-2: #201c14;
  --ink-3: #2b2619;
  --gold: #f4b600;
  --gold-soft: #ffd757;
  --paper: #faf7f0;
  --paper-2: #f1ebdd;
  --white: #fffdf8;
  --muted: #5f584a;
  --muted-dark: #b5ac97;
  --line: rgba(22, 19, 14, 0.14);
  --line-dark: rgba(250, 247, 240, 0.14);
  --font-display: "Outfit", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow-card: 0 2px 6px rgba(22, 19, 14, 0.05), 0 18px 44px -18px rgba(22, 19, 14, 0.22);
  --shadow-pop: 0 4px 10px rgba(22, 19, 14, 0.08), 0 26px 60px -20px rgba(22, 19, 14, 0.35);
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 9px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.06;
  margin: 0 0 0.6em;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
p { margin: 0 0 1em; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}
.container.wide { width: min(1320px, 100% - 3rem); }

.ic {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--gold);
  flex: none;
}
.h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 740;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 56ch; }
.is-dark .lead { color: var(--muted-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.92rem 1.55rem;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  font-family: var(--font-display);
  font-weight: 680;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.btn:active { transform: scale(0.97); }
.btn .btn-arr { transition: transform 200ms var(--ease-out); }
.btn:hover .btn-arr { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 22px -8px rgba(244, 182, 0, 0.55);
}
.btn-gold:hover { background: var(--gold-soft); }

.btn-ghost-dark {
  border-color: var(--line-dark);
  color: var(--paper);
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover { background: var(--ink-3); }

.btn-ghost-light {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost-light:hover { border-color: var(--ink); }

.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.06rem; }
.btn-sm { padding: 0.6rem 1.05rem; font-size: 0.92rem; }

/* ============================================================
   Header
   ============================================================ */
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(22, 19, 14, 0.94);
  border-bottom: 1px solid rgba(250, 247, 240, 0.08);
  color: var(--paper);
  transition: background-color 240ms ease, box-shadow 240ms ease;
}
.site-head.scrolled { background: rgba(20, 17, 12, 0.99); box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.6); }
.head-inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: 82px;
}
.head-logo { display: inline-flex; align-items: center; flex: none; }
.head-logo img { height: 44px; width: auto; }
.head-nav {
  display: flex;
  gap: 1.55rem;
  margin-left: auto;
}
.head-nav a {
  font-size: 0.97rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(250, 247, 240, 0.82);
  position: relative;
  padding: 0.3rem 0;
}
.head-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}
.head-nav a:hover { color: var(--paper); }
.head-nav a:hover::after { transform: scaleX(1); }
.head-actions { display: flex; align-items: center; gap: 1rem; margin-left: 0.4rem; }
.head-nav ~ .head-actions { margin-left: 0; }
.head-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.97rem;
  text-decoration: none;
  color: var(--paper);
  white-space: nowrap;
}
.head-tel .ic { color: var(--gold); }
.head-tel:hover { color: var(--gold); }

.burger {
  display: none;
  background: none;
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  cursor: pointer;
  position: relative;
  flex: none;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 2px;
  background: var(--paper);
  transition: transform 260ms var(--ease-in-out), opacity 180ms ease, top 260ms var(--ease-in-out);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 30px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Mobile-Menue */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 82px 0 0 0;
  z-index: 39;
  background: var(--ink);
  color: var(--paper);
  padding: 1.4rem 1.5rem 2rem;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: grid; gap: 0.15rem; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
  padding: 0.75rem 0.4rem;
  border-bottom: 1px solid rgba(250, 247, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu nav a .ic { color: var(--gold); }
.mobile-menu-cta { display: grid; gap: 0.8rem; margin-top: 1.6rem; }
body.menu-open { overflow: hidden; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(3.2rem, 7vh, 5.5rem) 0 clamp(3rem, 6vh, 5rem);
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.4rem;
}
.hero-eyebrow .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(244, 182, 0, 0.18);
  flex: none;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0 0 1.3rem;
}
.hero h1 .line { display: block; }
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: 1.14rem;
  color: var(--muted-dark);
  max-width: 46ch;
  margin-bottom: 1.9rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.1rem; }
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.6rem;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: rgba(250, 247, 240, 0.85);
}
.hero-trust .ic { color: var(--gold); width: 1.25em; height: 1.25em; }

/* Route-Grafik im Hero-Hintergrund */
.hero-route {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: rgba(244, 182, 0, 0.3);
  z-index: 0;
}
.hero-route svg { width: 100%; height: 100%; }
.hero-route .route-path {
  stroke-dasharray: 8 12;
  animation: route-dash 70s linear infinite;
}
@keyframes route-dash {
  to { stroke-dashoffset: -1200; }
}

/* Hero-Visual */
.hero-visual { position: relative; }
.hero-photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  aspect-ratio: 4 / 4.6;
}
.hero-photo img,
.hero-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  will-change: transform;
  transform: translateY(var(--par, 0px)) scale(1.12);
  display: block;
}
.hero-photo { background: #0c0a06; }
.hero-live {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(12, 10, 6, 0.72);
  color: var(--paper);
  padding: 0.4rem 0.8rem 0.4rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-live .blip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(244, 182, 0, 0.6);
  animation: blip 1.8s var(--ease-out) infinite;
}
@keyframes blip {
  0% { box-shadow: 0 0 0 0 rgba(244, 182, 0, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(244, 182, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 182, 0, 0); }
}
.hero-card {
  position: absolute;
  left: clamp(-2.4rem, -3vw, -1rem);
  bottom: 2rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  max-width: 300px;
  box-shadow: var(--shadow-pop);
}
.hero-card-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: none;
}
.hero-card-ic .ic { width: 24px; height: 24px; }
.hero-card small { color: var(--muted); font-size: 0.86rem; line-height: 1.4; display: block; }

/* ---------- Marquee Einsatzgebiete ---------- */
.marquee {
  background: var(--gold);
  color: var(--ink);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(22, 19, 14, 0.18);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-move 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  flex: none;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
/* Standard-Pfeil-Icons durch feine Gold-Raute ersetzen */
.marquee-item .ic { display: none; }
.marquee-item::after {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--ink);
  transform: rotate(45deg);
  flex: none;
}
@keyframes marquee-move {
  to { transform: translateX(-50%); }
}

/* ============================================================
   Sektionen allgemein
   ============================================================ */
.section { padding: clamp(3.8rem, 9vh, 6.5rem) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vh, 3.4rem); }
.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem 4rem;
  align-items: end;
}
.section-head.split .lead { margin-bottom: 0.4rem; }
.is-dark { background: var(--ink); color: var(--paper); }
.is-dark :focus-visible { outline-color: var(--gold); }
.is-tint { background: var(--paper-2); }

/* ============================================================
   Versprechen-Band (3 nummerierte Zusagen)
   ============================================================ */
.promise { padding: clamp(3.4rem, 8vh, 5.5rem) 0; }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1.5px solid var(--ink);
}
.promise-item {
  padding: 2rem 2rem 2.2rem 0;
  position: relative;
}
.promise-item + .promise-item { padding-left: 2rem; border-left: 1.5px solid var(--line); }
.promise-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: var(--gold);
  display: inline-block;
  padding: 0.18rem 0.55rem;
  margin-bottom: 1.1rem;
}
.promise-item h3 {
  font-size: 1.34rem;
  font-weight: 730;
  margin-bottom: 0.45rem;
}
.promise-item p { color: var(--muted); font-size: 0.99rem; margin: 0; }

/* ============================================================
   Leistungen: Bento-Grid mit gemischten Kartentypen
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.15rem;
}
.svc {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 200ms ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 6px 14px rgba(22,19,14,.08), 0 34px 70px -26px rgba(22,19,14,.5); }
/* Gold-Linie faehrt bei Hover ueber die Kartenkante */
.svc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease-out);
  z-index: 3;
}
.svc:hover::before { transform: scaleX(1); }
/* Icon-Badge kippt bei Hover auf Gold */
.svc-ink .svc-icon, .svc-line .svc-icon {
  transition: background-color 260ms var(--ease-out), color 260ms var(--ease-out), transform 260ms var(--ease-out);
}
.svc-ink:hover .svc-icon, .svc-line:hover .svc-icon {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
/* Pfeil-Zeile, faehrt bei Hover hoch und ein */
.svc-go {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out), gap 260ms var(--ease-out);
}
.svc-ink .svc-go { color: var(--gold); }
.svc-gold .svc-go { color: var(--ink); }
.svc-line .svc-go { color: var(--ink); }
.svc-feature .svc-go, .svc-photo .svc-go { color: var(--gold); margin-top: 0.85rem; }
.svc:hover .svc-go { opacity: 1; transform: translateY(0); gap: 0.7rem; }
.svc-go .ic { width: 17px; height: 17px; }
/* Foto-Karten: Tag rueckt bei Hover leicht */
.svc-feature .svc-tag, .svc-photo .svc-tag { transition: transform 300ms var(--ease-out); }
.svc-feature:hover .svc-tag, .svc-photo:hover .svc-tag { transform: translateY(-2px); }
@media (hover: none) {
  .svc-go { opacity: 1; transform: none; }
}

/* grosse Foto-Karte */
.svc-feature {
  grid-column: span 7;
  grid-row: span 2;
  background: var(--ink);
  color: var(--paper);
  min-height: 520px;
  justify-content: flex-end;
}
.svc-feature .svc-img { position: absolute; inset: 0; }
.svc-feature .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.svc-feature:hover .svc-img img { transform: scale(1.045); }
.svc-feature .svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 12, 8, 0.92) 8%, rgba(15, 12, 8, 0.35) 45%, rgba(15, 12, 8, 0.05) 70%);
}
.svc-feature .svc-body { position: relative; padding: 1.8rem 2rem; }

/* mittlere Foto-Karte */
.svc-photo {
  grid-column: span 5;
  background: var(--ink);
  color: var(--paper);
  min-height: 250px;
  justify-content: flex-end;
}
.svc-photo .svc-img { position: absolute; inset: 0; }
.svc-photo .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.svc-photo:hover .svc-img img { transform: scale(1.045); }
.svc-photo .svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 12, 8, 0.9) 4%, rgba(15, 12, 8, 0.28) 48%, rgba(15, 12, 8, 0.04) 75%);
}
.svc-photo .svc-body { position: relative; padding: 1.5rem 1.7rem; }

/* dunkle Text-Karte */
.svc-ink {
  grid-column: span 5;
  background: var(--ink);
  color: var(--paper);
  padding: 1.7rem 1.7rem 1.6rem;
}
.svc-ink p { color: var(--muted-dark); }

/* Gold-Karte */
.svc-gold {
  grid-column: span 4;
  background: var(--gold);
  color: var(--ink);
  padding: 1.7rem 1.7rem 1.6rem;
}
.svc-gold p { color: rgba(22, 19, 14, 0.78); }

/* Outline-Karten */
.svc-line {
  grid-column: span 4;
  background: var(--white);
  border: 1.5px solid var(--line);
  padding: 1.7rem 1.7rem 1.6rem;
}
.svc-line:hover { border-color: var(--ink); }
.svc-line p { color: var(--muted); }

.svc-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 720;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.9rem;
}
.svc-ink .svc-tag { background: rgba(244, 182, 0, 0.16); color: var(--gold); }
.svc-gold .svc-tag { background: var(--ink); color: var(--gold); }
.svc-line .svc-tag { background: var(--paper-2); color: var(--ink); }

.svc h3 {
  font-size: 1.42rem;
  font-weight: 740;
  margin-bottom: 0.4rem;
}
.svc-feature h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.svc p { margin: 0; font-size: 0.99rem; max-width: 52ch; }

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.svc-ink .svc-icon { background: rgba(244, 182, 0, 0.14); color: var(--gold); }
.svc-gold .svc-icon { background: rgba(22, 19, 14, 0.12); color: var(--ink); }
.svc-line .svc-icon { background: var(--ink); color: var(--gold); }
.svc-icon .ic { width: 26px; height: 26px; }

/* ============================================================
   Ablauf: sticky Intro + Schritte mit Fortschrittslinie
   ============================================================ */
.flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.flow-intro { position: sticky; top: 110px; }
.flow-intro .h2 { color: var(--paper); }
.flow-note {
  margin-top: 2rem;
  border: 1.5px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
  display: flex;
  gap: 0.95rem;
  align-items: center;
  max-width: 420px;
}
.flow-note .ic { color: var(--gold); width: 30px; height: 30px; }
.flow-note small { color: var(--muted-dark); }

.flow-steps { position: relative; padding-left: 3.4rem; }
.flow-line {
  position: absolute;
  left: 22px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--line-dark);
}
.flow-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(var(--p, 0) * 100%);
  background: var(--gold);
}
.flow-step { position: relative; padding: 0 0 2.6rem; }
.flow-step:last-child { padding-bottom: 0.4rem; }
.flow-step-num {
  position: absolute;
  left: -3.4rem;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--line-dark);
  background: var(--ink);
  color: var(--muted-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 760;
  font-size: 0.95rem;
  transition: border-color 300ms ease, color 300ms ease, background-color 300ms ease;
}
.flow-step.passed .flow-step-num {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}
.flow-step p { color: var(--muted-dark); margin: 0; max-width: 52ch; }
.flow-extra {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}
.flow-extra .ic { width: 16px; height: 16px; }

/* ============================================================
   Galerie-Slider
   ============================================================ */
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.slider-nav { display: flex; gap: 0.6rem; flex: none; }
.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 160ms var(--ease-out), opacity 180ms ease;
}
.slider-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.slider-btn:active { transform: scale(0.94); }
.slider-btn[disabled] { opacity: 0.35; pointer-events: none; }
.slider-btn .ic { width: 22px; height: 22px; }

.gallery-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 min(560px, 82vw);
  scroll-snap-align: start;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  margin: 0;
}
.gallery-slide img,
.gallery-slide video {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  height: auto;
  display: block;
}
.gallery-video { background: #0c0a06; }
.gallery-slide figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(22, 19, 14, 0.86);
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.gallery-slide figcaption .ic { width: 14px; height: 14px; color: var(--gold); }

/* ============================================================
   Checkliste (interaktiv, abhakbar)
   ============================================================ */
.check-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.check-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.check-progress-bar {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.check-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 999px;
  transition: width 400ms var(--ease-out);
}
.check-progress-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}
.check-list { display: grid; gap: 0.7rem; margin: 0; padding: 0; list-style: none; }
.check-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 200ms ease, background-color 200ms ease;
}
.check-item label {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.4rem 0.9rem;
  padding: 1.02rem 1.2rem;
  cursor: pointer;
}
.check-item input {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: 7px;
  cursor: pointer;
  position: relative;
  transition: background-color 160ms ease;
  background: transparent;
  flex: none;
}
.check-item input:checked { background: var(--gold); }
.check-item input::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--ink);
  clip-path: polygon(14% 46%, 0 66%, 40% 100%, 100% 16%, 82% 0%, 38% 62%);
  transform: scale(0);
  transition: transform 200ms var(--ease-out);
}
.check-item input:checked::after { transform: scale(1); }
.check-when {
  font-family: var(--font-display);
  font-weight: 760;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--paper-2);
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
}
.check-task { font-size: 0.99rem; }
.check-item.done { border-color: rgba(196, 148, 4, 0.65); background: #fffaf0; }
.check-item.done .check-task { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(22, 19, 14, 0.4); }

.check-aside { display: grid; gap: 1.15rem; }
.check-aside-photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-2);
}
.check-aside-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; padding: 1.5rem; }
.check-aside-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.7rem;
}
.check-aside-card p { color: var(--muted-dark); font-size: 0.96rem; }
.check-aside-card .btn { margin-top: 0.4rem; }

/* ============================================================
   Ueber uns
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-photo img { width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; object-position: 60% 30%; height: auto; }
.about-badge {
  position: absolute;
  right: -0.9rem;
  bottom: 1.8rem;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 0.95rem 1.2rem;
  box-shadow: var(--shadow-pop);
  max-width: 250px;
}
.about-badge small { font-size: 0.85rem; color: rgba(22, 19, 14, 0.75); }
.about-points { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.about-points li { display: flex; gap: 0.8rem; align-items: flex-start; }
.about-points .pt {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 0.15rem;
}
.about-points .pt .ic { width: 15px; height: 15px; stroke-width: 2.4; }
.about-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1.5px solid var(--ink);
  margin-top: 2.2rem;
}
.about-fact { padding: 1.1rem 1rem 0 0; }
.about-fact b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  display: block;
  line-height: 1.1;
}
.about-fact span { font-size: 0.85rem; color: var(--muted); line-height: 1.35; display: block; margin-top: 0.2rem; }

/* ============================================================
   Einsatzgebiete: Radar-Karte
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.radar-wrap { position: relative; }
.radar { width: 100%; height: auto; display: block; }
.radar .ring { fill: none; stroke: var(--line-dark); stroke-width: 1; }
.radar .city-dot { fill: var(--paper); }
.radar .city-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  fill: rgba(250, 247, 240, 0.9);
}
.radar .center-dot { fill: var(--gold); }
.radar .center-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  opacity: 0.7;
  transform-origin: 260px 240px;
  animation: radar-pulse 3.2s var(--ease-out) infinite;
}
@keyframes radar-pulse {
  0% { transform: scale(0.28); opacity: 0.85; }
  100% { transform: scale(1.9); opacity: 0; }
}
.radar .center-label {
  font-family: var(--font-display);
  font-weight: 760;
  font-size: 16px;
  letter-spacing: 0.08em;
  fill: var(--gold);
  text-transform: uppercase;
}
.areas-copy .h2 { color: var(--paper); }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.5rem 0 1.8rem; }
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--line-dark);
  color: var(--paper);
  border-radius: 999px;
  padding: 0.44rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 500;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.area-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.area-chip:hover { border-color: var(--gold); background: rgba(244, 182, 0, 0.08); }
.areas-far {
  display: flex;
  gap: 1rem;
  align-items: center;
  border: 1.5px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
}
.areas-far .ic { width: 30px; height: 30px; color: var(--gold); }
.areas-far small { color: var(--muted-dark); }

/* ============================================================
   Kundenstimmen-Slider (Platzhalter)
   ============================================================ */
.quotes-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.quotes-viewport { overflow: hidden; }
.quotes-track {
  display: flex;
  transition: transform 480ms var(--ease-in-out);
}
.quote-slide { flex: 0 0 100%; padding: 0 2px; }
.quote-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  max-width: 780px;
  margin-inline: auto;
}
.quote-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}
.quote-stars {
  display: inline-flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.quote-stars svg { width: 20px; height: 20px; fill: var(--gold); stroke: none; }
.quote-stars .empty { fill: rgba(22, 19, 14, 0.16); }
.quote-card blockquote {
  margin: 0 0 1.3rem;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.placeholder-flag {
  display: inline-block;
  background: var(--paper-2);
  border: 1px dashed rgba(22, 19, 14, 0.35);
  border-radius: 6px;
  padding: 0.15rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}
.quote-who { display: flex; align-items: center; gap: 0.9rem; }
.quote-who > span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.quote-ava {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 760;
}
.quote-who span { font-size: 0.88rem; color: var(--muted); }
.quotes-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.6rem; }
.quotes-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(22, 19, 14, 0.22);
  cursor: pointer;
  padding: 0;
  transition: width 240ms var(--ease-out), background-color 240ms ease;
}
.quotes-dot[aria-current="true"] { width: 30px; background: var(--ink); }
.quotes-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.2rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.faq-callbox {
  margin-top: 1.8rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.7rem;
  max-width: 400px;
}
.faq-callbox p { color: var(--muted-dark); font-size: 0.95rem; }
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 200ms ease;
}
.faq-item.open { border-color: var(--ink); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
}
.faq-x {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 300ms var(--ease-in-out), background-color 200ms ease;
}
.faq-item.open .faq-x { background: var(--gold); transform: rotate(45deg); }
.faq-x .ic { width: 16px; height: 16px; stroke-width: 2.4; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease-in-out);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  padding: 0 1.35rem 1.25rem;
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

/* ============================================================
   Anfrage-Sektion (Formular)
   ============================================================ */
.ask-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.ask-copy .h2 { color: var(--paper); }
.ask-contacts { display: grid; gap: 0.9rem; margin-top: 2rem; }
.ask-contact {
  display: flex;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  border: 1.5px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  transition: border-color 180ms ease, transform 160ms var(--ease-out);
}
.ask-contact:hover { border-color: var(--gold); transform: translateX(4px); }
.ask-contact-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(244, 182, 0, 0.14);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: none;
}
.ask-contact-ic .ic { width: 22px; height: 22px; }
.ask-contact small { display: block; color: var(--muted-dark); font-size: 0.82rem; }

.ask-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-pop);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
}
.form-field { display: grid; gap: 0.35rem; align-content: start; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-display);
  font-weight: 680;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.form-field .req { color: #a33b00; }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 0.99rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.78rem 0.95rem;
  background: var(--white);
  color: var(--ink);
  width: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-field textarea { resize: vertical; min-height: 104px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(244, 182, 0, 0.35);
}
.ferr {
  font-size: 0.84rem;
  color: #a33b00;
  font-weight: 600;
  margin: 0;
}
.form-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
}
.form-consent input {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  margin: 0.1rem 0 0;
  cursor: pointer;
  position: relative;
  flex: none;
  background: transparent;
  transition: background-color 160ms ease;
}
.form-consent input:checked { background: var(--gold); }
.form-consent input::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--ink);
  clip-path: polygon(14% 46%, 0 66%, 40% 100%, 100% 16%, 82% 0%, 38% 62%);
  transform: scale(0);
  transition: transform 180ms var(--ease-out);
}
.form-consent input:checked::after { transform: scale(1); }
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.3rem;
}
.form-hint { font-size: 0.86rem; color: var(--muted); margin: 0; }
.form-ok {
  grid-column: 1 / -1;
  display: none;
  background: #f6efd8;
  border: 1.5px solid var(--gold);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  gap: 0.8rem;
  align-items: center;
}
.form-ok.show { display: flex; }
.form-ok .ic { color: var(--ink); width: 26px; height: 26px; }
.form-ok p { margin: 0; font-size: 0.95rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-foot {
  background: #100d09;
  color: var(--paper);
  padding: clamp(3rem, 7vh, 4.5rem) 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2.4fr));
  gap: 2.5rem;
  padding-bottom: 2.8rem;
}
.foot-brand img { height: 50px; width: auto; margin-bottom: 1.2rem; }
.foot-brand p { color: var(--muted-dark); font-size: 0.95rem; max-width: 36ch; }
.foot-col h3 {
  font-size: 0.8rem;
  font-weight: 740;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.foot-col a {
  color: rgba(250, 247, 240, 0.8);
  text-decoration: none;
  font-size: 0.96rem;
  transition: color 160ms ease;
}
.foot-col a:hover { color: var(--gold); }
.foot-col address { font-style: normal; color: rgba(250, 247, 240, 0.8); font-size: 0.96rem; line-height: 1.55; }
.foot-bar {
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  padding: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  font-size: 0.9rem;
  color: var(--muted-dark);
}
.foot-bar nav { display: flex; gap: 1.4rem; }
.foot-bar a { color: rgba(250, 247, 240, 0.75); text-decoration: none; }
.foot-bar a:hover { color: var(--gold); }
.foot-top {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---------- Mobile Sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 38;
  background: rgba(22, 19, 14, 0.97);
  border-top: 1px solid rgba(250, 247, 240, 0.12);
  padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  gap: 0.7rem;
}
.mobile-cta .btn { flex: 1; padding: 0.8rem 0.6rem; font-size: 0.95rem; }

/* ============================================================
   Rechtsseiten
   ============================================================ */
.legal-hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2.8rem, 6vh, 4rem) 0;
}
.legal-hero h1 {
  font-size: clamp(1.7rem, 4.5vw, 3.2rem);
  font-weight: 780;
  margin: 0;
  hyphens: auto;
  overflow-wrap: anywhere;
}
.legal-hero .eyebrow { color: var(--gold); }
.legal-body {
  width: min(760px, 100% - 3rem);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vh, 4rem) 0 4rem;
}
.legal-body h2 {
  font-size: 1.35rem;
  font-weight: 730;
  margin: 2.2em 0 0.6em;
}
.legal-body h2::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 0.7rem;
}
.legal-body p, .legal-body li { color: #3d382e; overflow-wrap: anywhere; }
.legal-body a { color: var(--ink); font-weight: 600; text-decoration-color: var(--gold); text-decoration-thickness: 2px; }
.legal-box {
  background: #fff7dd;
  border: 1.5px dashed rgba(22, 19, 14, 0.4);
  border-radius: var(--r-md);
  padding: 1rem 1.3rem;
  margin: 1.2rem 0;
}
.legal-box p { margin: 0; font-size: 0.95rem; }
.legal-list { padding-left: 1.2rem; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.7rem 1.2rem;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.legal-back:hover { border-color: var(--ink); background: var(--white); }

/* ============================================================
   Scroll-Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .head-nav { display: none; }
  .burger { display: block; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 2.6rem; }
  .hero-visual { max-width: 560px; }
  .hero-photo { aspect-ratio: 4 / 3.4; }
  .section-head.split { grid-template-columns: 1fr; align-items: start; }
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .svc-feature { grid-column: span 6; grid-row: auto; min-height: 430px; }
  .svc-photo, .svc-ink { grid-column: span 3; }
  .svc-gold, .svc-line { grid-column: span 3; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-intro { position: static; }
  .check-grid, .about-grid, .areas-grid, .faq-grid, .ask-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; }
  .radar-wrap { max-width: 560px; margin-inline: auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .head-tel span { display: none; }
  .head-tel .ic { width: 1.4em; height: 1.4em; }
  .head-cta { display: none; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-item { padding: 1.5rem 0; }
  .promise-item + .promise-item { padding-left: 0; border-left: 0; border-top: 1.5px solid var(--line); }
  .services-grid { grid-template-columns: 1fr; }
  .svc-feature, .svc-photo, .svc-ink, .svc-gold, .svc-line { grid-column: 1 / -1; }
  .svc-feature { min-height: 400px; }
  .svc-photo { min-height: 260px; }
  .about-facts { grid-template-columns: 1fr 1fr; }
  .check-item label { grid-template-columns: auto 1fr; }
  .check-item input { grid-row: 1 / span 2; }
  .check-when { grid-column: 2; justify-self: start; }
  .check-task { grid-column: 2; }
  .gallery-slide { flex-basis: 86vw; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 68px; }
  .foot-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .foot-bar { padding-bottom: 1.6rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-card { position: static; margin-top: 1rem; max-width: none; }
  .about-badge { position: static; margin-top: 1rem; max-width: none; display: block; }
}

/* ============================================================
   Reduzierte Bewegung: Animationen aus
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; }
  .hero-photo img { transform: none; }
  .radar .center-pulse { animation: none; opacity: 0; }
}
