/* ============================================================
   goeksmedia.li — main.css
   Konzept "Cinematic Frame": dunkle Bühne, Sucher-Motive,
   Orange nur als Punkt-Motiv + primäre CTAs.
   Struktur:
     01 Schrift  02 Reset/Basis  03 Utilities  04 Buttons
     05 Header/Navigation  06 Footer  07 Hero/Sucher
     08 Sektionen/Überschriften  09 Leistungs-Zeilen  10 Chips
     11 Work-Karten  12 Ablauf-Karten  13 Panel/Checkliste
     14 FAQ  15 CTA-Band  16 Kontakt  17 Prose/Legal
     18 Bewegung  19 Fokus/A11y
   ============================================================ */

/* ---------- 01 Schrift ---------- */
@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/urbanist-latin-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- 02 Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: #3f3f46 transparent;
}

body {
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font);
  font-size: var(--step-0);
  font-weight: 410;
  line-height: 1.65;
  min-height: 100vh;
}

body.nav-open { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--brand); color: var(--on-brand); }

h1, h2, h3, h4 {
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 640;
  text-wrap: balance;
}

main { padding-top: var(--header-h); }

/* ---------- 03 Utilities ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--flush-top { padding-top: 0; }

.dot { color: var(--brand); }

.label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-2);
}
.label--dim { color: var(--text-3); } /* nur dekorativ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* Filmkorn: winziges Inline-SVG, kein externes Asset */
.grain { position: relative; }
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 100;
  background: var(--brand);
  color: var(--on-brand);
  padding: .6rem 1.1rem;
  border-radius: var(--radius-s);
  font-weight: 650;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.hairline { border: 0; border-top: 1px solid var(--line); }

/* ---------- 04 Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 3rem;
  padding: .8rem 1.6rem;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: var(--step-0);
  font-weight: 650;
  letter-spacing: .01em;
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--brand); color: var(--on-brand); }
.btn--primary:hover { background: var(--brand-hover); color: var(--on-brand); }

.btn--ghost { border-color: var(--line-strong); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn--sm {
  min-height: 2.5rem;
  padding: .45rem 1.05rem;
  font-size: var(--step--1);
}

/* ---------- 05 Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(9, 9, 11, .82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  height: var(--header-h);
}

.brand { flex-shrink: 0; display: inline-flex; align-items: center; }
.brand img { height: 22px; width: auto; }

.header-cta { margin-left: auto; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Mobile: Vollbild-Overlay unterhalb des Headers */
.site-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  padding: calc(var(--header-h) + var(--space-5)) clamp(1.25rem, 5vw, 2.5rem) var(--space-6);
  background: rgba(9, 9, 11, .97);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--dur) var(--ease), visibility 0s linear var(--dur);
}
.site-nav.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity var(--dur) var(--ease);
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  counter-reset: nav;
}
.site-nav li { counter-increment: nav; }
.site-nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 1rem;
  font-size: var(--step-3);
  font-weight: 320;
  color: var(--text);
  padding: .25rem 0;
}
.site-nav a::before {
  content: "0" counter(nav);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--text-2);
}
.site-nav a[aria-current="page"]::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  align-self: center;
}

@media (min-width: 48rem) {
  .nav-toggle { display: none; }

  .site-nav {
    position: static;
    inset: auto;
    z-index: auto;
    padding: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    visibility: visible;
    opacity: 1;
    display: block;
    margin-left: auto;
  }
  .site-nav ul { flex-direction: row; gap: clamp(1.25rem, 2.5vw, 2rem); align-items: center; }
  .site-nav a {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-2);
    gap: .5rem;
    padding: .5rem 0;
  }
  .site-nav a::before { content: none; }
  .site-nav a:hover { color: var(--text); }
  .site-nav a[aria-current="page"] { color: var(--text); }

  .header-cta { margin-left: 0; }
}

