/* =========================================================
   Kanzlei Markus Kompa – Stylesheet
   Stil: "Trust & Authority" × "Editorial Grid" (Anwalt & Publizist)
   Signature: kinematischer Full-Screen-Hero, Text scrollt über das Porträt
   Palette: Weiß / Grau / Tinte + EINE Schmuckfarbe – Signalrot (Stand 07/2026).
            Rot bewusst sparsam: Link, Eyebrow-Strich, Primärbutton, Hover-Kante,
            Schlüsselwort. Nie flächig. Ersetzt die frühere Sand/Gold-Palette.
   Typo: EB Garamond (Headlines) + Lato (Text)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* --- Neutrale Basis: Weiß / Grau / Tinte --- */
  --ink:         #121316;   /* dunkle Flächen + Headlines */
  --ink-deep:    #0A0B0D;   /* tiefste Fläche (Footer) */
  --text:        #16171A;   /* Fließtext */
  --grey-700:    #3A3D43;   /* Sekundärtext */
  --grey-600:    #5C5F66;   /* gedämpfter Text (auf Papier 4.5:1+) */
  --grey-300:    #C9CACE;   /* Text auf dunklem Grund */
  --grey-200:    #E3E3E6;   /* Trennlinien */
  --paper:       #F7F7F8;   /* Seitengrund */
  --surface:     #FFFFFF;   /* Karten */
  --surface-alt: #F0F0F2;   /* zarte Abschnitte */

  /* --- Die EINE Schmuckfarbe: Signalrot. Sparsam einsetzen. --- */
  --accent:      #C8102E;   /* Links, Eyebrow-Strich, Primärbutton */
  --accent-700:  #96001F;   /* Hover / dunkler */
  --accent-lite: #FF4D63;   /* auf dunklem Grund (5,74:1 auf --ink) */
  --accent-soft: rgba(200,16,46,.10); /* zarte Tönung (Flächen) */

  --maxw: 1160px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(10,11,13,.06), 0 1px 2px rgba(10,11,13,.04);
  --shadow-md: 0 14px 34px -14px rgba(10,11,13,.16);

  --ff-head: "EB Garamond", Georgia, "Times New Roman", serif;
  --ff-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space: clamp(4rem, 9vw, 7rem);

  /* Z-Index-Skala */
  --z-base: 0;
  --z-scrim: 10;
  --z-content: 20;
  --z-header: 50;
}

/* Filmkorn – dezente Textur, teilt sich Hero und dunkle Flächen */
:root {
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  /* lange URLs (z.B. Prozesskostenrechner-Link) sprengen sonst schmale Viewports */
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-700); }

h1, h2, h3 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1rem; }

/* ---------- Utilities ---------- */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding-block: var(--space); }
.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;
}
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(.72rem, 2.2vw, .8rem);
  letter-spacing: clamp(.08em, .5vw, .14em);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .9rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .7rem;
  text-wrap: balance;
}
.eyebrow::before {
  content: ""; width: 1.7rem; height: 2px; background: var(--accent); flex: none;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--ink); color: #fff; padding: .6rem 1rem;
  border-radius: 8px; z-index: 100; transition: top .2s;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* visible focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--ff-body); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 10px; cursor: pointer;
  border: 2px solid transparent; transition: background-color .2s, color .2s, border-color .2s, transform .2s;
  min-height: 48px;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px -8px rgba(150,0,31,.45); }
.btn-primary:hover { background: var(--accent-700); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--grey-200); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--grey-200);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 76px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-name { font-family: var(--ff-head); font-weight: 600; font-size: 1.4rem; }
.brand-sub { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-600); }

.main-nav { margin-left: auto; }
.nav-list { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  color: var(--grey-700); font-weight: 700; font-size: .95rem;
  padding: .4rem 0; position: relative;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .2s;
}
.nav-list a:hover { color: var(--ink); }
.nav-list a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--ink); font-weight: 700; font-size: .95rem; white-space: nowrap;
}
.header-phone:hover { color: var(--accent); }
.icon { flex: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; background: transparent; border: 1px solid var(--grey-200);
  border-radius: 10px; cursor: pointer;
}
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--ink); margin-inline: auto; transition: transform .2s, opacity .2s; }

