/*
 * style.css — Design der Portfolio-/Studio-Website von Robert Rodak
 * (Fotograf & Videograf, CEO Fuel Passion Studios).
 * Dunkles, professionelles Erscheinungsbild: Headlines in Playfair Display
 * (editorielle Serife, an das Brandkit von Fuel Passion Studios angeglichen,
 * damit beide Seiten als zusammengehörig erkennbar sind), Fließtext in Inter,
 * Akzentfarbe ebenfalls von FPS übernommen (Tannengrün statt vorherigem Gold).
 * Akzentfarbe kommt aus settings.accent (von site-data.js als CSS-Variable
 * gesetzt). Wird von JEDER Seite geladen
 * (index.html, ueber.html, leistungen.html, den Service-Detailseiten,
 * galerie.html, magazin.html, magazin-artikel.html). Reines CSS, keine
 * Frameworks.
 */

:root {
  --bg: #0b0b0c;
  --bg-alt: #121214;
  --surface: #17171a;
  --border: #262629;
  --text: #f2f0ec;
  --text-dim: #a5a29b;
  --accent: #1f6b45;         /* Tannengrün wie Fuel Passion Studios, aus settings.accent überschrieben */
  --accent-soft: rgba(31, 107, 69, 0.14);
  --radius: 4px;
  --maxw: 1180px;
  --nav-h: 72px;             /* feste Höhe der Nav-Zeile selbst, nie per JS verändert */
  --header-h: 72px;          /* Gesamthöhe Header (Nav + ggf. Ankündigungsleiste), wird von syncHeaderHeight() in common.js live nachgeführt */
}

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

/* ---------------------------------------------------------------- Preview-Gate */
/* Temporärer "Baustellen"-Sperrbildschirm (nur Startseite, siehe index.html +
   initPreviewGate() in common.js). Rein clientseitig, kein echter Schutz —
   soll nur zufällige Besucher freundlich abfangen, bis die Seite offiziell
   live geht. Deckt alles ab (auch die Kopfzeile), daher hoher z-index. */
.preview-gate {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(11, 11, 12, .82); backdrop-filter: blur(18px);
}
.preview-gate[hidden] { display: none; }
.preview-gate-card {
  width: 100%; max-width: 460px; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 48px 36px;
}
.preview-gate-eyebrow {
  color: var(--accent); font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 18px;
}
.preview-gate-card h1 { font-size: clamp(1.5rem, 4vw, 1.9rem); line-height: 1.2; margin-bottom: 16px; }
.preview-gate-text { color: var(--text-dim); font-size: .95rem; line-height: 1.6; margin-bottom: 28px; }
.preview-gate-form { display: flex; gap: 10px; }
.preview-gate-form input {
  flex: 1; min-width: 0; padding: 13px 16px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg-alt); color: var(--text); font: inherit; font-size: .95rem;
  transition: border-color .2s;
}
.preview-gate-form input:focus { outline: none; border-color: var(--accent); }
.preview-gate-form .btn { padding: 13px 22px; white-space: nowrap; }
.preview-gate-error { margin-top: 14px; font-size: .85rem; color: #e5695f; }
@media (max-width: 480px) { .preview-gate-form { flex-direction: column; } }
@keyframes previewGateShake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}
.preview-gate-card.shake { animation: previewGateShake .4s; }
@media (prefers-reduced-motion: reduce) { .preview-gate-card.shake { animation: none; } }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, .brand { font-family: 'Playfair Display', system-ui, sans-serif; font-weight: 700; letter-spacing: -0.01em; }

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

/* Eigener, markenfarbener Fokus-Ring statt des grellen Browser-Standards. */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px;
}

/* ---------------------------------------------------------------- Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; flex-direction: column;
  transition: background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; height: var(--nav-h); flex-shrink: 0; }

/* Ankündigungsleiste: zweite, optionale Zeile im Header (CMS-editierbar über
   settings.announcement_text/_url). --header-h wird von initAnnouncementBar()
   in common.js dynamisch auf die tatsächliche Header-Höhe gesetzt, damit Hero/
   Scroll-Offsets etc. auch mit eingeblendeter Leiste stimmen. */
.announcement-bar {
  background: var(--accent); color: #f4f2ec; flex-shrink: 0;
}
.announcement-bar[hidden] { display: none; }
.announcement-inner {
  position: relative; display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; padding: 9px 44px; font-size: .82rem; text-align: center;
}
.announcement-text { font-weight: 500; }
.announcement-link { text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.announcement-link[hidden] { display: none; }
.announcement-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: inherit; opacity: .75; cursor: pointer;
  font-size: .85rem; line-height: 1; padding: 6px; transition: opacity .15s;
}
.announcement-close:hover { opacity: 1; }
.brand { font-size: 1.35rem; letter-spacing: .01em; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 34px; }
.nav-links a { position: relative; color: var(--text-dim); font-size: .82rem; font-weight: 400; text-transform: uppercase; letter-spacing: .12em; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--accent); transition: width .3s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover::after { width: 100%; }
.nav-dropdown-menu a::after { display: none; } /* eigener Hover-Effekt im Dropdown, keine Unterstreichung */