/* ---------- 06 Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: var(--space-7) var(--space-5);
  margin-top: var(--space-6);
}

.footer-grid { display: grid; gap: var(--space-6); }

.footer-brand img { height: 20px; width: auto; }
.footer-brand p {
  margin-top: var(--space-3);
  max-width: 30ch;
}

.footer-col .label { display: block; margin-bottom: var(--space-3); }
.footer-col ul { list-style: none; display: grid; gap: .65rem; }
.footer-col a { color: var(--text-2); transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  justify-content: space-between;
  font-size: var(--step--1);
}
.footer-bottom a:hover { color: var(--text); }
.footer-legal { display: flex; gap: var(--space-4); }

@media (min-width: 48rem) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ---------- 07 Hero / Sucher ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1rem, 3vw, 2rem) clamp(2.5rem, 6vw, 4rem);
}
.hero > .container { position: relative; }

/* ---------- 07b Fliegende Neon-Icons (Deko hinter dem Sucher) ----------
   Jede Gruppe (.fly) enthält 3 identische Icons: das vorderste fliegt,
   zwei "Echos" folgen zeitversetzt und unscharf = Lichtspur. */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fly { position: absolute; width: var(--s); height: var(--s); }
.fly svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--c);
  opacity: .62;
  filter: drop-shadow(0 0 3px var(--c)) drop-shadow(0 0 11px var(--c));
}
.fly svg + svg { opacity: .3; filter: blur(1px) drop-shadow(0 0 6px var(--c)); }
.fly svg + svg + svg { opacity: .15; filter: blur(2px) drop-shadow(0 0 8px var(--c)); }