/* --- Header über dem Kino-Hero: erst transparent, dann fest --- */
.site-header--overlay {
  position: fixed; left: 0; right: 0; top: 0;
  background: transparent; border-bottom-color: transparent;
  backdrop-filter: none;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header--overlay .brand,
.site-header--overlay .brand:hover,
.site-header--overlay .nav-list a,
.site-header--overlay .header-phone { color: #fff; }
.site-header--overlay .brand-sub { color: rgba(255,255,255,.72); }
.site-header--overlay .nav-list a:hover,
.site-header--overlay .header-phone:hover { color: var(--accent-lite); }
.site-header--overlay .nav-toggle { border-color: rgba(255,255,255,.45); }
.site-header--overlay .nav-toggle-bar { background: #fff; }

.site-header--overlay.is-stuck {
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom-color: var(--grey-200);
}
.site-header--overlay.is-stuck .brand,
.site-header--overlay.is-stuck .brand:hover,
.site-header--overlay.is-stuck .header-phone { color: var(--ink); }
.site-header--overlay.is-stuck .brand-sub { color: var(--grey-600); }
.site-header--overlay.is-stuck .nav-list a { color: var(--grey-700); }
.site-header--overlay.is-stuck .nav-list a:hover,
.site-header--overlay.is-stuck .header-phone:hover { color: var(--ink); }
.site-header--overlay.is-stuck .nav-toggle { border-color: var(--grey-200); }
.site-header--overlay.is-stuck .nav-toggle-bar { background: var(--ink); }
/* Mobil-Menü braucht auch im Overlay-Zustand einen lesbaren Untergrund */
.site-header--overlay .nav-list.is-open a { color: var(--grey-700); }
.site-header--overlay .nav-list.is-open a:hover { color: var(--ink); }

/* =========================================================
   KINO-HERO – bildschirmfüllendes Porträt, Text scrollt darüber
   Technik: sticky Media-Layer + negativ versetzter Content-Layer.
   Kein Scroll-Jacking, kein JS für den Effekt selbst (nur Header-State).
   ========================================================= */
.cinema {
  position: relative;
  background: var(--ink-deep);
  isolation: isolate;
}

/* Bild bleibt stehen, während der Text darüber läuft */
.cinema-media {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
  z-index: var(--z-base);
}
.cinema-media picture { display: block; height: 100%; }
.cinema-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--hero-pos-m, 50% 12%);
}

/* Ab Tablet: Plakat-Komposition – ganze Person rechts, Textfläche links frei.
   Ein Hochformat-Porträt bildschirmfüllend zu "covern" würde bis auf den Kopf
   beschneiden; height-basiert + weiche Maske hält die Person ganz im Bild. */
@media (min-width: 900px) {
  .cinema-media img {
    position: absolute; top: 52%; right: -2%;
    width: auto; height: 102%; max-width: none;
    transform: translateY(-50%);
    object-fit: contain;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 34%);
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 34%);
  }
}

/* Kühles Streiflicht + Lesbarkeits-Schleier über dem Foto (neutral, kein Farbstich) */
.cinema-scrim {
  position: absolute; inset: 0; z-index: var(--z-scrim); pointer-events: none;
  background:
    radial-gradient(64% 58% at 74% 2%, rgba(255,255,255,.18), transparent 66%),
    radial-gradient(58% 62% at 2% 92%, rgba(255,255,255,.06), transparent 64%),
    linear-gradient(90deg, rgba(10,11,13,.90) 0%, rgba(10,11,13,.64) 34%, rgba(10,11,13,.12) 62%, rgba(10,11,13,.34) 100%),
    linear-gradient(180deg, rgba(10,11,13,.55) 0%, rgba(10,11,13,0) 28%, rgba(10,11,13,.35) 74%, rgba(10,11,13,.94) 100%);
}
.cinema-grain {
  position: absolute; inset: 0; z-index: var(--z-scrim); pointer-events: none;
  background-image: var(--grain); opacity: .16; mix-blend-mode: overlay;
}

/* Textebene läuft über das stehende Bild */
.cinema-content {
  position: relative; z-index: var(--z-content);
  margin-top: -100vh; margin-top: -100svh;
}
.cinema-stage {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding-block: clamp(6rem, 14vh, 9rem) clamp(4rem, 10vh, 6rem);
}
.cinema-stage .container { width: min(100% - 2.5rem, var(--maxw)); }