.lang-toggle {
  background: none; border: 1px solid var(--border); color: var(--text-dim);
  border-radius: 999px; padding: 5px 12px; font: inherit; font-size: .78rem; letter-spacing: .08em;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--text); }
.lang-toggle .lang-sep { opacity: .4; margin: 0 3px; }
body:not(.lang-en) .lang-de, body.lang-en .lang-en { color: var(--accent); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--text); transition: .3s; }

/* ---------------------------------------------------------------- Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(circle at 70% 30%, #1c1c22 0%, #0b0b0c 70%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  /* Zweite Ebene (radial) folgt der Maus als Spotlight, siehe initHeroSpotlight()
     in common.js, das --mx/--my auf .hero setzt. Ohne JS/bei reduced-motion
     bleiben die Variablen auf ihrem zentrierten Default-Wert stehen. */
  background:
    radial-gradient(560px circle at var(--mx, 68%) var(--my, 32%), rgba(31, 107, 69, .18), transparent 55%),
    linear-gradient(100deg, rgba(11,11,12,.94) 0%, rgba(11,11,12,.8) 30%, rgba(11,11,12,.25) 62%, rgba(11,11,12,.55) 100%),
    linear-gradient(0deg, rgba(11,11,12,.85) 0%, transparent 30%);
}
/* .container zentriert normalerweise per margin:auto -- hier stattdessen
   linksbündig, damit der Textblock nicht in die rechts liegende Kamera läuft. */
.hero-inner { position: relative; z-index: 3; max-width: 560px; margin-left: 0; margin-right: auto; padding-top: var(--header-h); }

/* Ton-Umschalter fürs Hero-Video (nur sichtbar, wenn Hero-Darstellung=video
   und ein Video läuft). */
.sound-toggle {
  position: absolute; z-index: 4; right: 28px; bottom: 28px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 999px; cursor: pointer;
  background: rgba(11, 11, 12, .5); border: 1px solid rgba(244, 242, 236, .28);
  color: #f4f2ec; font-family: 'Inter', sans-serif; font-size: .74rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(10px);
  transition: border-color .25s, background .25s;
}
.sound-toggle:hover { border-color: var(--accent); background: rgba(11, 11, 12, .72); }
/* [hidden] muss hier explizit erzwungen werden, sonst gewinnt das obige
   "display: inline-flex" gegen das UA-Standardverhalten von [hidden]
   (bereits einmal als Bug beim Admin-Login aufgetreten, gleiches Muster). */
.sound-toggle[hidden] { display: none; }
.sound-toggle .sound-icon { width: 15px; height: 15px; flex-shrink: 0; }
.sound-toggle .sound-icon[hidden] { display: none; }
@media (max-width: 600px) { .sound-toggle { right: 16px; bottom: 16px; padding: 9px 15px; font-size: .66rem; } }

/* ---------- Kamera-Cursor-Reveal (ersetzt das frühere Hero-Video) ----------
   .hero-cam-base zeigt die Kamera mit Objektiv, .hero-cam-reveal darüber
   zeigt dieselbe Kamera mit offenem Bajonett/Sensor, aber nur innerhalb
   einer weichen, der Maus folgenden Kreismaske (Mechanik: initHeroCamReveal
   in common.js, zeichnet einen Radial-Gradient auf ein unsichtbares Canvas
   und nutzt ihn als CSS mask-image). Ohne Maus (Touch/reduced-motion) bleibt
   die Maske per Default leer (0px-Radius) -> es ist einfach nur die Kamera
   mit Objektiv zu sehen, kein Interaktions-Hinweis nötig. */
.hero-cam {
  position: absolute; z-index: 1; top: 6%; bottom: 14%; right: -2%; width: min(60vw, 900px);
  pointer-events: none;
}
/* Alternative Hero-Darstellung "video" (CMS-Umschalter, s.o.) — dieselbe
   Bildfläche wie .hero-cam, nur mit klassischem Hintergrundvideo statt
   Kamera-Reveal. */
