/* ============================================================
   Werbe · Atelier Klassen — styles.css
   Navy ist die Bühne, Gold ist Licht.
   ============================================================ */

/* ---------- Metrische Font-Fallbacks (gegen CLS beim Nachladen) ---------- */
@font-face {
  font-family: 'Cinzel Fallback';
  src: local('Times New Roman'), local('Georgia');
  size-adjust: 108%;
  ascent-override: 96%;
  descent-override: 26%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'SourceSans Fallback';
  src: local('Helvetica Neue'), local('Arial');
  size-adjust: 98%;
  ascent-override: 99%;
  descent-override: 27%;
  line-gap-override: 0%;
}

:root {
  --navy-deep: #081a30;
  --navy: #0d2747;
  --navy-brand: #003366;
  --gold: #e3b558;
  --gold-hell: #f0cd7d;
  --gold-ink: #775a15;
  --paper: #f6f2ea;
  --paper-tief: #ece5d8;
  --ink: #182335;
  --ink-soft: #46536b;
  --hell-auf-navy: #e9eef6;
  --grau-auf-navy: #a7b4c9;
  --font-display: 'Cinzel', 'Cinzel Fallback', 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'SourceSans Fallback', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 64px;
  --mitte-breite: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy-deep);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, video, canvas { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }

.mitte { max-width: var(--mitte-breite); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }
.schmal { max-width: 780px; }

h1, h2 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: 0.015em; }
h1 { font-size: clamp(1.9rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.4rem); margin-bottom: 0.6em; }
h3 { font-size: 1.15rem; line-height: 1.3; }

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.9em;
  font-weight: 600;
}
.dunkel .eyebrow, .hero .eyebrow { color: var(--gold); }

.einleitung { max-width: 640px; color: var(--ink-soft); margin-bottom: 1.5em; }
.dunkel .einleitung { color: var(--grau-auf-navy); }

section { padding-block: clamp(72px, 11vw, 130px); }
section[id] { scroll-margin-top: var(--header-h); }
.hell { background: var(--paper); color: var(--ink); }
.dunkel { background: var(--navy-deep); color: var(--hell-auf-navy); }

/* Goldene Zierlinie unter h2 auf dunklen Flächen — zeichnet sich beim Reveal */
.dunkel h2 { position: relative; padding-bottom: 0.45em; }
.dunkel h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 72px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s var(--ease) 0.25s;
}
.dunkel h2.rv.in::after, .dunkel h2.fertig::after { transform: scaleX(1); }

/* ---------- Reveal-System (das einzige) ---------- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* Skip-Link (sichtbar nur bei Tastatur-Fokus) */
.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 60;
  background: var(--gold);
  color: #241a05;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.25s var(--ease);
}
.skip-link:focus-visible { top: 0; }

/* Aufdeck-Textvarianten: ohne Hero-Video die ehrliche statische Fassung */
.nur-bewegt { display: none; }
.nur-statisch { display: inline; }
html.hero-bewegt .nur-bewegt { display: inline; }
html.hero-bewegt .nur-statisch { display: none; }

/* ---------- CTA (der eine, überall gleich) ---------- */
.cta {
  display: inline-block;
  background: var(--gold);
  color: #241a05;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 0;
  border-radius: 4px;
  padding: 0.78em 1.5em;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}
.cta:hover, .cta:focus-visible {
  background: var(--gold-hell);
  box-shadow: 0 6px 30px rgba(227, 181, 88, 0.35);
  transform: translateY(-1px);
}
.cta-gross { font-size: 1.06rem; padding: 0.9em 1.8em; }

.microcopy { font-size: 0.86rem; color: var(--grau-auf-navy); margin-top: 0.8em; }
.hell .microcopy { color: var(--ink-soft); }