.c-brand { --c: #f3961c; }
.c-cyan { --c: #2ee6d6; }
.c-magenta { --c: #ff4fa3; }
.c-violet { --c: #8b5cf6; }
.c-white { --c: #e4e4e7; }

.fly-1 { left: 4%; top: 10%; --s: 42px; --dur: 28s; --del: -8s; }
.fly-2 { right: 6%; top: 14%; --s: 30px; --dur: 24s; --del: -14s; }
.fly-3 { left: 2%; top: 55%; --s: 50px; --dur: 34s; --del: -20s; }
.fly-4 { right: 3%; top: 40%; --s: 44px; --dur: 30s; --del: -5s; }
.fly-5 { left: 8%; top: 78%; --s: 28px; --dur: 25s; --del: -11s; }
.fly-6 { right: 10%; top: 84%; --s: 36px; --dur: 31s; --del: -26s; }
.fly-7 { right: 2%; top: 68%; --s: 38px; --dur: 22s; --del: -3s; }
.fly-8 { left: 6%; top: 30%; --s: 26px; --dur: 33s; --del: -17s; }
.fly-9 { left: 44%; top: 2%; --s: 28px; --dur: 21s; --del: -9s; }
.fly-10 { left: 20%; top: 6%; --s: 22px; --dur: 26s; --del: -22s; }
.fly-11 { right: 22%; top: 4%; --s: 26px; --dur: 28s; --del: -7s; }
.fly-12 { left: 12%; top: 88%; --s: 24px; --dur: 23s; --del: -13s; }
.fly-13 { right: 16%; top: 90%; --s: 30px; --dur: 36s; --del: -30s; }
.fly-14 { right: 30%; top: 88%; --s: 20px; --dur: 24s; --del: -19s; }
.fly-15 { left: 30%; top: 4%; --s: 24px; --dur: 27s; --del: -12s; }
.fly-16 { right: 12%; top: 26%; --s: 34px; --dur: 25s; --del: -6s; }
.fly-17 { left: 10%; top: 64%; --s: 30px; --dur: 23s; --del: -15s; }
.fly-18 { left: 38%; top: 92%; --s: 26px; --dur: 20s; --del: -4s; }
.fly-19 { right: 40%; top: 2%; --s: 22px; --dur: 26s; --del: -25s; }

.viewfinder {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--bg-elev);
  min-height: min(76vh, 44rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 12vh, 6.5rem) clamp(1.5rem, 6vw, 5rem);
}

/* Medienebene — SWAP CONTRACT: hier später echtes Foto/Video einsetzen,
   z. B. <video class="viewfinder-media" autoplay muted loop playsinline poster="…"> */
.viewfinder-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(243, 150, 28, .16), transparent 55%),
    radial-gradient(80% 70% at 12% 95%, rgba(243, 150, 28, .06), transparent 60%),
    linear-gradient(165deg, #15151a 0%, #0b0b0e 55%, #09090b 100%);
}

/* Foto-Variante (Startseite): Portrait + Scrim für Textkontrast + warmer Glow */
.viewfinder-media--photo {
  background-image:
    linear-gradient(90deg, rgba(9, 9, 11, .88) 0%, rgba(9, 9, 11, .55) 45%, rgba(9, 9, 11, .15) 78%, rgba(9, 9, 11, .35) 100%),
    linear-gradient(180deg, rgba(9, 9, 11, .35) 0%, transparent 30%, transparent 70%, rgba(9, 9, 11, .45) 100%),
    radial-gradient(120% 90% at 72% 20%, rgba(243, 150, 28, .12), transparent 55%),
    url('../img/hero-portrait.jpg');
  background-size: auto, auto, auto, cover;
  background-position: 0 0, 0 0, 0 0, 30% 28%;
  background-repeat: no-repeat;
  background-color: #0b0b0e;
}
@media (min-width: 48rem) {
  .viewfinder-media--photo {
    background-size: auto, auto, auto, auto 190%;
    background-position: 0 0, 0 0, 0 0, 16% 30%;
  }
}

/* AF-Effekt: belichteter Fokus-Spot (Kreis-Clip) + Reticle folgen der Maus.
   Nur mit Maus + erlaubter Bewegung aktiv (JS setzt .focus-on und --fx/--fy). */
.vf-focus-layer {
  opacity: 0;
  transition: opacity .4s var(--ease);
  clip-path: circle(8.5rem at var(--fx, 50%) var(--fy, 50%));
  filter: brightness(1.32) contrast(1.05);
  pointer-events: none;
}
.viewfinder.focus-on .vf-focus-layer { opacity: 1; }

.vf-focus {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 84px;
  height: 84px;
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
  will-change: transform;
}
.viewfinder.focus-on .vf-focus { opacity: 1; }

.vf-corner {
  position: absolute;
  z-index: 1;
  width: 16px; height: 16px;
  border: 0 solid var(--line-strong);
}
.vf-corner--tl { top: 12px; left: 12px; border-top-width: 1px; border-left-width: 1px; }
.vf-corner--tr { top: 12px; right: 12px; border-top-width: 1px; border-right-width: 1px; }
.vf-corner--bl { bottom: 12px; left: 12px; border-bottom-width: 1px; border-left-width: 1px; }
.vf-corner--br { bottom: 12px; right: 12px; border-bottom-width: 1px; border-right-width: 1px; }

.vf-hud {
  position: absolute;
  z-index: 1;
  left: clamp(1.25rem, 4vw, 2rem);
  right: clamp(1.25rem, 4vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.vf-hud--top { top: 1.15rem; }
.vf-hud--bottom { bottom: 1.15rem; }

.vf-rec {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--text-2);
}
.vf-rec::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.vf-optional { display: none; }
@media (min-width: 48rem) {
  .vf-optional { display: inline; }
}

.vf-content { position: relative; z-index: 1; max-width: 56rem; }

.hero-title {
  margin-top: var(--space-4);
  font-size: var(--step-5);
  font-weight: 285;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.hero-title strong { font-weight: 680; }

.hero-lede {
  margin-top: var(--space-4);
  font-size: var(--step-1);
  font-weight: 380;
  color: var(--text-2);
  max-width: 46ch;
}

.hero-ctas {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ---------- 08 Sektionen / Überschriften ---------- */
.section-head {
  display: grid;
  gap: var(--space-3);
  max-width: 48rem;
  margin-bottom: clamp(2.25rem, 6vw, 3.5rem);
}
.section-title { font-size: var(--step-3); }
.section-lead { color: var(--text-2); max-width: 56ch; }

.section-head--row { max-width: none; }
@media (min-width: 48rem) {
  .section-head--row {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .section-head--row .arrow-link { justify-self: end; }
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-2);
  font-weight: 550;
  transition: color var(--dur) var(--ease);
}
.arrow-link::after {
  content: "→";
  transition: transform var(--dur) var(--ease);
}
.arrow-link:hover { color: var(--brand); }
.arrow-link:hover::after { transform: translateX(4px); }

/* ---------- 09 Leistungs-Zeilen (Shotlist) ---------- */
.svc-list { list-style: none; border-top: 1px solid var(--line); }

.svc-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3) clamp(1rem, 4vw, 3rem);
  align-items: baseline;
  padding-block: clamp(1.5rem, 4vw, 2.25rem);
  border-bottom: 1px solid var(--line);
  transition: transform var(--dur) var(--ease);
}
a.svc-row:hover { transform: translateX(8px); }

.svc-num {
  font-family: var(--font-mono);
  font-size: var(--step-0);
  letter-spacing: .08em;
  color: var(--text-2);
}

.svc-body h3 {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: var(--step-2);
}
.svc-body h3::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
a.svc-row:hover h3::after { opacity: 1; }

.svc-body p {
  margin-top: .5rem;
  color: var(--text-2);
  max-width: 58ch;
}

.svc-arrow {
  display: none;
  font-family: var(--font-mono);
  font-size: var(--step-1);
  color: var(--text-3);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
a.svc-row:hover .svc-arrow { color: var(--brand); transform: translate(3px, -3px); }

@media (min-width: 48rem) {
  .svc-row { grid-template-columns: 3.5rem 1fr auto; }
  .svc-arrow { display: block; }
}

/* ---------- 10 Chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: var(--space-3);
  list-style: none;
}
.chip {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35em 1em;
  white-space: nowrap;
}

/* ---------- 11 Work-Karten ---------- */
.work-grid { display: grid; gap: var(--space-4); }
@media (min-width: 48rem) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* Hochformat-Reihe: mobil Filmstreifen mit Scroll-Snap, ab 48rem Grid */
.filmstrip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 68%;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-2);
  scrollbar-width: thin;
}
.filmstrip > * { scroll-snap-align: start; }
@media (min-width: 48rem) {
  .filmstrip {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-columns: auto;
    overflow: visible;
    gap: var(--space-4);
  }
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}
.work-media {
  display: block; /* auch als <span> nutzbar */
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.work-card--tall .work-media { aspect-ratio: 9 / 16; }
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.work-card:hover .work-media img { transform: scale(1.04); }

/* Innerer Rahmen blendet beim Hover ein — Sucher-Motiv */
.work-media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius-m) - 6px);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.work-card:hover .work-media::after { opacity: 1; }

.play-badge {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(9, 9, 11, .5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.play-badge::after {
  content: "";
  width: 0; height: 0;
  border-block: 7px solid transparent;
  border-left: 11px solid var(--text);
  margin-left: 3px;
}

.work-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--line);
}
.work-caption h3 { font-size: var(--step-0); font-weight: 600; }
.work-caption .label--dim { white-space: nowrap; }

/* Detailzeilen auf der Portfolio-Seite */
.work-details {
  display: grid;
  gap: var(--space-2);
  padding: 0 var(--space-4) var(--space-4);
}
.work-details p { color: var(--text-2); font-size: var(--step--1); max-width: 60ch; }

/* ---------- 12 Ablauf-Karten ---------- */
.steps { display: grid; gap: var(--space-4); }
@media (min-width: 48rem) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: var(--space-5);
}
.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.step-num {
  font-family: var(--font-mono);
  font-size: var(--step-1);
  color: var(--text-2);
  letter-spacing: .08em;
}
.step-card h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.step-card p { color: var(--text-2); }

/* ---------- 13 Panel / Checkliste ---------- */
.grid-split { display: grid; gap: var(--space-5); }
@media (min-width: 48rem) {
  .grid-split {
    grid-template-columns: 1.1fr .9fr;
    gap: var(--space-6);
    align-items: center;
  }
}

.panel {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 5vw, 2.5rem);
}