.hero-bg {
  position: absolute; inset: 0; z-index: 1; background: center/cover no-repeat;
}
.hero-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-cam::before {
  content: ''; position: absolute; inset: 8%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  filter: blur(20px);
}
.hero-cam-base, .hero-cam-reveal {
  position: absolute; inset: 0; background: center/contain no-repeat;
}
.hero-cam-base {
  background-image: url('/images/hero/camera-base.webp');
  animation: heroCamZoom 12s ease-in-out infinite alternate;
}
.hero-cam-reveal {
  background-image: url('/images/hero/camera-reveal.webp');
  mask-image: radial-gradient(circle 0px at 50% 50%, #fff 100%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle 0px at 50% 50%, #fff 100%, transparent 100%);
  mask-size: 100% 100%; -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
}
@keyframes heroCamZoom { from { transform: scale(1); } to { transform: scale(1.04); } }
@media (prefers-reduced-motion: reduce) { .hero-cam-base { animation: none; } }

.hero-role {
  color: var(--accent); font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: .82rem; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 26px;
}
.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4.4rem); line-height: 1.08; font-weight: 600;
  /* Cinematischer Wipe-Reveal beim Laden: die Überschrift schiebt sich einmal frei. */
  animation: heroWipe 1.1s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: .15s;
}
@keyframes heroWipe {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title { animation: none; }
}

/* Eck-Textblöcke unten links (Kurzbeschreibung) und rechts (CTA) — lösen die
   frühere zentrale Stapelung unter der Überschrift ab, damit die Kamera
   rechts genug Raum bekommt. */
.hero-corner { position: absolute; z-index: 3; max-width: 280px; }
.hero-corner-left { left: 0; bottom: 64px; padding-left: 28px; }
.hero-corner-right { right: 0; bottom: 64px; padding-right: 28px; text-align: right; }
.hero-subtitle { font-size: .98rem; color: var(--text-dim); font-weight: 300; line-height: 1.6; margin: 0; }

/* Mobile Hero-Umbruch: gestapelte Spalte statt der Zweispalten-Komposition mit
   Kamera rechts. WICHTIG: diese Regeln müssen NACH den unconditional
   .hero-corner*-Basisregeln oben stehen -- bei gleicher Selektor-Spezifität
   gewinnt sonst die spätere (unconditional) Regel und die Static-Umstellung
   greift nicht (genau dieser Reihenfolge-Bug ist hier schon einmal
   aufgetreten: Untertitel und CTA-Button überlappten sich auf Mobile). */
@media (max-width: 900px) {
  .hero { flex-direction: column; align-items: flex-start; padding: calc(var(--header-h) + 32px) 0 40px; }
  .hero-cam { top: auto; bottom: 0; right: 0; left: 0; width: 100%; height: 42%; opacity: .3; }
  .hero-corner {
    position: static; max-width: none; width: 100%;
    padding: 0 28px; text-align: left; margin-top: 20px;
  }
}

/* ---------------------------------------------------------------- Buttons */
.btn {
  position: relative; overflow: hidden;
  display: inline-block; padding: 15px 34px; font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: background .25s, color .25s, border-color .25s;
  border: 1px solid var(--accent); border-radius: 999px;
}
/* Feiner Lichtschein, läuft einmal beim Hover diagonal über den Button. */
.btn::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.4) 48%, rgba(255,255,255,.6) 50%, rgba(255,255,255,.4) 52%, transparent 65%);
  transform: translateX(-140%); transition: transform .75s cubic-bezier(.16,1,.3,1);
}
.btn:hover::before { transform: translateX(140%); }
.btn-primary { background: var(--accent); color: #0e1c14; }
.btn-primary:hover { background: transparent; color: var(--accent); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------------------------------------------------------------- Sections */
.section { padding: 112px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 18px; }
.section-title.center { text-align: center; }
.section-intro { color: var(--text-dim); font-size: 1.08rem; margin-bottom: 48px; max-width: 620px; font-weight: 300; }
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------------------------------------------------------------- Willkommen */
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: center; }
.about-media {
  aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 3rem;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-text { color: var(--text-dim); font-size: 1.12rem; margin-bottom: 28px; }
.about-quote {
  font-family: 'Playfair Display', system-ui, sans-serif; font-weight: 600; font-size: 1.3rem; color: var(--text);
  border-left: 2px solid var(--accent); padding-left: 20px; margin-bottom: 24px; line-height: 1.4;
}
.about-quote:empty { display: none; }
.company-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
  padding: 8px 16px; border: 1px solid var(--border); border-radius: 999px;
  font-size: .78rem; letter-spacing: .06em; color: var(--text-dim); text-decoration: none;
  transition: border-color .2s, color .2s;
}
.company-badge:hover { border-color: var(--accent); color: var(--accent); }
.company-badge strong { color: var(--text); font-weight: 600; }
.company-badge:hover strong { color: var(--accent); }
/* [hidden] muss hier explizit erzwungen werden, sonst gewinnt das obige
   "display: inline-flex" gegen das UA-Standardverhalten von [hidden]. */
.company-badge[hidden] { display: none; }
.fact-list { list-style: none; display: flex; flex-wrap: wrap; gap: 32px; }
.fact-list .fact-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--text-dim); margin-bottom: 4px; }
.fact-list .fact-value { font-family: 'Playfair Display', system-ui, sans-serif; font-weight: 600; font-size: 1.05rem; }

