/* =================================================================
   S.G. Autolackierungen – styles.css
   Mobile-first, DSGVO-konform (lokale Schriften, keine externen CDNs)
   ================================================================= */

/* ---------- Lokale Schriften (self-hosted, kein Google CDN) ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/grotesk-500.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/grotesk-600.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/grotesk-700.woff2") format("woff2");
}

/* ---------- Design Tokens ---------- */
:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-soft: #eef2f7;
  --ink: #0f1419;
  --ink-soft: #1c2530;
  --text: #2c3744;
  --muted: #5d6b7a;
  --border: #e2e8f0;
  --border-strong: #d4dce6;

  --accent: #1f6bff;
  --accent-deep: #1452cc;
  --accent-soft: rgba(31, 107, 255, 0.1);
  --accent-grad: linear-gradient(135deg, #2b7bff 0%, #1452cc 100%);

  --brand-cyan: #22b8e0; /* ausschließlich für "wowobot"-Branding */

  --radius-xl: 30px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 40px 90px rgba(15, 23, 42, 0.18);

  --page-pad: 1.25rem;
  --max-width: 1180px;

  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-deep);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

ul, ol { margin: 0; padding: 0; list-style: none; }

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

.container {
  width: 100%;
  max-width: calc(var(--max-width) + 2 * var(--page-pad));
  margin: 0 auto;
  padding-inline: var(--page-pad);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.2s ease;
  text-decoration: none;
}
.button:hover { text-decoration: none; }

.button-accent {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 107, 255, 0.32);
}
.button-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(31, 107, 255, 0.42);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover { transform: translateY(-2px); background: var(--ink-soft); }

.button-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.button-ghost:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.button-lg { min-height: 54px; padding: 1rem 1.85rem; font-size: 1.02rem; }
.button-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 250, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand:hover { text-decoration: none; }

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.brand-text span { color: var(--muted); font-size: 0.8rem; }

/* Burger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-list {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 340px);
  padding: 6rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.nav-list.open { transform: translateX(0); }

.nav-item {
  display: block;
  padding: 0.85rem 0.75rem;
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav-item:hover { background: var(--surface-soft); text-decoration: none; color: var(--accent-deep); }

.nav-cta-mobile { margin-top: 0.75rem; }
.nav-cta-mobile .button { width: 100%; }

.header-actions { display: none; }

/* Body-Scroll-Lock bei offenem Menü */
body.nav-open { overflow: hidden; }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(15, 20, 25, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-scrim.show { opacity: 1; visibility: visible; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1rem;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.eyebrow-light { color: rgba(255, 255, 255, 0.85); }
.eyebrow-light .eyebrow-dot { background: #fff; }

.section { padding: 4rem 0; }
.section-alt { background: var(--surface); }

.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.7rem, 5vw, 2.5rem); }
.section-sub {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-sub-light { color: rgba(255, 255, 255, 0.75); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 92vh;
  padding: 7rem 0 3rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; background: var(--ink); }
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fallback { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 20, 25, 0.55) 0%, rgba(15, 20, 25, 0.4) 35%, rgba(15, 20, 25, 0.88) 100%),
    linear-gradient(90deg, rgba(15, 20, 25, 0.6) 0%, rgba(15, 20, 25, 0.05) 70%);
}

.hero-inner { color: #fff; max-width: 760px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 8vw, 4.4rem);
  font-weight: 700;
}
.hero-lead {
  margin-top: 1.4rem;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2.6vw, 1.2rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 2.5rem;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
}
.hero-trust svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #5b9bff;
  background: rgba(91, 155, 255, 0.16);
  border-radius: 50%;
  padding: 3px;
}

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--ink);
  color: #fff;
}
.trustbar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.25rem var(--page-pad);
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}
.trust-item span { color: rgba(255, 255, 255, 0.66); font-size: 0.92rem; }

/* ---------- Service cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  margin-bottom: 1.1rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--muted); font-size: 0.98rem; }

.cards-note { margin-top: 2rem; color: var(--muted); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-sm);
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.15rem;
}
.about-badge span { color: var(--muted); font-size: 0.82rem; }

.about-copy h2 { font-size: clamp(1.7rem, 5vw, 2.4rem); margin-bottom: 1.1rem; }
.about-copy p { color: var(--text); margin-bottom: 1rem; }

.check-list { display: grid; gap: 0.7rem; margin: 1.5rem 0 2rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.check-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  padding: 3px;
  margin-top: 1px;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--accent-grad);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 22px rgba(31, 107, 255, 0.3);
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.step p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Galerie (dark) ---------- */
.section-dark { background: var(--ink); }
.section-dark .section-head h2 { color: #fff; }

/* Projekt im Fokus */
.project {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.project-main {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1c2530;
  box-shadow: var(--shadow);
}
.project-main img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.project-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-grad);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 107, 255, 0.35);
}
.project-side { color: rgba(255, 255, 255, 0.82); }
.project-title { color: #fff; font-size: 1.4rem; margin-bottom: 0.75rem; }
.project-text { color: rgba(255, 255, 255, 0.72); margin-bottom: 1.4rem; }

.project-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
.project-thumb {
  position: relative;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #1c2530;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.6;
}
.project-thumb img { width: 100%; height: 100%; object-fit: cover; }
.project-thumb:hover { opacity: 1; transform: translateY(-2px); }
.project-thumb.is-active { border-color: var(--accent); opacity: 1; }

/* Slider „Weitere Einblicke" */
.slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.slider-title { color: #fff; font-size: 1.3rem; }
.slider-nav { display: flex; gap: 0.5rem; }
.slider-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.slider-btn svg { width: 24px; height: 24px; }
.slider-btn:hover { background: rgba(255, 255, 255, 0.18); }
.slider-btn:disabled { opacity: 0.35; cursor: default; }
.slider-btn:disabled:hover { background: rgba(255, 255, 255, 0.08); }

.slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 calc(-1 * var(--page-pad));
  padding: 0 var(--page-pad);
}
.slider::-webkit-scrollbar { display: none; }
.slider-track {
  display: flex;
  gap: 0.85rem;
}
.slide {
  flex: 0 0 82%;
  scroll-snap-align: start;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #1c2530;
}
.slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- Standort ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.contact-facts { display: grid; gap: 1rem; margin: 1.5rem 0 2rem; }
.contact-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--ink-soft);
}
.contact-facts svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent-deep);
  margin-top: 2px;
}
.contact-facts a { color: var(--ink-soft); font-weight: 600; }

