/* ============================================================
   WISION DIGITAL — Vision zum digitalen Erfolg
   Relaunch 2026 · Scroll-Video-Bühne · Inhalt fliegt von den Seiten
   Logo des Hintergrundvideos bleibt mittig immer frei
   ============================================================ */

/* Lokale Schriften (self-hosted, DSGVO-konform — kein Google-Fonts-Request) */
@font-face{font-family:'Jost';font-style:normal;font-weight:400;font-display:swap;src:url('assets/fonts/jost-latin-400-normal.woff2') format('woff2')}
@font-face{font-family:'Jost';font-style:normal;font-weight:500;font-display:swap;src:url('assets/fonts/jost-latin-500-normal.woff2') format('woff2')}
@font-face{font-family:'Jost';font-style:normal;font-weight:600;font-display:swap;src:url('assets/fonts/jost-latin-600-normal.woff2') format('woff2')}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:500;font-display:swap;src:url('assets/fonts/playfair-display-latin-500-normal.woff2') format('woff2')}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:600;font-display:swap;src:url('assets/fonts/playfair-display-latin-600-normal.woff2') format('woff2')}
@font-face{font-family:'Playfair Display';font-style:italic;font-weight:500;font-display:swap;src:url('assets/fonts/playfair-display-latin-500-italic.woff2') format('woff2')}

:root {
  --bg: #0a0b14;
  --bg-2: #0e1020;
  --bg-card: #12142a;
  --gold: #c9a35c;
  --gold-bright: #e9cf9a;
  --gold-deep: #9a7836;
  --gold-grad: linear-gradient(110deg, #9a7836 0%, #c9a35c 35%, #f1ddb0 50%, #c9a35c 65%, #9a7836 100%);
  --ivory: #f4efe6;
  --muted: #b6b8c8;
  --line: rgba(201, 163, 92, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", system-ui, sans-serif;
  --shadow-text: 0 2px 24px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--bg); }
img, svg, video { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: 0.005em; }
h1 { font-size: clamp(2.5rem, 5.8vw, 4.7rem); }
h2 { font-size: clamp(2.05rem, 4.4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

.serif-i { font-style: italic; }

.gold-text {
  background: linear-gradient(110deg, #e6c87e 0%, #f5e4ab 50%, #e6c87e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
@keyframes shimmer { to { background-position: 200% center; } }
.gold-text.shimmer { background-size: 200% auto; animation: shimmer 6s linear infinite; }

.container { width: min(1240px, 92vw); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--gold); color: var(--bg);
  padding: 0.7rem 1.3rem; border-radius: 0 0 12px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--gold-bright);
  text-shadow: var(--shadow-text);
}
.kicker::before { content: ""; width: 42px; height: 1px; background: var(--gold); opacity: 0.8; }

/* ============================================================
   FESTE VIDEO-BÜHNE — Hintergrund hinter allem
   ============================================================ */
.stage {
  position: fixed; inset: 0; z-index: 0;
  background: #06070d;
  pointer-events: none;
}
.stage__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: contents;
}
/* Rand-Vignetten: dunkeln NUR die Seitenbänder + oben/unten ab.
   Die horizontale Mitte (Logo) bleibt bewusst frei. */
.stage__edges {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(6,7,13,0.26), rgba(6,7,13,0.26)),
    linear-gradient(90deg,
      rgba(6,7,13,0.9) 0%, rgba(6,7,13,0.46) 20%, rgba(6,7,13,0) 38%,
      rgba(6,7,13,0) 62%, rgba(6,7,13,0.46) 80%, rgba(6,7,13,0.9) 100%),
    linear-gradient(180deg,
      rgba(6,7,13,0.58) 0%, rgba(6,7,13,0) 16%,
      rgba(6,7,13,0) 84%, rgba(6,7,13,0.68) 100%);
}

/* Inhalt liegt über der Bühne */
.site-header, main, .site-footer, .wa-float, .skip-link { position: relative; z-index: 10; }

/* ============================================================
   HEADER — transparent über Video, Logo immer obenauf
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: 84px; display: flex; align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s, height 0.4s var(--ease);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,7,13,0.78), rgba(6,7,13,0));
  opacity: 1; transition: opacity 0.4s;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(8, 9, 16, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.scrolled::before { opacity: 0; }

.header-inner {
  width: min(1320px, 94vw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
}

.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border: 1px solid var(--gold);
  border-radius: 10px; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.05rem; color: var(--gold-bright);
  background: linear-gradient(145deg, rgba(201,163,92,0.22), rgba(10,11,20,0.55));
  box-shadow: 0 6px 22px rgba(0,0,0,0.45);
}
.brand-name {
  font-family: var(--sans); font-weight: 500; letter-spacing: 0.32em;
  font-size: 0.92rem; color: var(--ivory); text-transform: uppercase;
  text-shadow: var(--shadow-text);
}
.brand-logo {
  height: 46px; width: auto; display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.55));
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .brand-logo { height: 38px; }
.brand-logo--footer { height: 52px; }

.main-nav ul { display: flex; gap: 2rem; list-style: none; }
.main-nav a {
  color: var(--ivory); text-decoration: none; font-size: 0.82rem;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  transition: color 0.25s; position: relative; padding: 0.3rem 0;
  text-shadow: var(--shadow-text);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.main-nav a:hover { color: var(--gold-bright); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --pad: 0.95rem 1.7rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: var(--pad); border-radius: 100px; font-family: var(--sans);
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s;
  will-change: transform;
}
.btn-sm { padding: 0.62rem 1.15rem; font-size: 0.78rem; }
.btn-gold {
  background: var(--gold-grad); background-size: 200% auto;
  color: #1a1404; box-shadow: 0 10px 30px rgba(201,163,92,0.28);
}
.btn-gold:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201,163,92,0.4); }
.btn-line {
  border-color: var(--gold); color: var(--gold-bright);
  background: rgba(10,11,20,0.35); backdrop-filter: blur(6px);
}
.btn-line:hover { background: rgba(201,163,92,0.14); transform: translateY(-2px); }

/* ============================================================
   HERO — Video-Logo = Mittelpunkt, Text sitzt unten
   ============================================================ */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  text-align: left; padding: 7rem clamp(1.5rem, 7vw, 8rem) 5.5rem;
}
.hero-text { max-width: 600px; }
.hero-kicker { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; text-shadow: var(--shadow-text); }
.hero .lead {
  color: var(--ivory); max-width: 52ch; margin: 0 0 2.2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem); text-shadow: var(--shadow-text);
}
/* Buttons links beim Text (zusammenhängend) */
.hero-ctas { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }

.scrollcue {
  position: absolute; bottom: 1.7rem; left: 50%; transform: translateX(-50%);
  color: var(--gold-bright); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-decoration: none;
  text-shadow: var(--shadow-text); opacity: 0.85;
}
.scrollcue span {
  width: 1px; height: 38px;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.3; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: rgba(6,7,13,0.5); backdrop-filter: blur(4px);
  padding: 0.9rem 0;
}
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 28s linear infinite; }
.marquee-item {
  font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--gold-bright);
  opacity: 0.85; white-space: nowrap;
}
.marquee-item::after { content: "✦"; margin-left: 3rem; color: var(--gold); font-style: normal; font-size: 0.8rem; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   VSECTION — Bühnen-Sektionen · Inhalt an den Seiten
   ============================================================ */
.vsection {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding-block: clamp(5rem, 12vh, 9rem);
}
/* Seiten-Spalte: bleibt außerhalb der Mitte → Logo frei */
.side-col {
  width: min(470px, 40vw);
  max-width: 92vw;
}
.side-col--wide { width: min(540px, 41vw); }

.from-left .side-col { margin-right: auto; padding-left: clamp(1.25rem, 6vw, 7rem); }
.from-right .side-col { margin-left: auto; padding-right: clamp(1.25rem, 6vw, 7rem); }

/* Lesbarkeit: weiche Abdunklung hinter Prosa-Texten (kein harter Kasten) */
.side-col, .hero-text {
  background: radial-gradient(125% 140% at 50% 45%, rgba(6,7,13,0.6) 0%, rgba(6,7,13,0.32) 46%, rgba(6,7,13,0) 80%);
}

.section-head { margin-bottom: 2.2rem; }
.section-head h2, .vsection h2 { margin: 1.1rem 0 0.9rem; text-shadow: var(--shadow-text); }
.vsection p { color: var(--ivory); text-shadow: 0 1px 10px rgba(0,0,0,0.55); }
.section-head p { color: var(--muted); }

/* Reveal — dezenter Einflug von der jeweiligen Seite */
.reveal { opacity: 0; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: transform, opacity; }
.from-left .reveal  { transform: translateX(-38px); }
.from-right .reveal { transform: translateX(38px); }
.hero .reveal { transform: translateY(30px); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* Richtungs-Helfer (überschreiben Sektions-Richtung) — links/rechts/links */
.reveal.in-left  { transform: translateX(-44px); }
.reveal.in-right { transform: translateX(44px); }
.reveal.in-left.visible, .reveal.in-right.visible { transform: none; }

/* Leistungen — Karten wechseln die Seite: links / rechts / links, Mitte bleibt frei */
.leistungen .lst { width: min(1240px, 92vw); margin-inline: auto; display: flex; flex-direction: column; gap: 2.4rem; }
.leistungen .section-head { margin-bottom: 0.8rem; }
.col-left  { width: min(480px, 40vw); margin-right: auto; }
.col-right { width: min(480px, 40vw); margin-left: auto; }
.leistungen .service-card { width: min(470px, 40vw); }
.leistungen .card-left  { margin-right: auto; }
.leistungen .card-right { margin-left: auto; }

/* ---------- Leistungen ---------- */
.service-stack { display: flex; flex-direction: column; gap: 1rem; }
/* Leistungen: keine Boxen — reiner Text wie der Rest der Seite */
.service-card {
  display: flex; gap: 1.3rem; align-items: flex-start;
  padding: 0; border: 0; background: none; backdrop-filter: none;
}
.service-num { font-family: var(--serif); font-size: 1.85rem; color: var(--gold-bright); opacity: 0.85; min-width: 2ch; text-shadow: var(--shadow-text); }
.service-body h3 { margin-bottom: 0.45rem; color: var(--ivory); text-shadow: var(--shadow-text); }
.service-body p { color: #e8eaf4; font-size: 1.02rem; margin-bottom: 0.8rem; text-shadow: 0 1px 16px rgba(0,0,0,0.9), 0 0 3px rgba(0,0,0,0.7); }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-bright);
  border: 1px solid var(--line); border-radius: 100px; padding: 0.25rem 0.65rem; }
.service-arrow { margin-left: auto; color: var(--gold); font-size: 1.2rem; transition: transform 0.3s var(--ease); }
.service-card:hover .service-arrow { transform: translate(3px, -3px); }

/* ---------- Versprechen ---------- */
.promise blockquote { font-family: var(--serif); font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.18; margin: 1.2rem 0; text-shadow: var(--shadow-text); }
.promise p { color: var(--muted); max-width: 42ch; }
.sig { margin-top: 1.6rem; font-size: 0.85rem; color: var(--muted); display: flex; flex-direction: column; gap: 0.1rem; }
.sig strong { color: var(--gold-bright); font-family: var(--serif); font-size: 1.05rem; }

/* ---------- Über uns / Stats ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 2rem; }
.stat {
  border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.2rem;
  background: rgba(10,11,20,0.5); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.stat .num { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-bright); line-height: 1; }
.stat .lbl { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- Prozess ---------- */
.process { display: flex; flex-direction: column; gap: 1.4rem; position: relative; padding-left: 1.6rem; }
.process-line { position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px; background: var(--line); overflow: hidden; }
.process-line .fill { position: absolute; inset: 0 0 auto 0; height: 0; width: 100%; background: linear-gradient(var(--gold), var(--gold-deep)); transition: height 0.2s linear; }
.step { position: relative; }
.step-dot { position: absolute; left: -1.6rem; top: 0.35rem; width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--gold-deep); background: var(--bg); transition: background 0.3s, box-shadow 0.3s; }
.step.active .step-dot { background: var(--gold); box-shadow: 0 0 0 5px rgba(201,163,92,0.18); }
.step-tag { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.step h3 { margin: 0.3rem 0 0.4rem; color: var(--ivory); }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 1.4rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.05rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--serif); font-size: 1.08rem; color: var(--ivory);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .ic { color: var(--gold); font-size: 1.3rem; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item[open] .ic { transform: rotate(45deg); }
.faq-body { color: var(--muted); padding: 0 0 1.1rem; font-size: 0.96rem; max-width: 60ch; }

/* ---------- Kontakt ---------- */
.contact p { color: var(--ivory); max-width: 48ch; margin: 0.9rem 0 1.8rem; }
.contact-ctas { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 2rem; }
.contact-cards { display: flex; gap: 0.8rem; justify-content: flex-start; flex-wrap: wrap; }
.ccard {
  border: 1px solid var(--line); border-radius: 14px; padding: 0.9rem 1.3rem;
  background: rgba(10,11,20,0.55); backdrop-filter: blur(8px); min-width: 180px;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.ccard .lbl { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.ccard a { color: var(--ivory); text-decoration: none; font-size: 0.95rem; transition: color 0.25s; }
.ccard a:hover { color: var(--gold-bright); }

/* ============================================================
   FOOTER — geerdet, klar lesbar
   ============================================================ */
.site-footer {
  background: rgba(6,7,13,0.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: 3.5rem 0 2rem; margin-top: 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer p { color: var(--muted); font-size: 0.92rem; max-width: 34ch; }
.site-footer h3 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer a { color: var(--muted); text-decoration: none; font-size: 0.92rem; transition: color 0.25s; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  font-size: 0.82rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ============================================================
   WhatsApp-Float
   ============================================================ */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 120;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ============================================================
   MOBILE-NAV
   ============================================================ */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--gold-bright); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: rgba(8,9,16,0.97); backdrop-filter: blur(18px);
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    display: flex; align-items: center; justify-content: center; box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 1.8rem; text-align: center; }
  .main-nav a { font-size: 1rem; }

  /* Inhalt full-width mit Glas-Panel für Lesbarkeit; Video bleibt sichtbar in den Lücken */
  .vsection { min-height: auto; padding-block: 4.5rem; }
  .side-col, .side-col--wide { width: 100%; max-width: 600px; margin-inline: auto;
    padding: 1.6rem 1.4rem; border-radius: 18px;
    background: rgba(8,9,16,0.66); backdrop-filter: blur(10px); border: 1px solid var(--line); }
  .from-left .side-col, .from-right .side-col { padding-left: 1.4rem; padding-right: 1.4rem; text-align: left; }
  .from-right .side-col { text-align: left; }
  .from-right .side-col .kicker { flex-direction: row; }
  .from-left .reveal, .from-right .reveal { transform: translateX(0) translateY(26px); }
  .reveal.in-left, .reveal.in-right { transform: translateY(26px); }
  .reveal.visible { transform: none; }

  /* Leistungen: Karten stapeln voll-breit, leicht lesbarer Hintergrund */
  .leistungen .lst { width: 100%; }
  .leistungen .col-left, .leistungen .col-right, .leistungen .service-card {
    width: 100%; max-width: 600px; margin-inline: auto; }
  .leistungen .service-card { background: rgba(8,9,16,0.5); border: 1px solid var(--line); border-radius: 16px; padding: 1.3rem 1.2rem; backdrop-filter: blur(10px); }

  .stage__edges { background:
    linear-gradient(180deg, rgba(6,7,13,0.55) 0%, rgba(6,7,13,0.1) 18%, rgba(6,7,13,0.1) 82%, rgba(6,7,13,0.65) 100%); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .brand-logo { height: 34px; }
  .brand-logo--footer { height: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-cards { flex-direction: column; align-items: stretch; }
  .ccard { min-width: 0; }
}

/* ============================================================
   prefers-reduced-motion — statisches Logo-Bild statt Video
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stage__video { display: none; }
  .stage { background: #06070d url("assets/wision-bg-poster.jpg") center / cover no-repeat fixed; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none; }
  .gold-text.shimmer { animation: none; }
  .scrollcue span { animation: none; }
}

/* ============================================================
   Rechtsseiten (Impressum / Datenschutz) — wiederhergestellt
   ============================================================ */
.legal-hero { padding: 11rem 0 3rem; border-bottom: 1px solid var(--line); }
.legal-hero .kicker { margin-bottom: 1.2rem; }
.legal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.legal-content { max-width: 740px; padding: 3.5rem 0 6rem; }
.legal-content h2 { font-size: 1.4rem; margin: 2.4rem 0 0.8rem; color: var(--gold-bright); }
.legal-content p, .legal-content li { color: var(--muted); margin-bottom: 0.9rem; }
.legal-content ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.legal-content a { color: var(--gold); }
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold); text-decoration: none; font-size: 0.78rem;
  letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 2rem;
}
.back-link:hover { color: var(--gold-bright); }

/* ============================================================
   Cookie-Hinweis (selbst gehostet, kein Drittanbieter)
   ============================================================ */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
  max-width: 580px; margin-inline: auto;
  background: rgba(8,9,16,0.96); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 1.05rem 1.25rem; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { color: var(--muted); font-size: 0.84rem; line-height: 1.55; margin: 0; flex: 1; min-width: 240px; }
.cookie-banner a { color: var(--gold-bright); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .cookie-banner { backdrop-filter: none; } }