/* ---------------------------------------------------------------- Leistungen */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.card {
  position: relative; overflow: hidden;
  background: var(--bg-alt); padding: 40px 34px;
  transition: background .3s ease, transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s cubic-bezier(.16,1,.3,1);
}
.section-alt .card { background: var(--bg); }
.card:hover {
  background: var(--surface); transform: translateY(-5px);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, .5);
}
/* Feiner Lichtschein, der beim Hover einmal diagonal über die Karte läuft. */
.card::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, var(--accent-soft) 48%, rgba(255,255,255,.14) 50%, var(--accent-soft) 52%, transparent 65%);
  transform: translateX(-130%); transition: transform .9s cubic-bezier(.16,1,.3,1);
}
.card:hover::before { transform: translateX(130%); }
.card-icon, .card h3, .card p, .card .card-link { position: relative; z-index: 2; }
.card-icon { font-size: 1.8rem; margin-bottom: 20px; }
.card h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 500; }
.card p { color: var(--text-dim); font-size: .98rem; font-weight: 300; }
.card .card-link { display: inline-block; margin-top: 16px; color: var(--accent); font-size: .85rem; font-weight: 600; }
.card .card-link:hover { text-decoration: underline; }

/* ---------------------------------------------------------------- Galerie */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.gallery-item {
  position: relative; overflow: hidden; aspect-ratio: 3 / 2; cursor: pointer;
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  display: flex; align-items: center; justify-content: center;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1);
}
/* Jedes vierte Bild größer für einen editorialen Rhythmus. */
.gallery-item:nth-child(4n+1) { grid-column: span 2; aspect-ratio: 3 / 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,1,.3,1); }
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px -20px rgba(0, 0, 0, .55), 0 0 0 1px var(--accent-soft);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-placeholder { color: var(--text-dim); font-size: 2rem; opacity: .5; }
.gallery-caption {
  position: absolute; inset: 0; z-index: 2; padding: 22px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(0deg, rgba(11,11,12,.78) 0%, transparent 58%);
  opacity: 0; transition: opacity .35s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-cat { font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; color: var(--accent); margin-bottom: 4px; }
.gallery-title { font-family: 'Playfair Display', system-ui, sans-serif; font-weight: 600; font-size: 1.1rem; }

/* ---------------------------------------------------------------- Kontakt */
/* Zweispaltige Karte (Info links, Formular rechts) — Muster von 9elf Hamburg
   übernommen: weicher Verlaufshintergrund + Rahmen statt einer schlichten
   Trennlinie, Icon-Badges statt reiner Textlinks. */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
  background: linear-gradient(135deg, var(--accent-soft), transparent 70%);
  border: 1px solid var(--border); border-radius: 20px; padding: 56px;
}
.contact-lead { color: var(--text-dim); font-size: 1.1rem; margin: 14px 0 32px; font-weight: 300; }
.contact-links { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }
.contact-detail {
  display: flex; align-items: center; gap: 14px; padding: 10px 0; color: var(--text);
}
.contact-detail .ci {
  width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0; transition: background .2s, color .2s;
}
.contact-detail .ct { font-size: .98rem; transition: color .2s; }
.contact-detail:hover .ci { background: var(--accent); color: #0e1c14; }
.contact-detail:hover .ct { color: var(--accent); }
/* Minimalistische Icon-Reihe statt Textlinks (X/Instagram/LinkedIn/TikTok je
   nach socials[].label, siehe SOCIAL_ICONS in site-data.js). */
.social-list { list-style: none; display: flex; gap: 14px; margin-top: 22px; }
.social-list a {
  display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: 50%; color: var(--text-dim);
  transition: color .2s, border-color .2s, transform .25s cubic-bezier(.16,1,.3,1);
}
.social-list a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.social-list svg { width: 17px; height: 17px; }

/* ---------------------------------------------------------------- Kontaktformular */
.contact-form { width: 100%; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 8px;
}
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font: inherit; font-size: .96rem;
  transition: border-color .2s, background .2s; resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--bg-alt);
}
.contact-form .btn { border: none; width: 100%; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 16px; font-size: .88rem; color: var(--accent); min-height: 1.2em; }
.form-status.is-error { color: #e5695f; }
@media (max-width: 860px) { .contact-wrap { grid-template-columns: 1fr; gap: 40px; padding: 36px 28px; } }

/* ---------------------------------------------------------------- Footer */
.site-footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: space-between; align-items: center; color: var(--text-dim); font-size: .82rem; letter-spacing: .04em; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; order: 2; }
.footer-legal a { color: var(--text-dim); font-size: .78rem; letter-spacing: .04em; transition: color .2s; }
.footer-legal a:hover { color: var(--accent); }
@media (max-width: 600px) { .footer-inner { justify-content: flex-start; } }