/* --- Bühne 1: Titel --- */
.cinema-text { max-width: 40rem; color: #fff; }
.cinema-text .eyebrow { color: var(--accent-lite); }
.cinema-text .eyebrow::before { background: var(--accent-lite); }
.cinema-title {
  color: #fff;
  font-size: clamp(2.6rem, 7.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 1.2rem;
  text-wrap: balance;
}
.cinema-title em {
  font-style: italic;
  color: var(--accent-lite);
}
.cinema-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.90);
  max-width: 34ch;
  margin-bottom: 2rem;
  text-shadow: 0 1px 12px rgba(10,11,13,.55);
}
.cinema-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.cinema-actions .btn-ghost {
  background: rgba(255,255,255,.10); color: #fff;
  border-color: rgba(255,255,255,.45); backdrop-filter: blur(6px);
}
.cinema-actions .btn-ghost:hover { background: rgba(255,255,255,.20); color: #fff; }

/* Kredit-Zeile im Plakat-Stil */
.cinema-credits {
  margin: clamp(2rem, 5vh, 3.2rem) 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.22);
  list-style: none;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.cinema-credits li { display: flex; align-items: center; gap: .6rem; }
.cinema-credits li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-lite); flex: none;
}

/* --- Bühne 2: Haltung/Zitat, läuft über dasselbe Bild --- */
.cinema-stage--quote { align-items: center; }
.cinema-quote {
  max-width: 24ch;
  margin: 0 0 0 auto;
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.18;
  color: #fff;
  text-shadow: 0 2px 22px rgba(10,11,13,.6);
}
.cinema-quote b { font-weight: 600; color: var(--accent-lite); }
.cinema-quote-by {
  display: block; margin-top: 1.4rem;
  font-family: var(--ff-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7);
}

/* Scroll-Hinweis */
.cinema-cue {
  position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%);
  z-index: var(--z-content);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.cinema-cue span { display: block; width: 1px; height: 2.2rem; background: linear-gradient(180deg, rgba(255,255,255,.7), transparent); }

@media (max-width: 900px) {
  .cinema-media img { object-position: var(--hero-pos-m, 52% 14%); }
  .cinema-scrim {
    background:
      radial-gradient(80% 40% at 70% 2%, rgba(255,255,255,.16), transparent 70%),
      linear-gradient(180deg, rgba(10,11,13,.64) 0%, rgba(10,11,13,.44) 22%, rgba(10,11,13,.82) 70%, rgba(10,11,13,.97) 100%);
  }
  .cinema-quote { margin-left: 0; max-width: none; }
  .cinema-cue { display: none; }
}

/* Akzent-Unterstreichung auf Schlüsselwort (liegt hinter dem Text, Kontrast bleibt) */
.hl {
  background: linear-gradient(transparent 62%, var(--accent-soft) 62%, rgba(200,16,46,.28) 100%);
  padding: 0 .06em;
}
.lead { font-size: 1.2rem; color: var(--grey-700); max-width: 42ch; }

/* ---------- Section heads (editorial) ---------- */
.section-head { max-width: 46rem; margin-bottom: 3rem; }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; max-width: none;
}
.section-intro { color: var(--grey-600); font-size: 1.1rem; margin: 0; }
/* Anker nicht unter dem klebenden Header verstecken */
[id] { scroll-margin-top: 96px; }

/* ---------- Statement / Pull-Quote (Editorial) ---------- */
.statement {
  position: relative;
  background: var(--ink); color: #fff; overflow: hidden;
}
.statement::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grain); opacity: .10; mix-blend-mode: overlay;
}
.statement-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.statement blockquote {
  margin: 0;
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.2; letter-spacing: -0.015em;
  color: #fff;
}
.statement blockquote b { font-weight: 600; color: var(--accent-lite); }
.statement cite {
  display: block; margin-top: 1.5rem; font-style: normal;
  font-family: var(--ff-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.66);
}
.statement-note { color: var(--grey-300); margin: 0; }
.statement-note p:last-child { margin-bottom: 0; }