.checklist { list-style: none; display: grid; gap: var(--space-3); }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text-2);
}
.checklist li::before {
  content: "";
  width: 7px; height: 7px;
  margin-top: .55em;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
.checklist strong { color: var(--text); font-weight: 600; }

/* ---------- 14 FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding-block: var(--space-4);
  cursor: pointer;
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: var(--step-1);
  color: var(--brand);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-answer {
  padding-bottom: var(--space-4);
  color: var(--text-2);
  max-width: 65ch;
}

/* ---------- 14b Ticker (Film-Credits-Band, nur Startseite) ---------- */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: var(--space-3);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}
.ticker-track .tick-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* ---------- 14c Cursor-Spotlight (JS setzt --mx/--my) ---------- */
.has-glow { position: relative; }
.has-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .35s var(--ease);
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(243, 150, 28, .10), transparent 65%);
}
.has-glow:hover::before { opacity: 1; }

/* ---------- 15 CTA-Band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 6vw, 4rem);
  text-align: center;
  background:
    radial-gradient(90% 130% at 50% 125%, var(--brand-tint), transparent 60%),
    var(--bg-elev);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { justify-content: center; }
.cta-band h2 {
  font-size: var(--step-4);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-top: var(--space-3);
}
.cta-band h2 strong { font-weight: 660; }
.cta-band p {
  margin: var(--space-4) auto 0;
  max-width: 46ch;
  color: var(--text-2);
}
.cta-band .btn-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.cta-mail {
  display: inline-block;
  margin-top: var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--step-0);
  letter-spacing: .04em;
  color: var(--text-2);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--line-strong);
  transition: color var(--dur) var(--ease);
}
.cta-mail:hover { color: var(--brand); }

/* ---------- 16 Kontakt ---------- */
.contact-grid { display: grid; gap: var(--space-4); }
@media (min-width: 48rem) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card--primary { grid-column: 1 / -1; }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.contact-card h2, .contact-card h3 { font-size: var(--step-2); }
.contact-card .h3-size { font-size: var(--step-1); }
.contact-card p { color: var(--text-2); max-width: 52ch; }
.contact-card--primary {
  background:
    radial-gradient(100% 140% at 85% -20%, var(--brand-tint), transparent 55%),
    var(--bg-elev);
}