/* ---------------------------------------------------------------- Nav: "Weiter zu FPS" */
/* Eigener Menüpunkt (immer zuerst in #navLinks), verlinkt zu Fuel Passion
   Studios (settings.company_url). Bleibt hidden, solange die URL im CMS
   leer ist (site-data.js). Optisch wie ein kleiner Ghost-Button, damit er
   sich von den reinen Text-Links absetzt. */
.nav-fps-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border: 1px solid var(--accent); border-radius: 999px;
  color: var(--accent) !important; font-size: .76rem !important; font-weight: 600 !important;
  text-transform: uppercase; letter-spacing: .1em; transition: background .2s, color .2s;
}
/* [hidden] muss hier explizit erzwungen werden, sonst gewinnt das obige
   "display: inline-flex" gegen das UA-Standardverhalten von [hidden]. */
.nav-fps-link[hidden] { display: none; }
/* Höhere Spezifität als die generische ".nav-links a::after"-Unterstreichung
   nötig, sonst würde deren leerer content den Pfeil hier überschreiben. */
.nav-links .nav-fps-link::after {
  content: '↗'; position: static; width: auto; height: auto; background: none; font-size: .85em;
}
.nav-fps-link:hover { background: var(--accent); color: #0e1c14 !important; }
@media (max-width: 960px) { .nav-fps { margin-bottom: 10px; } }

/* ---------------------------------------------------------------- Nav-Controls + Theme */
.nav-controls { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  background: transparent; border: 1px solid var(--border); border-radius: 50%;
  cursor: pointer; color: var(--text-dim); transition: color .2s, border-color .2s; padding: 0;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.theme-toggle svg { width: 17px; height: 17px; }

/* ---------------------------------------------------------------- Nav-Dropdown (Leistungen) */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown::after { content: ''; position: absolute; top: 100%; left: -20px; right: -20px; height: 20px; }
.nav-drop-caret { display: inline-block; width: 6px; height: 6px; margin-left: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); transition: transform .25s; }
.nav-dropdown:hover .nav-drop-caret { transform: rotate(225deg); margin-top: 3px; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 230px; background: rgba(17, 17, 20, .97); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 10px; padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s;
  box-shadow: 0 20px 50px rgba(0,0,0,.5); z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
  font-size: .78rem; letter-spacing: .06em; color: var(--text-dim); text-transform: none;
  padding: 10px 14px; border-radius: 7px; transition: background .2s, color .2s, padding .2s;
  display: block; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--accent-soft); color: var(--text); padding-left: 18px; }
body.light .nav-dropdown-menu { background: rgba(255,255,255,.98); box-shadow: 0 20px 50px rgba(0,0,0,.12); }
@media (max-width: 960px) { .nav-dropdown-menu { display: none; } .nav-drop-caret { display: none; } }

/* ---------------------------------------------------------------- Partner-Marquee */
.marquee-section {
  padding: 46px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-alt); overflow: hidden;
}
.marquee-label { text-align: center; font-size: .7rem; letter-spacing: .24em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 30px; }
.marquee {
  display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
/* Track enthält die Items doppelt -> translateX(-50%) läuft nahtlos in Schleife. */
.marquee-track { display: flex; flex-shrink: 0; gap: 60px; padding-right: 60px; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  position: relative;
  font-family: 'Playfair Display', system-ui, sans-serif; font-weight: 600; font-size: 1.4rem; letter-spacing: .01em;
  color: var(--text-dim); white-space: nowrap; transition: color .3s;
  display: flex; align-items: center; text-decoration: none;
}
.marquee-item:hover { color: var(--accent); }
.marquee-logo { height: 34px; width: auto; object-fit: contain; opacity: .55; transition: opacity .3s; }
.marquee-item:hover .marquee-logo { opacity: 1; }
/* Namen, die (noch vor dem Logo-Ersatz) bereits mit der Kunden-Website verlinkt
   sind, bekommen eine wachsende Unterstreichung + einen kleinen Pfeil als
   Hinweis, dass ein Klick zur Website führt (siehe data/partners.json "url"). */
a.marquee-item::after {
  content: '↗'; font-size: .75em; margin-left: 6px; opacity: 0;
  transform: translate(-4px, 4px); transition: opacity .25s, transform .25s;
}
a.marquee-item:hover::after { opacity: 1; transform: translate(0, 0); }
a.marquee-item::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
a.marquee-item:hover::before { transform: scaleX(1); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- Scroll-Reveal */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none !important; }
}