/* ---------- Header ---------- */
.kopf {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
  padding-inline: clamp(16px, 3vw, 36px);
  background: rgba(8, 26, 48, 0.92);
  border-bottom: 1px solid rgba(227, 181, 88, 0.14);
}
.wortmarke, .wortmarke-fuss {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.14em;
  font-size: 0.98rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.hauptnav { display: flex; gap: 22px; margin-left: auto; }
.hauptnav a {
  color: var(--hell-auf-navy);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hauptnav a:hover, .hauptnav a:focus-visible { color: var(--gold); border-color: var(--gold); }
.cta-kopf { font-size: 0.86rem; padding: 0.6em 1.1em; }

.burger { display: none; margin-left: auto; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: var(--gold); margin: 5px auto; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobilnav[hidden] { display: none; }
.mobilnav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 39;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(227, 181, 88, 0.2);
  display: flex;
  flex-direction: column;
  padding: 18px clamp(18px, 5vw, 32px) 26px;
  gap: 4px;
}
.mobilnav a {
  color: var(--hell-auf-navy);
  text-decoration: none;
  padding: 12px 4px;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(167, 180, 201, 0.12);
}
.mobilnav a.cta { color: #241a05; text-align: center; margin-top: 14px; border-bottom: 0; }

/* ---------- 1 · Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-medien { position: absolute; inset: 0; }
.hero-medien picture, .hero-medien img, .hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video { opacity: 0; transition: opacity 1s var(--ease); }
.hero-video.laeuft { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(78deg, rgba(8, 26, 48, 0.82) 0%, rgba(8, 26, 48, 0.55) 30%, rgba(8, 26, 48, 0.12) 58%, rgba(8, 26, 48, 0) 72%),
    linear-gradient(to top, rgba(8, 26, 48, 0.85) 0%, rgba(8, 26, 48, 0.3) 34%, rgba(8, 26, 48, 0.05) 60%, rgba(8, 26, 48, 0.3) 100%);
}
.hero-inhalt {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--mitte-breite);
  margin-inline: auto;
  padding: 0 clamp(18px, 4vw, 40px) clamp(56px, 9vh, 110px);
  color: #fff;
}
.hero h1 { max-width: 20ch; text-wrap: balance; }
.hero-unterzeile { margin-top: 0.9em; max-width: 52ch; font-size: 1.08rem; color: var(--hell-auf-navy); }
.hero-cta-zeile { margin-top: 1.6em; }
.hero-hinweis {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(233, 238, 246, 0.5);
  border-radius: 14px;
}
.hero-hinweis span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--gold);
  animation: hinweis 2.2s var(--ease) infinite;
}
@keyframes hinweis {
  0%, 15% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  61%, 100% { transform: translateY(0); opacity: 0; }
}

/* Mobil: Zwei-Zonen-Hero (Text auf Navy, Bild darunter) */
@media (max-width: 719px) {
  .hero { flex-direction: column; align-items: stretch; min-height: auto; }
  .hero-medien { position: relative; inset: auto; order: 2; height: 46vh; min-height: 300px; }
  .hero-medien picture, .hero-medien img { position: absolute; }
  .hero-video { display: none; }
  .hero-scrim { display: none; }
  .hero-inhalt { order: 1; padding-top: 40px; padding-bottom: 40px; }
  .hero-hinweis { display: none; }
}

/* ---------- 2 · These-Erlebnis ---------- */
.these { padding-bottom: clamp(80px, 12vw, 150px); }
.schilder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 36px);
  margin-top: clamp(28px, 5vw, 48px);
}
.schild {
  border: 0;
  background: none;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  padding: 0;
}
.schild-flaeche {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: clamp(150px, 24vw, 240px);
  border-radius: 6px;
  padding: 24px 16px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.schild:hover .schild-flaeche, .schild:focus-visible .schild-flaeche { transform: translateY(-4px); }
.schild-a .schild-flaeche {
  background: #fdfdfd;
  border: 1px solid #c9c9c9;
  box-shadow: 0 2px 6px rgba(24, 35, 53, 0.08);
}
.sa-name { font-family: Arial, Helvetica, sans-serif; font-size: clamp(1.5rem, 3.4vw, 2.3rem); font-weight: bold; color: #1c1c1c; }
.sa-zeile { font-family: Arial, Helvetica, sans-serif; font-size: clamp(0.85rem, 1.6vw, 1.05rem); color: #444; }
.sa-klein { font-size: clamp(0.75rem, 1.3vw, 0.9rem); color: #c0392b; }
.schild-b .schild-flaeche {
  background: linear-gradient(160deg, #0d2747 0%, #081a30 100%);
  border: 1px solid rgba(227, 181, 88, 0.35);
  box-shadow: 0 12px 34px rgba(8, 26, 48, 0.35);
}
.schild:hover.schild-b .schild-flaeche, .schild-b:hover .schild-flaeche {
  box-shadow: 0 16px 44px rgba(8, 26, 48, 0.42), 0 0 40px rgba(227, 181, 88, 0.18);
}
.sb-name { font-family: var(--font-display); font-size: clamp(1.7rem, 3.8vw, 2.6rem); color: var(--gold); letter-spacing: 0.06em; text-shadow: 0 0 22px rgba(227, 181, 88, 0.45); }
.sb-linie { width: 64px; height: 1px; background: var(--gold); opacity: 0.7; }
.sb-zeile { font-size: clamp(0.72rem, 1.4vw, 0.85rem); letter-spacing: 0.24em; text-transform: uppercase; color: var(--hell-auf-navy); }
.schild-label { display: block; margin-top: 12px; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.schild.gewaehlt .schild-flaeche { outline: 3px solid var(--gold); outline-offset: 4px; }
.schild.gewaehlt .schild-label::after { content: ' · Ihre Wahl'; color: var(--gold-ink); font-weight: 700; }

.these-aufloesung {
  margin-top: clamp(32px, 6vw, 60px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  visibility: hidden;
}
.these-aufloesung.offen { opacity: 1; transform: none; visibility: visible; }
.these-aufloesung h3 { font-family: var(--font-display); font-size: clamp(1.25rem, 2.6vw, 1.7rem); margin-bottom: 0.5em; }
.these-aufloesung blockquote {
  margin-top: 1.4em;
  border-left: 2px solid var(--gold);
  padding-left: 1.2em;
  color: var(--ink-soft);
}
.these-aufloesung cite { display: block; margin-top: 0.5em; font-style: normal; font-size: 0.86rem; letter-spacing: 0.08em; color: var(--gold-ink); }

/* ---------- 3 · Aufdeck ---------- */
.aufdeck-lage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(24px, 4vw, 40px);
}
.aufdeck-liste { list-style: none; counter-reset: aufdeck; }
.aufdeck-liste li {
  counter-increment: aufdeck;
  position: relative;
  padding: 18px 0 18px 58px;
  border-bottom: 1px solid rgba(167, 180, 201, 0.14);
  color: var(--grau-auf-navy);
}
.aufdeck-liste li strong { color: #fff; display: block; margin-bottom: 2px; }
.aufdeck-liste li::before {
  content: counter(aufdeck);
  position: absolute;
  left: 0; top: 20px;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  border: 1px solid rgba(227, 181, 88, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(227, 181, 88, 0);
  transition: box-shadow 0.9s var(--ease);
}
.aufdeck-liste li.rv.in::before { box-shadow: 0 0 26px rgba(227, 181, 88, 0.35); }
.aufdeck-bild img { border-radius: 6px; }
.aufdeck-bild figcaption { font-size: 0.85rem; color: var(--grau-auf-navy); margin-top: 10px; }
.aufdeck-schluss { max-width: 720px; margin-top: clamp(24px, 4vw, 40px); color: var(--hell-auf-navy); font-size: 1.1rem; }

/* ---------- 4 · Methode / Flow ---------- */
.flow {
  --flow-gutter: 60px;
  --flow-gap: 26px;
  position: relative;
  padding-left: calc(var(--flow-gutter) + var(--flow-gap));
  margin-top: clamp(28px, 5vw, 52px);
  max-width: 860px;
}
.flow-svg {
  position: absolute;
  left: 0; top: 6px;
  width: var(--flow-gutter);
  height: calc(100% - 12px);
}
.flow-basis { stroke: rgba(0, 51, 102, 0.18); stroke-width: 2; }
.flow-gold { stroke: var(--gold); stroke-width: 3; stroke-linecap: round; }
.flow-schritte { list-style: none; display: grid; gap: clamp(40px, 7vw, 84px); }
.flow-schritt { max-width: 560px; position: relative; transform: translateX(10px); transition: transform 0.6s var(--ease); }
.flow-schritt h3 { color: var(--ink-soft); transition: color 0.6s var(--ease); }
.flow-schritt.aktiv h3 { color: var(--ink); }
.flow-schritt::before {
  content: '';
  position: absolute;
  left: calc(-1 * (var(--flow-gap) + var(--flow-gutter) / 2 + 8px));
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid rgba(0, 51, 102, 0.3);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.flow-schritt.aktiv { transform: none; }
.flow-schritt.aktiv::before { background: var(--gold); border-color: var(--gold-ink); box-shadow: 0 0 16px rgba(227, 181, 88, 0.5); }
.flow-nr {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold-ink);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 4px;
}
.flow-schritt h3 { margin-bottom: 0.3em; font-family: var(--font-display); font-size: 1.3rem; }
.flow-schritt p { color: var(--ink-soft); }
.flow-schluss { margin-top: clamp(32px, 5vw, 56px); font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--gold-ink); }

/* ---------- 5 · Verwandlungs-Scrub ---------- */
.verwandlung { padding: 0; }
.scrub-track { height: 380vh; }
.scrub-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: block;
}
.scrub-standbild, .scrub-standbild img, .scrub-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.scrub-canvas { visibility: hidden; }
.scrub-canvas.aktiv { visibility: visible; }
.scrub-kopfzeile {
  position: absolute;
  z-index: 3;
  top: calc(var(--header-h) + clamp(18px, 4vh, 48px));
  left: 0; right: 0;
  padding-inline: clamp(18px, 4vw, 40px);
  max-width: var(--mitte-breite);
  margin-inline: auto;
  color: #fff;
  text-shadow: 0 2px 18px rgba(8, 26, 48, 0.8);
  pointer-events: none;
}
.scrub-kopfzeile h2::after { display: none; }
.scrub-captions {
  position: absolute;
  z-index: 3;
  left: 0; right: 0;
  bottom: clamp(56px, 10vh, 92px);
  display: grid;
  max-width: var(--mitte-breite);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 40px);
  pointer-events: none;
}
.scrub-captions p {
  grid-area: 1 / 1;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 16px rgba(8, 26, 48, 0.9);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease) 0.18s, transform 0.5s var(--ease) 0.18s;
  max-width: 26ch;
}
.scrub-captions p.aktiv { opacity: 1; transform: none; }
.scrub-balken {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: rgba(233, 238, 246, 0.15);
}
.scrub-balken span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}
.scrub-hinweis {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 40px);
  bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(233, 238, 246, 0.65);
}
.scrub-statisch { display: none; padding: clamp(72px, 11vw, 130px) clamp(18px, 4vw, 40px); max-width: var(--mitte-breite); margin-inline: auto; }
.scrub-statisch-paar { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 3vw, 32px); }
.scrub-statisch img { border-radius: 6px; }
.scrub-statisch figcaption { margin-top: 10px; color: var(--grau-auf-navy); font-size: 0.92rem; }

/* Ohne JS bleibt die statische Vorher/Nachher-Strecke — JS aktiviert den Scrub */
.scrub-track { display: none; }
.scrub-statisch { display: block; }
html.scrub .scrub-track { display: block; }
html.scrub .scrub-statisch { display: none; }

/* ---------- 6 · Leistungen: Kartenfächer ----------
   Basis (Mobil / Tablet / No-JS / Reduced Motion): Karten im normalen Raster.
   Fächer-Modus nur unter html.fan-on (setzt fan.js bei Desktop ≥ 1100px + Motion;
   Breakpoint synchron an DREI Stellen: main.js-Lader, fan.js, hier). */
.fan-deck {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  max-width: 460px;
  margin: clamp(28px, 5vw, 52px) auto 0;
  padding-inline: clamp(18px, 4vw, 40px);
}
@media (min-width: 640px) { .fan-deck { grid-template-columns: 1fr 1fr; max-width: 920px; } }
.fan-slot { position: relative; }
.fan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--paper-tief);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(24, 35, 53, 0.08);
}
.fc-media { flex: none; aspect-ratio: 3 / 2; overflow: hidden; }
.fc-media picture { display: block; height: 100%; }
.fc-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform 1.2s var(--ease); }
.fan-card:hover .fc-media img { transform: scale(1.05); }
.fc-body { flex: 1; display: flex; flex-direction: column; padding: 18px 22px 22px; }
.fc-body h3 { font-family: var(--font-display); margin-bottom: 0.35em; }
.fc-body h3 a { color: inherit; text-decoration: none; }
.fan-card:hover .fc-body h3 a, .fan-slot:focus-within .fc-body h3 a { color: var(--gold-ink); }
.fc-body p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.1em; }
.fc-more { margin-top: auto; align-self: flex-start; font-size: 0.9rem; font-weight: 600; color: var(--gold-ink); }
.fc-more::after { content: ' \2192'; transition: transform 0.35s var(--ease); display: inline-block; }
.fan-card:hover .fc-more::after { transform: translateX(4px); }
/* Stretched Link: die ganze Karte ist klickbar; der Fokus-Ring zeichnet über
   das ::after die ganze Karte nach (Outline am Link selbst würde nur den
   Titeltext umranden) */