.copy-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.email-text {
  font-family: var(--font-mono);
  font-size: var(--step-1);
  letter-spacing: .02em;
  color: var(--text);
  user-select: all;
}

.info-grid { display: grid; gap: var(--space-4); }
@media (min-width: 48rem) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-item .label { display: block; margin-bottom: .5rem; }
.info-item p { color: var(--text-2); }

/* Anfrage-Formular (ohne Server: öffnet die Mail-App fertig ausgefüllt) */
.form-grid { display: grid; gap: var(--space-4); }
.form-field { display: grid; gap: .5rem; }
.form-field label {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: .7rem 1rem;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  transition: border-color var(--dur) var(--ease);
}
.form-field textarea { resize: vertical; min-height: 8rem; }
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: var(--text-3); }
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
  border-color: var(--brand);
}
.form-hint { font-size: var(--step--1); color: var(--text-2); }
.form-hint a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--brand);
}
.form-hint a:hover { color: var(--brand); }

/* ---------- 17 Prose / Legal ---------- */
.prose { max-width: 46rem; }
.prose h1 { font-size: var(--step-3); margin-bottom: var(--space-4); }
.prose h2 { font-size: var(--step-1); margin-top: var(--space-6); margin-bottom: var(--space-3); }
.prose p, .prose li { color: var(--text-2); margin-bottom: var(--space-3); }
.prose ul { padding-left: 1.15rem; }
.prose li { margin-bottom: var(--space-2); }
.prose li::marker { color: var(--brand); }
.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--brand);
  transition: color var(--dur) var(--ease);
}
.prose a:hover { color: var(--brand); }