/* ---------------------------------------------------------------- Hell-Theme (body.light) */
body.light {
  --bg: #f5f3ed;
  --bg-alt: #eae7df;
  --surface: #ffffff;
  --border: #dedacf;
  --text: #18150e;
  --text-dim: #615c50;
}
body.light .site-header.scrolled { background: rgba(245, 243, 237, 0.85); }
/* Header über dem dunklen Hero (nicht gescrollt) bleibt hell lesbar. NUR auf
   Seiten mit dunklem Hero (body.has-dark-hero, aktuell nur index.html) -
   auf allen anderen Seiten hätte das den Nav-Text im Hell-Theme unsichtbar
   gemacht (Bug, Juli 2026), da dort von Anfang an der helle Seitenhintergrund
   hinter dem transparenten Header liegt. */
body.light.has-dark-hero .site-header:not(.scrolled) .brand { color: #f4f2ec; }
body.light.has-dark-hero .site-header:not(.scrolled) .nav-links a { color: rgba(244, 242, 236, 0.85); }
body.light.has-dark-hero .site-header:not(.scrolled) .lang-toggle,
body.light.has-dark-hero .site-header:not(.scrolled) .theme-toggle { color: rgba(244, 242, 236, 0.9); border-color: rgba(244, 242, 236, 0.35); }

/* Hero ist immer eine dunkle Bühne -> Text unabhängig vom Theme hell halten. */
.hero-title { color: #f4f2ec; }
.hero-subtitle { color: rgba(244, 242, 236, 0.72); }

/* ---------------------------------------------------------------- Page-Hero (Unterseiten) */
/* Nur padding-top/-bottom setzen, NICHT die padding-Shorthand -- .page-hero
   sitzt auf demselben Element wie .container (padding: 0 28px links/rechts,
   siehe oben) und eine Shorthand hier würde dessen horizontales Padding auf 0
   zurücksetzen (echter Bug: Überschriften klebten mobil am Bildschirmrand,
   auf 15 von 16 Seiten betroffen). */
.page-hero { position: relative; padding-top: calc(var(--header-h) + 64px); padding-bottom: 64px; }
.page-hero .eyebrow {
  color: var(--accent); font-weight: 600; font-size: .8rem; letter-spacing: .24em;
  text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 12px;
}
.page-hero .eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; margin-bottom: 18px; }
.page-hero p { color: var(--text-dim); font-size: 1.08rem; max-width: 640px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: .85rem; letter-spacing: .04em; transition: color .2s; margin-bottom: 28px; }
.back-link:hover { color: var(--accent); }

/* ---------------------------------------------------------------- Filter-Pills (Galerie) */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; padding: 9px 20px;
  border-radius: 999px; border: 1px solid var(--border); background: transparent; color: var(--text-dim);
  cursor: pointer; transition: .25s; font-family: inherit;
}
.filter-btn:hover { color: var(--text); border-color: var(--text-dim); }
.filter-btn.active { background: var(--accent); color: #0e1c14; border-color: var(--accent); font-weight: 600; }

/* ---------------------------------------------------------------- Lightbox (lb9, wie 9elf) */
.lb9 {
  position: fixed; inset: 0; z-index: 3000; background: rgba(8,8,8,.96); backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .35s;
}
.lb9.open { display: flex; opacity: 1; }
.lb9-stage {
  position: relative; width: min(90vw, 1200px); height: min(82vh, 760px);
  display: flex; align-items: center; justify-content: center;
  transition: transform .38s cubic-bezier(.16,1,.3,1), opacity .32s cubic-bezier(.16,1,.3,1);
}
.lb9-stage.lb9-out-l { transform: translateX(-48px); opacity: 0; }
.lb9-stage.lb9-out-r { transform: translateX(48px); opacity: 0; }
.lb9-stage.lb9-in-l { transition: none; transform: translateX(-48px); opacity: 0; }
.lb9-stage.lb9-in-r { transition: none; transform: translateX(48px); opacity: 0; }
@media (prefers-reduced-motion: reduce) { .lb9-stage { transition: none !important; } }
.lb9-img { max-width: 100%; max-height: 100%; border-radius: 8px; border: 1px solid var(--border); box-shadow: 0 24px 80px rgba(0,0,0,.6); object-fit: contain; background: linear-gradient(135deg, var(--surface), var(--bg-alt)); }
.lb9-ph { width: min(90vw, 1200px); height: min(70vh, 700px); border-radius: 8px; border: 1px solid var(--border); background: linear-gradient(135deg, var(--surface), var(--bg-alt)); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lb9-ph-icon { font-size: 64px; opacity: .3; margin-bottom: 14px; }
.lb9-ph-text { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.lb9-info { position: absolute; bottom: -54px; left: 0; right: 0; text-align: center; }
.lb9-info .lb9-tag { font-size: .7rem; letter-spacing: .18em; color: var(--accent); text-transform: uppercase; margin-bottom: 6px; }
.lb9-info .lb9-name { font-family: 'Playfair Display', sans-serif; font-weight: 600; font-size: 1.2rem; color: #fff; }
.lb9-close, .lb9-nav {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); background: rgba(13,13,13,.7);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .3s; z-index: 10;
}
.lb9-close { top: 26px; right: 28px; width: 48px; height: 48px; font-size: 22px; }
.lb9-close:hover { background: var(--accent); border-color: var(--accent); color: #0e1c14; transform: rotate(90deg); }
.lb9-nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 26px; }
.lb9-nav:hover { background: var(--accent); border-color: var(--accent); color: #0e1c14; }
.lb9-prev { left: 28px; } .lb9-next { right: 28px; }
.lb9-counter { position: absolute; top: 34px; left: 50%; transform: translateX(-50%); font-size: .78rem; letter-spacing: .18em; color: var(--text-dim); z-index: 10; }
.lb9-dots { position: absolute; bottom: -92px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.lb9-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: .25s; }
.lb9-dot.active { background: var(--accent); width: 22px; border-radius: 4px; }
@media (max-width: 960px) {
  .lb9-nav { width: 42px; height: 42px; font-size: 20px; } .lb9-prev { left: 8px; } .lb9-next { right: 8px; }
  .lb9-close { top: 14px; right: 14px; width: 40px; height: 40px; }
}

/* ---------------------------------------------------------------- Magazin */
.magazin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.magazin-card { display: flex; flex-direction: column; gap: 14px; }
.magazin-thumb {
  aspect-ratio: 16 / 10; border-radius: 6px; overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 2rem;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1);
}
.magazin-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,1,.3,1); }
.magazin-card:hover .magazin-thumb {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -18px rgba(0, 0, 0, .5), 0 0 0 1px var(--accent-soft);
}
.magazin-card:hover .magazin-thumb img { transform: scale(1.05); }
.magazin-meta { display: flex; gap: 12px; align-items: center; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.magazin-meta .magazin-date { color: var(--text-dim); }
.magazin-card h3 { font-size: 1.2rem; }
.magazin-card p { color: var(--text-dim); font-size: .95rem; }
.magazin-card a.magazin-link { color: var(--accent); font-size: .85rem; font-weight: 600; align-self: flex-start; }
.magazin-card a.magazin-link:hover { text-decoration: underline; }

/* Artikel-Detailseite */
.article-head { max-width: 760px; margin: 0 auto; }
.article-image { aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; margin: 32px auto; max-width: 860px; background: linear-gradient(160deg, var(--surface), var(--bg-alt)); display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 2.4rem; cursor: pointer; }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-body { max-width: 700px; margin: 0 auto; color: var(--text-dim); font-size: 1.08rem; }
.article-body p { margin-bottom: 22px; }
.article-body p:last-child { margin-bottom: 0; }

/* Teilen-Leiste unter einem Magazin-Artikel (WhatsApp/X/Facebook/LinkedIn/
   Link kopieren) -- gleiches Kreis-Icon-Muster wie .social-list im Footer. */
.article-share { max-width: 700px; margin: 40px auto 0; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.article-share-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); margin-right: 4px; }
.article-share a, .article-share-copy {
  display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: 50%; color: var(--text-dim);
  background: none; cursor: pointer; transition: color .2s, border-color .2s, transform .25s cubic-bezier(.16,1,.3,1);
}
.article-share a:hover, .article-share-copy:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.article-share svg { width: 17px; height: 17px; }
.article-share-copy.is-copied { color: var(--accent); border-color: var(--accent); }

/* ---------------------------------------------------------------- Service-Detailseiten */
.scope-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 32px 0; max-width: 620px; }
.scope-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-dim); font-size: 1.02rem; }
.scope-list li::before { content: '\2713'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.provider-note {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: 12px; padding: 28px 32px; margin: 40px 0;
  background: linear-gradient(150deg, var(--surface) 0%, var(--bg-alt) 100%);
  box-shadow: 0 24px 48px -30px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .04);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
/* Feiner Akzentstreifen am linken Rand statt eines schlichten Rahmens. */
.provider-note::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent), transparent);
}
.provider-note p { color: var(--text-dim); font-size: .96rem; max-width: 480px; }
.service-detail-body { max-width: 700px; color: var(--text-dim); font-size: 1.08rem; margin-bottom: 8px; }