.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 20%, #e8eef6 0%, #dbe4ef 45%, #cdd8e6 100%);
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 20, 25, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 20, 25, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
}
.map-route {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 44%, rgba(31, 107, 255, 0.65) 44%, rgba(31, 107, 255, 0.65) 47%, transparent 47%),
    linear-gradient(60deg, transparent 60%, rgba(15, 20, 25, 0.12) 60%, rgba(15, 20, 25, 0.12) 62%, transparent 62%);
}
.map-pin {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
}
.map-pin svg { width: 30px; height: 30px; color: var(--accent-deep); }
.map-label {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(15, 20, 25, 0.88);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: start;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 1rem; }
.form-field { display: grid; gap: 0.45rem; margin-bottom: 1rem; }
.form-field label { font-weight: 600; color: var(--ink); font-size: 0.92rem; }

input,
textarea {
  width: 100%;
  background: var(--surface-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
input::placeholder,
textarea::placeholder { color: #9aa7b4; }
input:focus,
textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
textarea { resize: vertical; min-height: 130px; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.5rem 0 1.25rem;
}
.checkbox-group input {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.checkbox-group label { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }

.form-note { margin-top: 0.8rem; font-size: 0.85rem; color: var(--muted); }

.feedback {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
}
.feedback.is-error { background: #fdecec; color: #a12020; border: 1px solid #f4cfcf; }
.feedback.is-success { background: #e8f5ee; color: #1c6b3f; border: 1px solid #cce8d6; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 1.75rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-brand p { margin-top: 1rem; font-size: 0.95rem; max-width: 34ch; }
.brand-logo-footer { height: 56px; border-radius: 12px; }
.brand-footer .brand-mark { background: #fff; color: var(--ink); }
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text span { color: rgba(255, 255, 255, 0.6); }

.footer-col h2 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: rgba(255, 255, 255, 0.82); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  text-align: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-copy { font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); }
.powered { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }
.powered a { color: var(--brand-cyan); font-weight: 600; }
.powered a:hover { color: var(--brand-cyan); }

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal {
  padding: 3rem 0 4rem;
  background: var(--bg);
}
.legal-inner { max-width: 760px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--accent-deep);
}
.legal h1 { font-size: clamp(1.9rem, 6vw, 2.8rem); margin-bottom: 1.5rem; }
.legal h2 {
  font-size: 1.25rem;
  margin: 2.25rem 0 0.75rem;
}
.legal p,
.legal li { color: var(--text); margin-bottom: 0.75rem; }
.legal ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 0.75rem; }
.legal .placeholder {
  background: #fff8e6;
  border: 1px solid #f3e0a8;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  color: #8a6d12;
  font-size: 0.92rem;
  display: inline-block;
}
.legal address { font-style: normal; }

/* ---------- Reveal-Animationen ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .trustbar-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 880px) {
  .section { padding: 5.5rem 0; }
  .hero { padding-top: 8rem; }

  .nav-toggle { display: none; }
  .nav-scrim { display: none; }
  .nav-cta-mobile { display: none; }

  .nav-list {
    position: static;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    overflow: visible;
  }
  .nav-item { padding: 0.5rem 0.9rem; font-size: 0.95rem; }
  body.nav-open { overflow: auto; }

  .brand-logo { height: 56px; }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
  }
  .header-phone svg { width: 20px; height: 20px; color: var(--accent-deep); }
  .header-phone:hover { text-decoration: none; color: var(--accent-deep); }

  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .trustbar-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }

  .about-grid { grid-template-columns: 1fr 1.05fr; gap: 3.5rem; }
  .location-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; }

  .project {
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
  }
  .project-main img { aspect-ratio: 4 / 3; }
  .slide { flex-basis: calc((100% - 2 * 0.85rem) / 3); }

  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1100px) {
  .hero h1 { font-size: 4.4rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }

  /* Bei reduzierter Bewegung: Video aus, statisches Bild zeigen */
  .hero-video { display: none; }
  .hero-fallback { display: block; }
}