/* ---------- 18 Bewegung ---------- */
/* Alles Opt-in: ohne JS (kein html.js) und bei reduzierter Bewegung
   ist jeder Inhalt sofort sichtbar. */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }

  html.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity var(--dur-slow) var(--ease),
      transform var(--dur-slow) var(--ease);
  }
  html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .viewfinder-media {
    animation: kenburns 38s var(--ease) infinite alternate;
  }
  @keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
  }

  .vf-rec::before {
    animation: rec-pulse 2.2s var(--ease) infinite;
  }
  @keyframes rec-pulse {
    0% { box-shadow: 0 0 0 0 rgba(243, 150, 28, .55); }
    70% { box-shadow: 0 0 0 9px rgba(243, 150, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 150, 28, 0); }
  }

  /* Hero-Eröffnung: Elemente erscheinen wie beim Einschalten der Kamera */
  html.js .vf-content > * {
    animation: hero-rise .7s var(--ease) backwards;
  }
  html.js .vf-content > *:nth-child(1) { animation-delay: .15s; }
  html.js .vf-content > *:nth-child(2) { animation-delay: .3s; }
  html.js .vf-content > *:nth-child(3) { animation-delay: .45s; }
  html.js .vf-content > *:nth-child(4) { animation-delay: .6s; }
  html.js .vf-hud,
  html.js .vf-corner {
    animation: hero-fade .9s var(--ease) .75s backwards;
  }
  @keyframes hero-rise {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: none; }
  }
  @keyframes hero-fade {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Fliegende Neon-Icons: grosse Bahnen; Echos starten zeitversetzt = Lichtspur */
  .fly svg {
    animation: fly-a var(--dur, 34s) ease-in-out var(--del, 0s) infinite;
  }
  .fly svg:nth-child(2) { animation-delay: calc(var(--del, 0s) + .5s); }
  .fly svg:nth-child(3) { animation-delay: calc(var(--del, 0s) + 1s); }
  .fly-2 svg, .fly-4 svg, .fly-6 svg, .fly-11 svg, .fly-15 svg, .fly-17 svg { animation-name: fly-b; }
  .fly-5 svg, .fly-7 svg, .fly-18 svg, .fly-19 svg { animation-name: fly-c; }
  .fly-8 svg, .fly-10 svg, .fly-12 svg, .fly-16 svg { animation-name: fly-d; }
  .fly-9 svg, .fly-14 svg { animation-name: fly-e; }
  @keyframes fly-a {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(16vw, -44px) rotate(10deg); }
    50% { transform: translate(30vw, 28px) rotate(-6deg); }
    75% { transform: translate(12vw, 72px) rotate(8deg); }
  }
  @keyframes fly-b {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-13vw, 48px) rotate(-9deg); }
    50% { transform: translate(-26vw, -24px) rotate(7deg); }
    75% { transform: translate(-10vw, -64px) rotate(-5deg); }
  }
  @keyframes fly-c {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(7vw, -11vh) rotate(8deg); }
    66% { transform: translate(-5vw, -4vh) rotate(-8deg); }
  }
  @keyframes fly-d {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(36vw, -30px) rotate(12deg); }
  }
  @keyframes fly-e {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-22px) rotate(-6deg); }
  }

  /* Gestaffelte Reveals in Rastern */
  html.js .steps .reveal:nth-child(2),
  html.js .values .reveal:nth-child(2),
  html.js .work-grid .reveal:nth-child(2),
  html.js .filmstrip .reveal:nth-child(2),
  html.js .contact-grid .reveal:nth-child(2) { transition-delay: .1s; }
  html.js .steps .reveal:nth-child(3),
  html.js .values .reveal:nth-child(3),
  html.js .work-grid .reveal:nth-child(3),
  html.js .filmstrip .reveal:nth-child(3),
  html.js .contact-grid .reveal:nth-child(3) { transition-delay: .2s; }
  html.js .values .reveal:nth-child(4),
  html.js .work-grid .reveal:nth-child(4) { transition-delay: .3s; }

  /* Laufendes Credits-Band (pausiert beim Hover) */
  .ticker-track {
    animation: ticker-run 38s linear infinite;
  }
  .ticker:hover .ticker-track { animation-play-state: paused; }
  @keyframes ticker-run {
    to { transform: translateX(-50%); }
  }

  /* Feinschliff */
  .btn--primary:hover { box-shadow: 0 6px 20px rgba(243, 150, 28, .28); }
  a.svc-row:hover .svc-num { color: var(--brand); }
  .svc-num { transition: color var(--dur) var(--ease); }
}