/* ---------------------------------------------------------------- Individueller Cursor */
/* Punkt + nachziehender Ring, per JS (initCustomCursor in common.js) bewegt.
   Nur auf Geräten mit Maus aktiv (kein Touch) und nicht bei reduced-motion. */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%); will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; background: var(--accent); }
.cursor-ring {
  width: 38px; height: 38px; border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: width .25s cubic-bezier(.16,1,.3,1), height .25s cubic-bezier(.16,1,.3,1), background .25s, opacity .2s;
  opacity: .7;
}
.cursor-ring.is-hover { width: 68px; height: 68px; background: var(--accent-soft); opacity: 1; }
.cursor-ring .cursor-label {
  font-family: 'Playfair Display', sans-serif; font-weight: 600; font-size: .62rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); opacity: 0; transition: opacity .2s; white-space: nowrap;
}
.cursor-ring.is-hover .cursor-label { opacity: 1; }
/* Native Cursor ausblenden, sobald der individuelle Cursor aktiv ist. */
html.custom-cursor, html.custom-cursor a, html.custom-cursor button,
html.custom-cursor .gallery-item, html.custom-cursor .filter-btn { cursor: none !important; }

/* ---------------------------------------------------------------- Magnetische Buttons */
.btn { transition: transform .28s cubic-bezier(.16,1,.3,1), background .25s, color .25s, border-color .25s; }