.fc-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.fc-link:focus-visible { outline: none; }
.fc-link:focus-visible::after { outline: 3px solid var(--gold); outline-offset: -3px; border-radius: 6px; }


.zwischenruf {
  margin-top: clamp(48px, 8vw, 90px);
  text-align: center;
  border-top: 1px solid var(--paper-tief);
  padding-top: clamp(36px, 6vw, 64px);
}
.zwischenruf p { font-family: var(--font-display); font-size: clamp(1.2rem, 2.6vw, 1.65rem); margin-bottom: 1em; }

/* ---------- 7 · Referenzwand ---------- */
.logowand { margin-top: clamp(20px, 4vw, 40px); }
.logo-reihenlabel {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: clamp(26px, 4vw, 40px) 0 14px;
}
.logo-reihe {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 3vw, 40px) clamp(22px, 4vw, 48px);
  padding: clamp(18px, 3vw, 28px);
  background: rgba(13, 39, 71, 0.55);
  border: 1px solid rgba(227, 181, 88, 0.12);
  border-radius: 8px;
}
.logo-reihe li { display: flex; align-items: center; }
.logo-reihe img { height: 40px; width: auto; max-width: 230px; object-fit: contain; opacity: 0.92; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.logo-reihe li:hover img { opacity: 1; transform: translateY(-2px); }
.logo-fussnote { margin-top: 18px; font-size: 0.86rem; color: var(--grau-auf-navy); }

/* ---------- 8 · Netzwerk ---------- */
.netzkacheln {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: clamp(28px, 5vw, 48px);
}
.netzkacheln img { border-radius: 6px; }
.netzkacheln h3 { font-size: 0.95rem; letter-spacing: 0.1em; margin-top: 0.8em; font-family: var(--font-display); }
.netzkacheln p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- 9 · FAQ ---------- */
.faq { background: var(--paper); }
.faq-liste { margin-top: clamp(20px, 3vw, 32px); border-top: 1px solid var(--paper-tief); }
.faq-liste details { border-bottom: 1px solid var(--paper-tief); }
.faq-liste summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05em 36px 1.05em 0;
  font-weight: 600;
  position: relative;
}
.faq-liste summary::-webkit-details-marker { display: none; }
.faq-liste summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-ink);
  transition: transform 0.3s var(--ease);
}
.faq-liste details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-liste details p { padding: 0 0 1.2em; color: var(--ink-soft); max-width: 62ch; }