/* ---------- 19 Fokus / A11y ---------- */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 2px; }

/* Anker landen nicht unter dem fixierten Header */
[id] { scroll-margin-top: calc(var(--header-h) + var(--space-3)); }

/* ---------- 20 Seiten-Hero (Unterseiten) ---------- */
.page-hero { padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem); }
.page-hero h1 {
  margin-top: var(--space-3);
  font-size: var(--step-4);
  font-weight: 285;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.page-hero h1 strong { font-weight: 680; }
.page-hero .lede {
  margin-top: var(--space-4);
  font-size: var(--step-1);
  font-weight: 380;
  color: var(--text-2);
  max-width: 52ch;
}

/* ---------- 21 Leistungs-Blöcke (Detailseite) ---------- */
.svc-block {
  display: grid;
  gap: var(--space-5);
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  border-top: 1px solid var(--line);
}
.svc-block .svc-kicker {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}
.svc-block h2 { font-size: var(--step-3); margin-top: var(--space-2); }
.svc-block .desc { margin-top: var(--space-3); max-width: 58ch; color: var(--text-2); }
.svc-block .arrow-link { margin-top: var(--space-4); }

/* Slate: typografische Bildfläche statt Fake-Foto */
.svc-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(110% 90% at 80% 10%, var(--brand-tint), transparent 55%),
    linear-gradient(165deg, #141419 0%, #0b0b0e 60%, #09090b 100%);
  display: grid;
  place-items: center;
}
.svc-visual .num-ghost {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 12vw, 8rem);
  letter-spacing: .06em;
  color: rgba(250, 250, 250, .07);
  user-select: none;
}
.svc-visual .cap {
  position: absolute;
  left: 1.1rem;
  bottom: .9rem;
}
.svc-visual .vf-corner { width: 13px; height: 13px; }

@media (min-width: 48rem) {
  .svc-block { grid-template-columns: 1.15fr .85fr; gap: var(--space-6); align-items: center; }
  .svc-block--flip .svc-visual { order: -1; }
}

.svc-visual--portrait { aspect-ratio: 4 / 5; }

/* ---------- 22 WhatsApp-FAB (schwebender Chat-Button) ---------- */
.whatsapp-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 30; /* unter Header (50) und Mobilmenü (40) */
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #073b27; /* dunkles Glyph auf Grün – gleiche Regel wie --on-brand */
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .35);
}
.whatsapp-fab:active { transform: translateY(0); }
.whatsapp-fab svg { width: 1.7rem; height: 1.7rem; }

/* ---------- 23 Zitat & Werte (Über mich) ---------- */
.quote {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}
.quote blockquote p {
  font-size: var(--step-2);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
  text-wrap: balance;
}
.quote figcaption {
  margin-top: var(--space-4);
}

.values { display: grid; gap: var(--space-4); }
@media (min-width: 48rem) { .values { grid-template-columns: repeat(2, 1fr); } }

/* Info-Zeilen mit Punkt-Marker (Über mich) */
.fact-list { list-style: none; display: grid; gap: var(--space-3); margin-top: var(--space-4); }
.fact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text-2);
}
.fact-list li::before {
  content: "";
  width: 7px; height: 7px;
  margin-top: .55em;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
.fact-list strong { color: var(--text); font-weight: 600; }