/* ---------- Schwerpunkte / Cards (editorial, hairline statt Kasten) ---------- */
.card-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--grey-200);
}
.card {
  position: relative; overflow: hidden;
  background: transparent;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  border-radius: 0;
  padding: 2.4rem 2rem 2.2rem;
  transition: background-color .25s ease, transform .25s ease;
}
.card:nth-child(3n) { border-right: 0; }
.card::before {
  content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 0;
  background: var(--accent); transition: width .3s ease;
}
.card:hover { background: var(--surface); transform: translateY(-2px); }
.card:hover::before { width: 100%; }
.card-icon {
  display: inline-flex; width: 46px; height: 46px; border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  background: rgba(18,19,22,.06); color: var(--accent); margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--grey-600); margin-bottom: 1.1rem; }
.card-link { font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: .3rem; }
.card-link::after { content: "→"; transition: transform .2s; }
.card-link:hover::after { transform: translateX(3px); }

/* ---------- Vertrauensblock ---------- */
.trust { background: var(--ink); color: #fff; }
.trust-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.trust-grid li { display: flex; flex-direction: column; gap: .4rem; }
.trust-num { font-family: var(--ff-head); font-size: 1.7rem; font-weight: 600; color: var(--accent-lite); }
.trust-label { color: var(--grey-300); font-size: .95rem; }

/* ---------- Kurzprofil ---------- */
.profile-inner {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.profile-figure { margin: 0; }
.profile-figure picture { display: block; }
.profile-figure img {
  display: block;
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md);
  object-fit: cover; aspect-ratio: 11/13;
  object-position: var(--img-pos, 50% 20%);
}
.profile-text p { color: var(--grey-700); }

/* ---------- Wie ich helfe ---------- */
.help { background: var(--surface-alt); }
.help-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
}
.help-item {
  display: flex; gap: 1.2rem; background: var(--surface);
  border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 1.7rem;
}
.help-step {
  font-family: var(--ff-head); font-size: 1.5rem; font-weight: 600;
  color: var(--accent); flex: none; opacity: .8;
}
.help-item h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.help-item p { margin: 0; color: var(--grey-600); }

/* ---------- Blog ---------- */
.post-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.post a {
  display: block; height: 100%; background: var(--surface);
  border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 1.8rem;
  color: var(--text); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.post a:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-lite); }
.post-cat {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .8rem;
}
.post h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.post p { color: var(--grey-600); font-size: .98rem; }
.post time { font-size: .85rem; color: var(--grey-600); }