/* ---------------------------------------------------------------- Cookie-Consent-Banner */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 9998; max-width: 640px;
  margin: 0 auto; padding: 22px 26px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .55);
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  opacity: 0; transform: translateY(24px); transition: opacity .4s ease, transform .4s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-banner.is-hidden { opacity: 0; transform: translateY(24px); pointer-events: none; }
.cookie-banner-text { flex: 1 1 320px; color: var(--text-dim); font-size: .92rem; line-height: 1.55; margin: 0; }
.cookie-banner-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 11px 22px; font-size: .76rem; }
@media (prefers-reduced-motion: reduce) { .cookie-banner { transition: opacity .2s; transform: none; } }
@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}

/* ---------------------------------------------------------------- Scroll-Fortschrittsbalken */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--accent);
  z-index: 10000; transition: width .1s linear;
}

/* ---------------------------------------------------------------- Filmkorn-Overlay */
/* Subtile, animierte Körnung über der ganzen Seite, für einen cineastischen Look
   passend zum Foto-/Videografie-Branding. Reiner CSS-Noise via feTurbulence,
   kein externer Request. */
.grain-overlay {
  position: fixed; inset: -60%; width: 220%; height: 220%; z-index: 9990; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%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");
  opacity: .035; mix-blend-mode: overlay; animation: grainMove 1s steps(6) infinite;
}
@keyframes grainMove {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); }
  40% { transform: translate(-4%, -3%); } 60% { transform: translate(3%, 3%); }
  80% { transform: translate(2%, -4%); } 100% { transform: translate(0, 0); }
}

/* ---------------------------------------------------------------- Keyword-Ticker (Startseite) */
.ticker-section {
  overflow: hidden; background: var(--bg); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
/* Läuft entgegengesetzt zum Partner-Marquee darunter (nach rechts statt links). */
.ticker-section .marquee-track { gap: 0; padding-right: 0; animation-duration: 42s; animation-direction: reverse; }
.ticker-item {
  display: inline-flex; align-items: center; padding: 26px 0;
  font-family: 'Playfair Display', sans-serif; font-weight: 800; font-size: clamp(2rem, 5.4vw, 4.2rem);
  text-transform: uppercase; letter-spacing: -0.01em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px var(--text-dim); opacity: .55;
  transition: opacity .3s;
}
.ticker-item.filled { color: var(--text); -webkit-text-stroke: 0; opacity: 1; }
.ticker-section:hover .ticker-item { opacity: .85; }
.ticker-section:hover .ticker-item.filled { opacity: 1; }
.ticker-dot { color: var(--accent); -webkit-text-stroke: 0; margin: 0 22px; font-size: 1.4rem; }

@media (prefers-reduced-motion: reduce) {
  .grain-overlay, .ticker-section .marquee-track { animation: none !important; }
}

/* ---------------------------------------------------------------- Responsive */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg-alt); border-bottom: 1px solid var(--border);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }
  .nav-links.open { visibility: visible; opacity: 1; transform: translateY(0); transition-delay: 0s; }
  .nav-links li { width: 100%; padding: 6px 28px; }
  .nav-links li:first-child { padding-top: 18px; }
  .nav-links li:last-child { padding-bottom: 22px; }
  .nav-dropdown { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-media { max-width: 320px; }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4n+1) { grid-column: span 2; }
  .magazin-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .page-hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 40px; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(4n+1) { grid-column: span 1; }
}