/* ---------- 10 · Kontakt ---------- */
.kontakt-lage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  margin-top: clamp(28px, 5vw, 52px);
  align-items: start;
}
.kontakt-anschrift { line-height: 1.7; color: var(--hell-auf-navy); }
.kontakt-anschrift strong { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.08em; }
.kontakt-wege { list-style: none; margin-top: 1.4em; display: grid; gap: 10px; }
.kontakt-wege li { display: grid; grid-template-columns: 120px 1fr; gap: 8px; color: var(--grau-auf-navy); }
.kontakt-wege span { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; padding-top: 3px; }
.kontakt-wege a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(227, 181, 88, 0.4); transition: border-color 0.3s var(--ease), color 0.3s var(--ease); }
.kontakt-wege a:hover, .kontakt-wege a:focus-visible { color: var(--gold); border-color: var(--gold); }
.kontakt-wege li:nth-child(1) a, .kontakt-wege li:nth-child(2) a { font-size: 1.25rem; font-weight: 600; }
.kontakt-marke { margin-top: 2em; max-width: 300px; }
.kontakt-marke img { border-radius: 6px; opacity: 0.9; }
.kontakt-signatur { margin-top: 1em; font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.06em; color: var(--gold); }

.kontakt-formular { background: var(--navy); border: 1px solid rgba(227, 181, 88, 0.16); border-radius: 8px; padding: clamp(20px, 3.5vw, 36px); }
.feld { margin-bottom: 18px; }
.feld label { display: block; font-size: 0.88rem; letter-spacing: 0.05em; color: var(--grau-auf-navy); margin-bottom: 6px; }
.feld input, .feld textarea {
  width: 100%;
  background: rgba(8, 26, 48, 0.7);
  color: #fff;
  border: 1px solid rgba(167, 180, 201, 0.3);
  border-radius: 4px;
  padding: 0.7em 0.9em;
  font: inherit;
  transition: border-color 0.3s var(--ease);
}
.feld input:focus-visible, .feld textarea:focus-visible { outline: none; border-color: var(--gold); }
.kontakt-formular .microcopy a { color: var(--gold); }