/* ---------- Kontakt-CTA ---------- */
.cta {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(700px 380px at 100% 110%, rgba(200,16,46,.32), transparent 58%),
    var(--ink);
  color: #fff;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
}
.cta-text { max-width: 34rem; }
.cta h2 { color: #fff; }
.cta-text p { color: var(--grey-300); margin: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.cta-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #fff; font-weight: 700; font-size: 1.05rem;
}
.cta-phone:hover { color: var(--accent-lite); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-deep); color: var(--grey-300); }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer-col h2 {
  font-family: var(--ff-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem;
}
.footer-brand .brand-name { color: #fff; font-size: 1.4rem; }
.footer-brand p { color: #8A8D93; margin-top: .4rem; }
.footer-col address { font-style: normal; color: var(--grey-300); line-height: 1.9; }
.footer-col a { color: var(--grey-300); }
.footer-col a:hover { color: #fff; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.4rem; flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: .9rem; color: #8A8D93; }
/* Umsetzungshinweis: nachgeordnet, nicht auf Augenhöhe mit dem Copyright. */
.footer-credit { color: #6B6E74; }
.footer-credit::before { content: " · "; }
.footer-credit a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.18); }
.footer-credit a:hover { color: var(--accent-lite); border-bottom-color: currentColor; }
.footer-legal { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; font-size: .9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .statement-inner { grid-template-columns: 1fr; }
  .profile-inner { grid-template-columns: 1fr; }
  .profile-figure { max-width: 360px; }
  .card-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .card:nth-child(3n) { border-right: 1px solid var(--grey-200); }
  .card:nth-child(2n) { border-right: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: flex; }
  .main-nav { margin-left: 0; }
  .nav-list {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; background: var(--surface);
    border-bottom: 1px solid var(--grey-200); box-shadow: var(--shadow-md); padding: .5rem 1.25rem 1rem;
  }
  .nav-list.is-open { display: flex; }
  .nav-list li { border-bottom: 1px solid var(--grey-200); }
  .nav-list a { display: block; padding: .9rem 0; }
  .header-inner { flex-wrap: wrap; position: relative; }
  .header-cta { display: none; }
}

@media (max-width: 560px) {
  .card-grid, .post-grid, .help-list { grid-template-columns: 1fr; }
  .card:nth-child(n) { border-right: 0; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .header-phone span { display: none; }
  /* Footer einspaltig – zweispaltig sprengte auf 390px die Viewport-Breite */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { justify-content: flex-start; }
}

/* =========================================================
   Bewegung reduzieren – Kino-Hero wird zum statischen Bild
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  /* Gleiche Komposition, aber das Bild bleibt nicht stehen – es scrollt
     normal mit. Kein Positionswechsel, damit die Desktop-Regeln greifen. */
  .cinema-media { position: relative; }
  .cinema-cue { display: none; }
}

/* =========================================================
   UNTERSEITEN
   ========================================================= */

/* ---------- Page-Hero (kleiner Kopf) ---------- */
.page-hero {
  background:
    linear-gradient(180deg, var(--surface-alt), var(--paper));
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--grey-200);
}
.breadcrumb { font-size: .85rem; color: var(--grey-600); margin: 0 0 1rem; }
.breadcrumb a { color: var(--grey-600); }
.breadcrumb a:hover { color: var(--accent); }
.page-hero h1 { margin-bottom: .6rem; }
.page-hero .lead { max-width: 56ch; }

/* anchor-offset für Sticky-Header */
[id] { scroll-margin-top: 96px; }

/* ---------- Prose / Fließtext ---------- */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose p { color: var(--grey-700); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* Zweispaltiges Layout (Inhalt + Aside) */
.layout-split {
  display: grid; grid-template-columns: 1fr 320px; gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
/* Grid-Items dürfen nicht auf ihre Min-Content-Breite aufgehen (sprengte 390px) */
.layout-split > * { min-width: 0; }
.aside-card {
  background: var(--surface); border: 1px solid var(--grey-200); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); position: sticky; top: 96px;
}
.aside-card h2 { font-size: 1.2rem; }
.aside-card p { color: var(--grey-600); font-size: .95rem; }
.aside-card .btn { width: 100%; margin-top: .4rem; }

/* ---------- Leistungen: Detailblöcke ---------- */
.service-block {
  padding-block: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid var(--grey-200);
  display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem;
}
.service-block:first-of-type { border-top: 0; }
.service-block .card-icon { margin: 0; }
.service-block h2 { margin-bottom: .6rem; }
.service-block ul { color: var(--grey-700); padding-left: 1.2rem; }

/* ---------- Ablauf: Schritte ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 1.2rem; align-items: start;
  background: var(--surface); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 1.6rem;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff; font-family: var(--ff-head); font-size: 1.3rem; font-weight: 600;
}
.step h3 { margin-bottom: .3rem; }
.step p { margin: 0; color: var(--grey-600); }

/* Hinweis-Box */
.note {
  background: var(--accent-soft); border-left: 4px solid var(--accent);
  border-radius: 8px; padding: 1.2rem 1.4rem; margin: 1.5rem 0; color: var(--grey-700);
}
.note strong { color: var(--ink); }

/* ---------- Veröffentlichungen ---------- */
.pub-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.pub-item {
  background: var(--surface); border: 1px solid var(--grey-200); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; display: flex; gap: 1rem; align-items: baseline;
}
.pub-item time, .pub-tag {
  flex: none; font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  color: var(--accent); text-transform: uppercase; min-width: 6.5rem;
}
.pub-item h3 { font-size: 1.1rem; margin: 0 0 .2rem; }
.pub-item p { margin: 0; color: var(--grey-600); font-size: .95rem; }

/* ---------- Blog-Filter ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: var(--ff-body); font-weight: 700; font-size: .85rem;
  padding: .5rem 1rem; border-radius: 999px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--grey-200); color: var(--grey-700);
  transition: background-color .2s, color .2s, border-color .2s;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.post.is-hidden { display: none; }
.blog-grid { grid-template-columns: repeat(3, 1fr); }

/* ---------- Formular ---------- */
.form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; font-size: .92rem; color: var(--ink); }
.field .req { color: var(--accent); }
.field input, .field textarea, .field select {
  font-family: var(--ff-body); font-size: 1rem; color: var(--text);
  padding: .8rem .9rem; border: 1px solid var(--grey-200); border-radius: 10px; background: var(--surface);
  width: 100%; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,16,46,.14); outline: none;
}
.field textarea { resize: vertical; min-height: 140px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--grey-700); }
.consent input { width: 20px; height: 20px; margin-top: .2rem; flex: none; accent-color: var(--accent); }
.form-hint { font-size: .85rem; color: var(--grey-600); }