/* ---------- Footer ---------- */
.fuss { background: #050f1d; color: var(--grau-auf-navy); padding-block: 44px; font-size: 0.92rem; }
.fuss-lage { display: grid; gap: 10px; }
.wortmarke-fuss { color: #fff; }
.fuss a { color: var(--hell-auf-navy); text-decoration: none; border-bottom: 1px solid rgba(167, 180, 201, 0.3); }
.fuss a:hover { color: var(--gold); border-color: var(--gold); }
.fuss nav { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 4px; }
.fuss-notiz { margin-top: 10px; font-size: 0.84rem; }

/* ---------- Legal-Seiten ---------- */
.legal-inhalt { background: var(--paper); color: var(--ink); padding: calc(var(--header-h) + clamp(40px, 7vw, 80px)) 0 clamp(72px, 10vw, 120px); }
.legal-inhalt .mitte { max-width: 780px; }
.legal-inhalt h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 0.8em; }
.legal-inhalt h2 { font-size: 1.35rem; margin: 1.6em 0 0.5em; }
.legal-inhalt h3 { font-size: 1.1rem; margin: 1.4em 0 0.4em; }
.legal-inhalt p, .legal-inhalt li { color: var(--ink-soft); margin-bottom: 0.8em; overflow-wrap: anywhere; }
.legal-inhalt ul { padding-left: 1.2em; }
.legal-inhalt a { color: var(--gold-ink); }
.legal-zurueck { display: inline-block; margin-bottom: 2em; font-size: 0.9rem; color: var(--gold-ink); text-decoration: none; }
.legal-zurueck:hover { text-decoration: underline; }

/* ---------- 404 ---------- */
.fehlerseite {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
  color: var(--hell-auf-navy);
}
.fehlerseite h1 { color: #fff; margin-bottom: 0.4em; }
.fehlerseite .cta { margin-top: 1.6em; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hauptnav { display: none; }
  .cta-kopf { display: none; }
  .burger { display: block; }
  .netzkacheln { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kontakt-lage { grid-template-columns: 1fr; }
  .aufdeck-lage { grid-template-columns: 1fr; }
  .aufdeck-bild { max-width: 560px; }
}
@media (min-width: 981px) {
  .mobilnav { display: none !important; }
}
@media (max-width: 600px) {
  .schilder { grid-template-columns: 1fr; max-width: 420px; }
  .scrub-statisch-paar { grid-template-columns: 1fr; }
  .kontakt-wege li { grid-template-columns: 1fr; gap: 2px; }
  .flow { grid-template-columns: 42px minmax(0, 1fr); }
  .flow-svg { width: 42px; }
}

/* ---------- Reduced Motion: vollwertig, nicht kastriert ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .dunkel h2::after { transform: scaleX(1); transition: none; }
  .hero-video { display: none; }
  .hero-hinweis span { animation: none; }
  .these-aufloesung { transition: none; }
  .flow-schritt { transform: none; transition: none; }
  .flow-schritt h3 { color: var(--ink); }
  .flow-gold { stroke-dashoffset: 0 !important; }
  .flow-schritt::before { background: var(--gold); border-color: var(--gold-ink); }
  .aufdeck-liste li::before { transition: none; }
  .scrub-track { display: none; }
  .scrub-statisch { display: block; }
  .cta { transition: none; }
}