/* ---------- Kontaktinfo-Karten ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1rem; }
.contact-card {
  background: var(--surface); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 1.6rem;
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
/* Porträt-Karte in der Kontakt-Spalte */
.contact-portrait { margin: 0 0 1.2rem; position: relative; }
.contact-portrait picture { display: block; }
.contact-portrait img {
  display: block; width: 100%;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  object-fit: cover; aspect-ratio: 4/5;
  object-position: var(--img-pos, 50% 18%);
}
.contact-portrait figcaption {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  background: rgba(10,11,13,.82); color: #fff; font-size: .82rem; font-weight: 700;
  padding: .45rem .85rem; border-radius: 8px; backdrop-filter: blur(4px);
}
.contact-card p, .contact-card address { margin: 0; color: var(--grey-700); font-style: normal; line-height: 1.8; }
.map-embed {
  margin-top: 2rem; border: 1px solid var(--grey-200); border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/7; background: var(--surface-alt);
  display: flex; align-items: center; justify-content: center; color: var(--grey-600); text-align: center; padding: 1rem;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Responsive Unterseiten ---------- */
@media (max-width: 920px) {
  .layout-split { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .pub-item { flex-direction: column; gap: .3rem; }
}

/* ---------- Artikel (Einzelbeitrag) ---------- */
.article { max-width: 72ch; margin-inline: auto; }
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem;
  color: var(--grey-600); font-size: .9rem; margin-bottom: 1.4rem;
}
.article-meta time { font-weight: 700; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); background: rgba(200,16,46,.06); border: 1px solid rgba(200,16,46,.18);
  padding: .25rem .6rem; border-radius: 999px;
}
.article .prose { max-width: none; }
.article-lead { font-size: 1.2rem; color: var(--grey-700); margin-bottom: 1.6rem; }
.article-ref {
  margin-top: 1.5rem; font-size: .9rem; color: var(--grey-600);
  border-top: 1px solid var(--grey-200); padding-top: 1rem;
}
.article-nav {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem; border-top: 1px solid var(--grey-200); padding-top: 1.5rem;
}

/* ---------- Bücher ---------- */
.book-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin: 1rem 0 0; }
.book {
  display: flex; gap: 1.2rem; background: var(--surface); border: 1px solid var(--grey-200);
  border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.book-cover {
  flex: none; width: 84px; height: 120px; border-radius: 8px;
  background: linear-gradient(160deg, var(--ink), var(--grey-700));
  color: #fff; display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--ff-head); font-size: .85rem; font-weight: 600; padding: .6rem; line-height: 1.2;
}
.book h3 { margin: 0 0 .2rem; font-size: 1.15rem; }
.book .book-tag { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.book p { margin: .4rem 0 0; color: var(--grey-600); font-size: .95rem; }
.book .book-pub { font-size: .82rem; color: var(--grey-600); margin-top: .5rem; }
@media (max-width: 700px) { .book-grid { grid-template-columns: 1fr; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Kontaktformular: Rückmeldungen ---------- */
.hp-feld { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-ok, .form-fehler {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  border-left: 3px solid;
}
.form-ok { border-left-color: #1B6B3A; background: rgba(27,107,58,.08); }
.form-fehler { border-left-color: var(--accent); background: var(--accent-soft); }
.form-ok p { margin: .4rem 0 0; }
.form-fehler ul { margin: .4rem 0 0; padding-left: 1.2rem; }
.form-fehler li { margin-bottom: .2rem; }
