/* ============================================================
   MEYER CRIMINAL LAW · DESIGN-SYSTEM
   01 — TOKENS · Design-Variablen (Farben, Typo, Shadows, Spacing)
   ============================================================
   Basis: Mockup v2 · Stand 2026-04-23
   Alle Module ziehen ihre Werte aus diesen Variablen.
   ============================================================ */

:root {
  /* ─── FARBEN ─── */
  --navy:           #0E2D6E;   /* Primärfarbe · Headlines · Brand */
  --navy-deep:      #091E4A;   /* Dark-Sections · Emergency-CTA */
  --royal:          #2E63A9;   /* Akzente · Links · Section-Labels */
  --royal-light:    #4A7FC5;   /* Hover-States · Card-Borders */
  --skyblue:        #BCDAF2;   /* Soft-Flächen · Kontrast-Weiß */
  --skyblue-soft:   #E8F1FB;   /* Icon-Hintergründe */
  --skyblue-wash:   #F4F9FD;   /* Sanfte Section-Backgrounds */
  --skyblue-bg:     #EAF4FD;   /* Alt-Alias (Bestandsseite kompatibel) */
  --orange:         #E8610A;   /* Signal · CTA-Highlight · Notfall */
  --orange-dark:    #C4520A;   /* Hover auf Orange-CTAs */
  --orange-soft:    #FDF1E6;   /* Orange-Akzent-Hintergründe */
  --green:          #22C55E;   /* Live-/Erreichbarkeits-Dot (24/7-Pille, Notfall-Badge) */
  --orange-light:   #FDF0E8;   /* Alt-Alias (Bestandsseite kompatibel) */
  --paper:          #FBFBF9;   /* Hauptbackground (warm-weiß) */
  --white:          #FFFFFF;
  --bg:             #FFFFFF;   /* Alt-Alias */
  --bg-grey:        #F4F6FA;   /* Alt-Alias · graue Flächenabschnitte */
  --bg-mid:         #E8EDF5;   /* Alt-Alias */
  --bg-light:       #F4F9FD;   /* = skyblue-wash, Alias */

  /* ─── TEXT ─── */
  --text:           #1A2744;   /* Body */
  --text-mid:       #4A5875;   /* Secondary */
  --text-muted:     #5A6B88;   /* Alt-Alias (Bestandsseite kompatibel) */
  --text-light:     #7D8AA8;   /* Tertiary · Meta · Labels */

  /* ─── STRUKTUR ─── */
  --border:         #E4ECF5;
  --border-navy:    rgba(14,45,110,0.15);
  --surface:        rgba(255,255,255,0.06);

  /* ─── DARK-SECTION ─── */
  --dark-1:         #0A1929;
  --dark-2:         #0D2137;

  /* ─── SHADOWS ─── */
  --shadow-sm:      0 1px 3px rgba(14,45,110,0.04);
  --shadow-md:      0 8px 24px rgba(14,45,110,0.08);
  --shadow-lg:      0 24px 60px rgba(14,45,110,0.12);
  --shadow-card:    0 6px 28px rgba(14,45,110,0.10);
  --shadow-cta:     0 8px 20px rgba(14,45,110,0.25);

  /* ─── TYPOGRAFIE ─── */
  --font-serif:     'Fraunces', 'Times New Roman', Georgia, serif;
  --font-sans:      'Inter', 'Lato', 'Segoe UI', Arial, sans-serif;
  --font-legacy:    'Lato', 'Segoe UI', Arial, sans-serif;  /* Bestandskompatibilität */

  /* ─── RADIUS ─── */
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-pill:    100px;

  /* ─── TRANSITIONS ─── */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:         0.2s var(--ease);
  --t-med:          0.3s var(--ease);
  --t-slow:         0.7s var(--ease);

  /* ─── LAYOUT ─── */
  --container:      1240px;
  --gutter:         2rem;
  --gutter-sm:      1rem;
}
/* ============================================================
   02 — BASE · Reset, Typography, Container
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── Headlines: Fraunces Serif mit redaktioneller Wärme ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.15; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* Italic-Akzent in Headlines (Markenzeichen des Redesigns) */
.italic,
h1 .accent, h2 .accent, h3 .accent {
  font-style: italic;
  color: var(--royal);
  font-weight: 400;
}

p {
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 400;
}

a {
  color: var(--royal);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--navy); }

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

ul, ol { list-style: none; }

/* ─── Container ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 640px) {
  .container { padding: 0 var(--gutter-sm); }
}

/* ─── Section-Fundament ─── */
section,
.section { padding: 6rem 0; position: relative; z-index: 1; }
.section-white { background: var(--white); }
.section-paper { background: var(--paper); }
.section-wash  { background: var(--skyblue-wash); }
.section-grey  { background: var(--bg-grey); }          /* Bestandskompatibel */
.section-dark  { background: var(--navy-deep); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-navy  { background: var(--navy); color: var(--white); }
.section-navy  h2, .section-navy h3 { color: var(--white); }

/* ─── Section-Header ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--royal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: var(--royal);
}
.section-dark .section-label { color: var(--skyblue); }
.section-dark .section-label::before { background: var(--skyblue); }

/* Zentrierte Sektionsköpfe (z. B. Mandantenstimmen): ohne Strich,
   sonst liegt der ::before-Strich über den ersten Buchstaben */
.section-label-center { padding-left: 0; }
.section-label-center::before { display: none; }

.section-title {
  margin-bottom: 1rem;
  max-width: 780px;
}
.section-intro {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.section-dark .section-intro { color: rgba(255,255,255,0.75); }

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ─── Helpers ─── */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
/* ============================================================
   03 — LAYOUT · Nav, Hero, Footer, Mobile-Menu
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   NAV · sticky, hell, backdrop-blur
   ────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,251,249,0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1001;
}
.nav-logo-img {
  height: 92px;   /* vergrößert 2026-04: ursprgl. 54px → 72px → 92px */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0;
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links > li > a:hover { color: var(--navy); }
.nav-links > li > a.active { color: var(--navy); font-weight: 600; }

.nav-links li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--t-fast);
  margin-left: 0.2rem;
}
.nav-links li.has-dropdown:hover > a::after { transform: rotate(-135deg) translateY(2px); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  min-width: 260px;
  box-shadow: var(--shadow-md);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: all var(--t-fast);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover {
  background: var(--skyblue-wash);
  color: var(--navy);
  padding-left: 1.6rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 1001;
}

/* ─── Notfall-CTA in Nav (Pill-Button, Orange als Signalfarbe) ─── */
.btn-notfall-nav,
.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--t-fast);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(232,97,10,0.25);
}
.btn-notfall-nav:hover,
.nav-cta:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232,97,10,0.35);
}
.btn-notfall-nav svg,
.nav-cta svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* Rufnummer in der Header-Notfall-Pille: nur zeigen, wenn genug Platz
   (zwischen 900 px — Pille wird ohnehin ausgeblendet — und 1180 px nur „Notfall") */
@media (max-width: 1180px) {
  .btn-notfall-nav .nfn-num { display: none; }
}

/* ─── Hamburger (mobil) ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-mid);
  transition: all var(--t-fast);
  border-radius: 1px;
}

/* ─── Mobile-Menu Panel ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 1rem 1.5rem 2rem;
  z-index: 99;
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 0.5rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
}
.mobile-menu a:hover { color: var(--navy); }
.mobile-menu-group { padding: 0.25rem 0 0.5rem; }
.mobile-menu-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  padding: 0.75rem 0.5rem 0.25rem;
}
.mobile-menu .btn-notfall-nav {
  margin-top: 1rem;
  justify-content: center;
  padding: 0.9rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* ─── Sticky-Call (Floating Phone-Icon, mobil) ─── */
.sticky-call {
  position: fixed;
  bottom: 80px; right: 16px;
  width: 50px; height: 50px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(232,97,10,0.35);
  transition: all var(--t-fast);
}
.sticky-call:hover {
  transform: scale(1.08);
  background: var(--orange-dark);
  color: var(--white);
}
.sticky-call svg { width: 22px; height: 22px; fill: currentColor; }

/* ──────────────────────────────────────────────────────────
   HERO · Split-Layout mit Radial-Glows
   ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse at center, var(--skyblue-soft) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 10%; left: -5%;
  width: 40%; height: 60%;
  background: radial-gradient(ellipse at center, var(--orange-soft) 0%, transparent 70%);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* Eyebrow-Pill mit Live-Dot */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--royal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-claim {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-mid);
  margin-bottom: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}
.hero-claim strong {
  color: var(--orange);
  font-weight: 600;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}

/* ─── Trust-Zeile unter den Hero-CTAs (Anrufhürde senken) ─── */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
  margin-bottom: 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-mid);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.hero-trust .tick {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── Jump-Chips (Direktlinks für Erstanrufer) ─── */
.hero-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.jump-label {
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-right: 0.35rem;
}
.jump-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--t-fast);
  text-decoration: none;
}
.jump-chip:hover {
  border-color: var(--royal);
  color: var(--royal);
  transform: translateY(-1px);
}
.jump-chip svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ─── Hero-Visual (Split-Portrait + Floating Badge) ─── */
.hero-photo-col,
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-photo-main {
  position: absolute;
  top: 0; right: 0;
  width: 78%; height: 80%;
  background: linear-gradient(135deg, var(--skyblue) 0%, var(--royal-light) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-sub {
  position: absolute;
  bottom: 0; left: 0;
  width: 42%; height: 36%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-main img,
.hero-photo-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bestands-Kompatibilität: alter hero-portrait-Wrap */
.hero-portrait-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-portrait { width: 100%; height: 100%; object-fit: cover; }

.img-placeholder {
  color: var(--white);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.img-placeholder svg {
  opacity: 0.6;
  margin: 0 auto 0.75rem;
}
.img-placeholder strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Floating BVerfG-Badge */
.hero-badge {
  position: absolute;
  top: 13%; left: -9%;
  background: var(--white);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-badge-icon {
  width: 42px; height: 42px;
  background: var(--skyblue-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.3;
}
.hero-badge-text strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ──────────────────────────────────────────────────────────
   FOOTER · dunkel, 4-spaltig
   ────────────────────────────────────────────────────────── */
.site-footer,
footer.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.footer-brand .footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--skyblue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--white); }

.footer-col .has-dropdown .dropdown {
  position: static;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.5rem 0 0 1rem;
  min-width: 0;
  display: block;
}
.footer-col .has-dropdown .dropdown a {
  padding: 0.25rem 0;
  border: none;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-col .has-dropdown .dropdown a:hover { color: var(--white); padding-left: 0; }

.footer-contact-item {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.55rem;
  line-height: 1.5;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  transition: color var(--t-fast);
}
.footer-contact-item a:hover { color: var(--white); }

.footer-gbp a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  margin-top: 0.35rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--white);
  transition: all var(--t-fast);
}
.footer-gbp a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}
.footer-bottom-links a:hover { color: var(--white); }
/* ============================================================
   04 — COMPONENTS · Buttons, Cards, FAQ, Stats, Testimonials,
                     Forms, Map, BVerfG, Successes, Pillars, CTA
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────────────────── */

/* Master-Pill: btn-primary (Navy, Hover Orange) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232,97,10,0.3);
}
.btn-primary svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* Secondary: Weiß mit Border */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }

/* btn-cta-royal: Vollwertiger Royal-CTA (Hero, Footer-Termin) — parallel zu btn-primary */
.btn-cta-royal {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  background: var(--royal);
  color: var(--white);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(46,99,169,0.28);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-cta-royal:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14,45,110,0.35);
}
.btn-cta-royal svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* btn-call (Bestandsseite: prominenter Anruf-Button) */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  box-shadow: 0 6px 20px rgba(232,97,10,0.25);
  border: none;
  white-space: nowrap;
}
.btn-call:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-call svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

/* btn-termin (Bestandsseite: Cal.com-Trigger, Sky-Blue) */
.btn-termin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--skyblue);
  color: var(--navy);
  border: 2px solid var(--royal);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.btn-termin:hover {
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
}
.btn-termin svg { flex-shrink: 0; }

/* btn-text (Inline-Link mit Pfeil) */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--royal);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  transition: gap var(--t-fast);
  text-decoration: none;
}
.btn-text::after { content: '→'; }
.btn-text:hover { gap: 0.8rem; color: var(--navy); }

/* ──────────────────────────────────────────────────────────
   STATS-STRIP (5 Metriken inkl. Google-Rating)
   ────────────────────────────────────────────────────────── */
.stats-strip {
  margin-top: 4rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-num .plus { color: var(--orange); }
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-google {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.google-stars { color: #FBBC05; font-size: 0.9rem; letter-spacing: 0.1em; }
.stat-google-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.stat-google-logo svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─── Hero-Meta (Bestandskompatibilität, alternativ zu Stats-Strip) ─── */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.hero-meta-item {
  text-align: center;
  padding: 0 0.8rem;
  border-right: 1px solid var(--border);
}
.hero-meta-item:last-child { border-right: none; }
.hero-meta-item .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.hero-meta-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}
.hero-meta-google { display: flex; align-items: center; justify-content: center; }
.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--navy);
}
.hero-google-badge .google-badge-score {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
}
.hero-google-badge .google-badge-stars { color: #FBBC05; font-size: 0.82rem; }
.hero-google-badge .google-badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────────────────
   AREA-CARDS (Rechtsgebiete) · 7 Cards, 3 featured mit Orange
   ────────────────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.areas-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--skyblue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--royal-light);
  box-shadow: var(--shadow-md);
}
.area-card:hover::before { transform: scaleX(1); }

/* Featured: Orange-Accent, permanent */
.area-card.featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--orange), #f5a568);
}
.area-card.featured .area-icon {
  background: var(--orange-soft);
  color: var(--orange);
}

.area-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--skyblue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
  margin-bottom: 1.25rem;
}
.area-icon svg { width: 22px; height: 22px; fill: currentColor; }

.area-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.25;
  /* lange Komposita (Betäubungsmittelstrafrecht) sauber trennen statt Kachel sprengen */
  overflow-wrap: break-word;
  hyphens: auto;
}
.area-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.area-more {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--royal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--t-fast);
  margin-top: auto;
}
.area-more::after { content: '→'; transition: transform var(--t-fast); }
.area-card:hover .area-more { gap: 0.6rem; }
.area-card.featured .area-more { color: var(--orange); }

/* Compact-Variante (Bestandskompatibilität) */
.area-card-compact { padding: 1.25rem; }
.area-card-compact .area-icon { width: 36px; height: 36px; margin-bottom: 0.6rem; border-radius: 10px; }
.area-card-compact .area-icon svg { width: 18px; height: 18px; }
.area-card-compact .area-title { font-size: 0.98rem; margin-bottom: 0.35rem; }
.area-card-compact .area-desc { font-size: 0.82rem; line-height: 1.55; margin-bottom: 0.6rem; }
.area-card-compact .area-more { font-size: 0.76rem; }

/* ──────────────────────────────────────────────────────────
   FAQ · zweispaltig, details/summary
   ────────────────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.faq-side .section-title { margin-bottom: 1.5rem; }
.faq-help {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}
.faq-help-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.faq-help-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.faq-help .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.faq-item[open] {
  border-color: var(--royal-light);
  box-shadow: var(--shadow-sm);
}
.faq-summary {
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: 1rem;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+';
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--royal);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.faq-body strong { color: var(--navy); font-weight: 600; }

/* ──────────────────────────────────────────────────────────
   EDITORIAL (Über mich) · Portrait + Quote + Memberships
   ────────────────────────────────────────────────────────── */
.editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.editorial-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--skyblue) 0%, var(--royal) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--navy);
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-weight: 400;
}

.memberships,
.memberships-new {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.membership-tag {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
}

/* Bestandskompatibler bverfg-badge + about-stats (für Übergangs-Phase) */
.bverfg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  background: var(--skyblue-wash);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.bverfg-badge .badge-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal);
  font-weight: 600;
}
.bverfg-badge .badge-text {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}
.stat-box .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-box .label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ──────────────────────────────────────────────────────────
   BVERFG-FEATURE · dunkler Block mit 5 Aktenzeichen-Cards
   ────────────────────────────────────────────────────────── */
.bverfg-feature {
  background: var(--navy-deep);
  border-radius: var(--radius-xl);
  padding: 4rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.bverfg-feature::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(ellipse, rgba(188,218,242,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.bverfg-feature-inner { position: relative; z-index: 2; }
.bverfg-feature .section-label { color: var(--skyblue); }
.bverfg-feature .section-label::before { background: var(--skyblue); }
.bverfg-feature h2 { color: var(--white); }
.bverfg-feature p  { color: rgba(255,255,255,0.8); }

.bverfg-cases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.bverfg-case {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--t-med);
}
.bverfg-case:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.bverfg-case-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--skyblue);
  margin-bottom: 0.4rem;
}
.bverfg-case-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ── BVerfG-Bild (Murano-Gläser, rechte Hälfte) + Navy-Scrim ── */
.bverfg-media {
  position: absolute;
  top: 0; right: 0;
  width: 48%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.bverfg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg,
    var(--navy-deep) 0%,
    var(--navy-deep) 50%,
    rgba(9,30,74,0.90) 62%,
    rgba(9,30,74,0.58) 100%);
}

/* ── Full-Bleed-Außenband (Standort · ruhige Atempause) ── */
.exterior-band {
  position: relative;
  height: clamp(300px, 36vw, 500px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.exterior-band-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.exterior-band-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(95deg,
    rgba(9,30,74,0.88) 0%,
    rgba(9,30,74,0.62) 45%,
    rgba(9,30,74,0.28) 100%);
}
.exterior-band-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--white);
}
.exterior-band .section-label { color: var(--skyblue); }
.exterior-band .section-label::before { background: var(--skyblue); }
.exterior-band-title {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0.35rem 0 0;
}
.exterior-band-title .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--skyblue);
}
.exterior-band-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.6rem;
  max-width: 36ch;
}

/* ──────────────────────────────────────────────────────────
   VERTEIDIGUNGSERFOLGE (anonymisierte Fallkarten)
   ────────────────────────────────────────────────────────── */
.successes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--t-med);
}
.success-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--royal-light);
}
.success-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.success-headline {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.success-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.success-result {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--royal);
  font-size: 0.95rem;
  font-weight: 500;
}
.success-result::before {
  content: '→ ';
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
}
.successes-note {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 720px;
  line-height: 1.5;
}

/* ──────────────────────────────────────────────────────────
   VIER PRINZIPIEN · nummeriert 01–04
   ────────────────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--t-med);
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--orange);
  font-style: italic;
  line-height: 1;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   EMERGENCY-CTA · dunkler Block mit Orange-Highlight
   ────────────────────────────────────────────────────────── */
.emergency-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.emergency-cta::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 50%; height: 160%;
  background: radial-gradient(ellipse, rgba(232,97,10,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.emergency-cta-inner { position: relative; z-index: 1; }
.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.emergency-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 1.5s infinite;
}
.emergency-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.emergency-cta p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

.emergency-call {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.emergency-call .btn-primary {
  background: var(--orange);
  font-size: 1.2rem;
  padding: 1.25rem 2rem;
  box-shadow: 0 8px 24px rgba(232,97,10,0.4);
}
.emergency-call .btn-primary:hover { background: #c9530a; }

/* Bestandskompatibilität: notfall-box (alte Seite) */
.notfall-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.notfall-box h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.notfall-box p { color: rgba(255,255,255,0.8); font-size: 0.98rem; max-width: 520px; }
.notfall-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* ──────────────────────────────────────────────────────────
   TESTIMONIALS · Grid-Variante UND Slider (beides unterstützt)
   ────────────────────────────────────────────────────────── */

/* Grid-Variante (Mockup) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial .testimonial-stars {
  color: #FBBC05;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: inline-block;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Google-Logo-Header in jeder Testimonial-Card */
.testimonial-google {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.testimonial-google .google-g {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.testimonial-google .testimonial-stars { margin: 0; }

/* ─── Slider-Variante (alle 16 Bewertungen, horizontal scrollbar) ─── */
.testimonial-slider {
  position: relative;
  margin-top: 2rem;
}
.testimonial-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0.25rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--royal-light) var(--skyblue-wash);
  -webkit-overflow-scrolling: touch;
}
.testimonial-track::-webkit-scrollbar { height: 8px; }
.testimonial-track::-webkit-scrollbar-track {
  background: var(--skyblue-wash);
  border-radius: 4px;
}
.testimonial-track::-webkit-scrollbar-thumb {
  background: var(--royal-light);
  border-radius: 4px;
}

.testimonial-slide {
  flex: 0 0 min(380px, 85vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--t-med);
}
.testimonial-slide:hover {
  border-color: var(--royal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-slide .testimonial-text {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

/* Slider-Navigation (optional, wenn JS aktiv) */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.testimonial-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonial-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.testimonial-dots {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  padding: 0;
}
.testimonial-dot.active {
  background: var(--royal);
  transform: scale(1.3);
}

/* Google-Badge über dem Slider (Autorschaft) */
.testimonials-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.75rem;
}
.testimonials-google-badge svg { width: 18px; height: 18px; flex-shrink: 0; }
.testimonials-google-badge-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.testimonials-google-badge-rating {
  color: #FBBC05;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

/* ──────────────────────────────────────────────────────────
   KONTAKT-SECTION · Formular links, Info-Blöcke + Map rechts
   ────────────────────────────────────────────────────────── */
.contact-layout,
.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.contact-form-wrap,
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3,
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.contact-form-wrap > p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.form-field,
.form-group { margin-bottom: 1.25rem; }
.form-field label,
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-field label .req { color: var(--orange); }
.form-field input,
.form-field textarea,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--text);
  transition: all var(--t-fast);
}
.form-field input:focus,
.form-field textarea:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--royal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,99,169,0.1);
}
.form-field textarea,
.form-group textarea { min-height: 130px; resize: vertical; }

.file-upload {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  background: var(--skyblue-wash);
  cursor: pointer;
  transition: all var(--t-fast);
}
.file-upload:hover {
  border-color: var(--royal);
  background: var(--skyblue-soft);
}
.file-upload-icon {
  color: var(--royal);
  margin-bottom: 0.5rem;
}
.file-upload-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.file-upload-hint {
  font-size: 0.78rem;
  color: var(--text-light);
}
.file-upload input { display: none; }

.privacy-note {
  background: var(--skyblue-wash);
  border-left: 3px solid var(--royal);
  padding: 0.9rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 1.5rem 0;
}
.privacy-note strong { color: var(--navy); }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ─── Kontakt-Info-Blöcke (rechte Spalte, Sans-Serif für Telefon/Mail) ─── */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--t-fast);
}
.contact-block:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--royal-light);
}
.contact-icon {
  width: 42px; height: 42px;
  background: var(--skyblue-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; fill: currentColor; }
.contact-block.urgent .contact-icon {
  background: var(--orange-soft);
  color: var(--orange);
}
.contact-block-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
/* WICHTIG: Kontakt-Werte in Sans, NICHT Serif-Italic */
.contact-block-value {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: 0;
  font-style: normal;
}
.contact-block-value a {
  color: inherit;
  transition: color var(--t-fast);
  text-decoration: none;
}
.contact-block-value a:hover { color: var(--orange); }
.contact-block-sub {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ──────────────────────────────────────────────────────────
   ADDRESS CARD · ersetzt frühere stilisierte SVG-Karte
   Realistisch, schlicht, performant. Verlinkt zu Google Maps.
   ────────────────────────────────────────────────────────── */
.address-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.6rem;
  margin-top: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-med), transform var(--t-med), border-color var(--t-med);
}
.address-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--royal-light);
  transform: translateY(-2px);
}
.address-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--skyblue);
  color: var(--royal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.address-card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.address-card-body {
  flex: 1;
  min-width: 0;
}
.address-card-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.address-card-street,
.address-card-city {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.45;
}
.address-card-note {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
}
.address-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
  padding: 0.7rem 1.15rem;
  background: var(--royal);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(46,99,169,0.25);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.address-card-cta:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(14,45,110,0.32);
}
.address-card-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Bestandskompatibilität: map-box (alte Seite) */
.map-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
}
.map-box h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.map-box iframe {
  border: 0;
  border-radius: var(--radius-md);
  width: 100%;
}

/* ──────────────────────────────────────────────────────────
   FAQ-HUB · Grid aller FAQs + Help-Box
   ────────────────────────────────────────────────────────── */
.faq-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.faq-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all var(--t-med);
  box-shadow: var(--shadow-sm);
}
.faq-card:hover {
  border-color: var(--royal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}
.faq-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--skyblue);
  font-size: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.faq-card-body {
  flex: 1;
  min-width: 0;
}
.faq-card-cat {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 0.3rem;
}
.faq-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
}
.faq-card-arrow {
  flex-shrink: 0;
  color: var(--royal);
  opacity: 0.55;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.faq-card-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}
.faq-card:hover .faq-card-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.faq-hub-help {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
}
.faq-hub-help-inner {
  max-width: 640px;
  margin: 0 auto;
}
.faq-hub-help h2 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.6rem;
}
.faq-hub-help p {
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
}
.faq-hub-help-actions {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 640px) {
  .faq-hub-grid { grid-template-columns: 1fr; }
  .faq-card { padding: 1.15rem; gap: 0.85rem; }
  .faq-card-icon { width: 44px; height: 44px; font-size: 1.4rem; }
  .faq-card-title { font-size: 0.98rem; }
  .faq-hub-help { padding: 2.25rem 1.5rem; }
  .faq-hub-help-actions { flex-direction: column; width: 100%; }
  .faq-hub-help-actions .btn-primary,
  .faq-hub-help-actions .btn-cta-royal {
    width: 100%;
    justify-content: center;
  }
}
/* ============================================================
   05 — UTILITIES · Responsive, Scroll-Reveal, Helpers
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   SCROLL-REVEAL
   ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--t-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   ────────────────────────────────────────────────────────── */

/* ─── Tablet < 1100px ─── */
@media (max-width: 1100px) {
  .hero-grid { gap: 3rem; }
  .stats-strip { padding: 1.75rem 1.25rem; gap: 0.75rem; }
  .stat-item { padding: 0 0.6rem; }
  .stat-num { font-size: 2rem; }
  .bverfg-feature { padding: 3rem; }
  .emergency-cta { padding: 2.75rem; }
  .editorial-grid,
  .faq-layout { gap: 3.5rem; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Tablet < 900px: Nav bricht um ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sticky-call { display: flex; }
  /* Notfall-Pille im Header ausblenden: verhindert Überlauf/Abschneiden
     auf schmalen Screens. Erreichbarkeit bleibt über den Sticky-Call-Button
     (unten rechts), die Hero-CTA und den Call-Button im Mobile-Menü erhalten. */
  .nav-right .btn-notfall-nav { display: none; }

  .hero { padding: 3rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual,
  .hero-photo-col { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-badge { left: 2%; }

  .stats-strip,
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .stat-item,
  .hero-meta-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0.5rem;
  }
  .stat-item:nth-last-child(-n+2),
  .hero-meta-item:nth-last-child(-n+2) { border-bottom: none; }

  .areas-grid,
  .areas-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .editorial-grid,
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .bverfg-cases { grid-template-columns: repeat(2, 1fr); }
  .successes-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .emergency-cta {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    text-align: center;
  }
  .emergency-call { align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout,
  .contact-map-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bverfg-feature { padding: 2.5rem 2rem; }

  .notfall-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  section,
  .section { padding: 4rem 0; }

  /* BVerfG-Murano: auf Mobil dezente Voll-Textur, Scrim deckender → Kacheln bleiben lesbar */
  .bverfg-media { width: 100%; opacity: 0.20; }
  .bverfg-scrim {
    background: linear-gradient(180deg, rgba(9,30,74,0.80) 0%, var(--navy-deep) 100%);
  }
  .exterior-band-sub { font-size: 0.98rem; }
}

/* ─── Mobil < 640px ─── */
@media (max-width: 640px) {
  .site-nav { padding: 0.75rem 1rem; gap: 0.75rem; }
  .nav-logo-img { height: 56px; }

  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.1rem); }

  .hero { padding: 2.5rem 0 3.5rem; }
  .hero-eyebrow {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1.25rem;
  }
  .hero-claim { font-size: 1.1rem; }
  .hero-sub { font-size: 0.98rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-call,
  .hero-actions .btn-termin,
  .hero-actions .btn-secondary,
  .hero-actions .btn-cta-royal {
    flex: 1 1 auto;
    justify-content: center;
  }
  .hero-jumps { gap: 0.35rem; }
  .jump-chip {
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
  }

  .stats-strip,
  .hero-meta { grid-template-columns: 1fr 1fr; padding: 1.25rem; }
  .stat-num { font-size: 1.75rem; }

  /* Schwerpunkte mobil: kompaktes 2-Spalten-Raster statt 7 voll-breiter
     Karten — deutlich kürzeres Scrollen, weiterhin scanbar. */
  .areas-grid,
  .areas-grid-3 { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .area-card { padding: 1.1rem 0.95rem; }
  .area-icon { width: 38px; height: 38px; margin-bottom: 0.6rem; border-radius: 10px; }
  .area-icon svg { width: 18px; height: 18px; }
  .area-title { font-size: 0.9rem; line-height: 1.25; margin-bottom: 0.35rem; overflow-wrap: break-word; hyphens: auto; }
  .area-desc {
    font-size: 0.8rem; line-height: 1.45; margin-bottom: 0;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .area-more { display: none; }

  /* BVerfG-Aktenzeichen mobil: Schriftgröße so, dass die Nummer sicher
     in die schmale Spalte passt (kein Abschneiden am Kartenrand). */
  .bverfg-cases { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 0.7rem; }
  .bverfg-case { padding: 0.9rem 0.8rem; }
  .bverfg-case-num { font-size: 1.02rem; overflow-wrap: break-word; hyphens: auto; }
  .bverfg-case-text { overflow-wrap: break-word; hyphens: auto; }
  .bverfg-feature { padding: 2rem 1.5rem; border-radius: var(--radius-lg); }

  .pillars-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 1rem; }
  .pillar { padding: 1.5rem 1.25rem; overflow-wrap: break-word; hyphens: auto; }
  .pillar h3, .pillar p { overflow-wrap: break-word; hyphens: auto; }

  .emergency-cta {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
  }
  .emergency-call .btn-primary {
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
  }

  .contact-form-wrap,
  .contact-form { padding: 1.75rem 1.5rem; }
  .contact-block { padding: 1.1rem 1.25rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  footer,
  .site-footer { padding: 3rem 0 1.5rem; }

  /* Slider auf Mobil: schmalere Cards */
  .testimonial-slide {
    flex: 0 0 85vw;
    padding: 1.5rem;
  }

  /* Address-Card auf Mobil: Icon oben zentriert, Body darunter voll-breit */
  .address-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 1.5rem 1.4rem 1.4rem;
    gap: 0.85rem;
  }
  .address-card-icon {
    width: 44px;
    height: 44px;
    align-self: flex-start;
  }
  .address-card-icon svg {
    width: 24px;
    height: 24px;
  }
  .address-card-name { font-size: 1.15rem; }
  .address-card-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ──────────────────────────────────────────────────────────
   PRINT
   ────────────────────────────────────────────────────────── */
@media print {
  .site-nav, .mobile-menu, .sticky-call, .cookie-banner,
  #cal-float, #termin-lightbox,
  .hero-jumps, .testimonial-slider, .testimonial-nav,
  .emergency-cta, .address-card, .map-box {
    display: none !important;
  }
  body { background: white; color: black; }
  * { box-shadow: none !important; }
}

/* ──────────────────────────────────────────────────────────
   PREFERS-REDUCED-MOTION
   ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─────────────────────────────────────────────────────────
   Hero-Photo-Sub · Placeholder-Variante
   (Textanzeige bis Umfeldfoto vorliegt)
   ───────────────────────────────────────────────────────── */
.hero-photo-sub-placeholder {
  flex-direction: column;
  color: var(--skyblue);
  text-align: center;
  padding: 1rem;
  gap: 0.4rem;
  font-family: var(--font-sans);
}
.hero-photo-sub-placeholder svg {
  color: var(--skyblue);
  opacity: 0.9;
  margin-bottom: 0.25rem;
}
.hero-photo-sub-placeholder strong {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #ffffff;
}
.hero-photo-sub-placeholder span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   SUBPAGES · Page-Hero + Content-with-Sidebar
   ============================================================
   Für Rechtsgebiets-, Kanzlei-, Info- und Aktuelles-Unterseiten
   ============================================================ */

/* ─── Page-Hero: kompakter Hero für Unterseiten ─── */
.page-hero {
  padding: 8rem 0 3rem;
  background:
    radial-gradient(circle at 20% 30%, rgba(188,218,242,0.35) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(46,99,169,0.14) 0%, transparent 45%),
    var(--paper);
  border-bottom: 1px solid var(--border);
}
.page-hero .breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.4rem;
  letter-spacing: 0.01em;
}
.page-hero .breadcrumb a {
  color: var(--royal);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero .breadcrumb a:hover {
  color: var(--navy);
  text-decoration: underline;
}
.page-hero .breadcrumb span {
  color: var(--text-mid);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--navy);
  margin: 0.6rem 0 1.2rem;
  letter-spacing: -0.02em;
}
.page-hero h1 .accent,
.page-hero h1 .italic {
  font-style: italic;
  color: var(--royal);
  font-weight: 500;
}
.page-hero .page-intro {
  max-width: 680px;
  color: var(--text-mid);
  margin-top: 1rem;
  font-size: 1.08rem;
  line-height: 1.65;
}

/* ── Signet · Drei-Balken-Akzent aus dem Logo (Navy→Royal→Skyblue) ── */
.signet-bars {
  display: flex;
  gap: 7px;
  margin: -0.4rem 0 0.2rem;
}
.signet-bars span {
  display: block;
  width: 32px;
  height: 5px;
  border-radius: 2.5px;
}
.signet-bars span:nth-child(1) { background: var(--navy); }
.signet-bars span:nth-child(2) { background: var(--royal); }
.signet-bars span:nth-child(3) { background: var(--skyblue); }

/* ─── Content mit Sidebar ─── */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .content-with-sidebar {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ─── Content-Body: Typo für längere Fließtext-Passagen ─── */
.content-body {
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 760px;
}
.content-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 1.4rem;
  letter-spacing: -0.01em;
}
.content-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}
.content-body h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.8rem 0 0.7rem;
  letter-spacing: 0.01em;
}
.content-body p {
  margin: 0 0 1.3rem;
}
.content-body p a {
  color: var(--royal);
  text-decoration: none;
  border-bottom: 1px solid rgba(46,99,169,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.content-body p a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.content-body ul, .content-body ol {
  margin: 0 0 1.4rem;
  padding-left: 1.5rem;
}
.content-body li {
  margin-bottom: 0.5rem;
}
.content-body strong {
  font-weight: 600;
  color: var(--navy);
}

/* ─── Summary-Box · gelbliche/paper Intro-Kachel oben im Fließtext ─── */
.summary-box {
  background: var(--skyblue-wash);
  border-left: 4px solid var(--royal);
  padding: 1.2rem 1.4rem;
  margin: 0 0 2rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.summary-box strong {
  color: var(--navy);
  font-weight: 600;
  display: inline;
}

/* ─── Info-Box · blaue Hervorhebung ─── */
.info-box {
  background: var(--skyblue-soft);
  border: 1px solid var(--skyblue);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.info-box strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* ─── Info-Box · warn-Variante (orange Akzent) ─── */
.info-box-warn {
  background: var(--orange-soft);
  border-color: rgba(232,97,10,0.25);
}
.info-box-warn strong {
  color: var(--orange-dark);
}

/* ─── Sidebar (rechte Spalte) ─── */
.sidebar-cta {
  background: var(--navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.8rem;
}
.sidebar-cta .notfall-badge {
  display: inline-block;
  background: var(--orange);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.sidebar-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}
.sidebar-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1.3rem;
}
.sidebar-cta .btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #ffffff;
  text-decoration: none;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 0.7rem;
  transition: background 0.2s;
}
.sidebar-cta .btn-call:hover {
  background: var(--orange-dark);
  color: #ffffff;
}
.sidebar-cta .btn-call svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.sidebar-cta .btn-termin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ffffff;
  color: var(--navy);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
  transition: background 0.2s, color 0.2s;
}
.sidebar-cta .btn-termin:hover {
  background: var(--skyblue);
  color: var(--navy);
}
.sidebar-cta .btn-secondary-light {
  display: block;
  text-align: center;
  background: transparent;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 0.55rem 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.88rem;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.sidebar-cta .btn-secondary-light:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Sidebar-Links-Block */
.sidebar-links {
  background: var(--skyblue-wash);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.4rem;
}
.sidebar-links .section-label {
  padding-left: 0;
  margin-bottom: 0.9rem;
}
.sidebar-links .section-label::before { display: none; }
.sidebar-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-links li {
  margin-bottom: 0.5rem;
}
.sidebar-links .btn-text {
  font-family: var(--font-sans);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, transform 0.15s;
}
.sidebar-links .btn-text::after {
  content: ' →';
  margin-left: 0.3rem;
  color: var(--royal);
  transition: transform 0.15s;
}
.sidebar-links .btn-text:hover {
  color: var(--royal);
}
.sidebar-links .btn-text.active {
  color: var(--royal);
  font-weight: 600;
}

/* Subpage padding — kleinere Sektion als Startseite */
section.section.subpage {
  padding: 3.5rem 0 5rem;
}

/* ─────────────────────────────────────────────────────────
   LEGAL-PAGES · Impressum, Datenschutz, Danke
   ───────────────────────────────────────────────────────── */
.page-hero-compact {
  padding: 7rem 0 2rem;
}

.legal-content {
  max-width: 820px;
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.2rem 0 1rem;
  line-height: 1.2;
}
.legal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.8rem 0 0.8rem;
}
.legal-content h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.4rem 0 0.6rem;
  letter-spacing: 0.01em;
}
.legal-content p { margin: 0 0 1.1rem; }
.legal-content a {
  color: var(--royal);
  text-decoration: none;
  border-bottom: 1px solid rgba(46,99,169,0.3);
}
.legal-content a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.legal-content ul, .legal-content ol {
  margin: 0 0 1.2rem;
  padding-left: 1.4rem;
}
.legal-content li { margin-bottom: 0.4rem; }
.legal-content strong {
  font-weight: 600;
  color: var(--navy);
}
.legal-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* ════════════════════════════════════════════════════════════════
   AKTUELLES — ENTSCHEIDUNGSBESPRECHUNGEN (Fall-Komponenten)
   Ergänzt 2026-06-03 · stylt die 10 aktuelles/-Fallseiten.
   Nur Bestands-Tokens; Orange-Disziplin: hier nur Navy/Royal.
   ════════════════════════════════════════════════════════════════ */

/* Kopfbereich des Beitrags (Meta + Az. + Normen) */
.article-header {
  margin: 0 0 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--border);
}

/* Court-/Gebiet-Tags */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.article-meta-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: var(--radius-pill);
  overflow-wrap: break-word;
  hyphens: auto;
}
.article-meta-tag.gericht { background: var(--navy); color: var(--white); }
.article-meta-tag.gebiet {
  background: var(--skyblue-soft);
  color: var(--royal);
  border: 1px solid var(--skyblue);
}

/* Aktenzeichen / Entscheidungs-Zeile */
.article-az {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.7rem;
}

/* Normen-Zeile (Label „Normen:" + Badges) */
.article-datum {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-light);
}
.normbadge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--skyblue-wash);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* Amtlicher Leitsatz — editoriale Hervorhebung (Fraunces, navy, kursiv) */
.leitsatz-box {
  background: var(--skyblue-wash);
  border-left: 4px solid var(--royal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.4rem 1.6rem;
  margin: 0 0 2.2rem;
}
.leitsatz-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 0.6rem;
}
.leitsatz-box p {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--navy);
  margin: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* „Über den Autor"-Box — wiederverwendbar */
.article-author-box {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  margin: 3rem 0 0;
  padding: 1.6rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.author-box-avatar {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: 1.3rem;
  font-weight: 600;
}
.author-box-body { flex: 1 1 auto; min-width: 0; }
.author-box-name {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.author-box-role {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--royal);
  margin: 0.15rem 0 0.7rem;
}
.author-box-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0 0 1rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.author-box-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.author-box-actions .btn-primary,
.author-box-actions .btn-cta-royal {
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .article-author-box { flex-direction: column; gap: 0.9rem; padding: 1.3rem 1.2rem; }
  .author-box-actions { width: 100%; }
  .author-box-actions .btn-primary,
  .author-box-actions .btn-cta-royal { flex: 1 1 auto; justify-content: center; }
  .leitsatz-box { padding: 1.2rem 1.25rem; }
  .leitsatz-box p { font-size: 1rem; }
}

/* ════════════════════════════════════════════════════════════
   AKTUELLES — News-Hub (Batch 3, 03.06.2026)
   Rechtsprechungs-Übersicht: Intro · Jahres-Gruppen · Fall-Karten.
   Idiom an .area-card angelehnt; Meta/Badges an article-* Tokens.
   Orange-Disziplin: ausschließlich Navy/Royal/Skyblue.
   ════════════════════════════════════════════════════════════ */

/* Lead-Text der Rubrik */
.article-hub-intro {
  max-width: 760px;
  margin: 0 0 3rem;
}
.article-hub-intro h2 {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.article-hub-intro p {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 1rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.article-hub-intro p:last-child { margin-bottom: 0; }

/* Jahres-Gruppe + Überschrift (royaler Akzent-Strich) */
.article-year-group { margin: 0 0 3rem; }
.article-year-group:last-of-type { margin-bottom: 0; }
.article-year-headline {
  position: relative;
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}
.article-year-headline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 52px;
  height: 2px;
  background: var(--royal);
}

/* Karten-Raster — fluid, mobil einspaltig (kein Overflow) */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Einzelne Fall-Karte (klickbar, an .area-card angelehnt) */
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med);
}
.article-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--skyblue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.article-card:hover {
  transform: translateY(-4px);
  border-color: var(--royal-light);
  box-shadow: var(--shadow-md);
}
.article-card:hover::before { transform: scaleX(1); }

/* Meta-Zeile: Gericht-Pill · Az. · Datum */
.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  margin-bottom: 0.9rem;
}
.article-card-gericht {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}
.article-card-az {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.article-card-datum {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Titel */
.article-card-title {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin: 0 0 0.7rem;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Teaser — drückt den Fuß nach unten (gleich hohe Karten) */
.article-card-teaser {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0 0 1.3rem;
  flex-grow: 1;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Fuß: Gebiet-Pill · Weiterlesen */
.article-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.article-card-gebiet {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--royal);
  background: var(--skyblue-soft);
  border: 1px solid var(--skyblue);
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  overflow-wrap: break-word;
}
.article-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--royal);
  white-space: nowrap;
}
.article-card-more svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: transform var(--t-fast);
}
.article-card:hover .article-card-more { color: var(--navy); }
.article-card:hover .article-card-more svg { transform: translateX(3px); }

/* Rubrik-Hinweis (Disclaimer) */
.article-hub-note {
  margin: 3rem 0 0;
  padding: 1.2rem 1.5rem;
  background: var(--skyblue-wash);
  border-left: 4px solid var(--royal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
  overflow-wrap: break-word;
  hyphens: auto;
}
.article-hub-note strong { color: var(--navy); font-weight: 600; }

/* ── Mobile ── */
@media (max-width: 680px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-hub-intro { margin-bottom: 2.2rem; }
  .article-year-group { margin-bottom: 2.2rem; }
  .article-card { padding: 1.3rem 1.3rem; }
}

/* ════════════════════════════════════════════════════════════════
   ERSTE HILFE — Notfall-Leitfaden (Batch 4, 03.06.2026)
   Stylt erste-hilfe/index.html: Grundregeln, Szenarien, Rechte, Foto.
   Nur Bestands-Tokens; Orange-Disziplin gewahrt (nur Navy/Royal —
   das einzige Orange bleibt die Notfall-Box am Seitenende).
   ════════════════════════════════════════════════════════════════ */

/* ── Inhalts-Figur (echtes Navy-WebP statt CSS-Box, §8) ── */
.content-figure { margin: 0; }
.content-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.content-figure figcaption { font-family: var(--font-sans); }

/* ── Grundregeln: 6 nummerierte Karten ── */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.rule-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem 1.5rem;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.rule-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--skyblue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.rule-card:hover {
  transform: translateY(-4px);
  border-color: var(--royal-light);
  box-shadow: var(--shadow-md);
}
.rule-card:hover::before { transform: scaleX(1); }
.rule-num {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--royal);
  margin-bottom: 0.9rem;
}
.rule-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}
.rule-badge-critical { background: var(--navy); color: var(--white); }
.rule-badge-important {
  background: var(--skyblue-soft);
  color: var(--royal);
  border: 1px solid var(--skyblue);
}
.rule-title {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 0.6rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.rule-card p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.rule-card p + p { margin-top: 0.8rem; }
.rule-card em { font-style: italic; color: var(--royal); }
.rule-card strong { font-weight: 600; color: var(--navy); }

/* ── Szenarien: Karte mit Icon-Kopf + nummerierten Schritten ── */
.scenario {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.7rem 1.8rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.scenario:last-child { margin-bottom: 0; }
.scenario-header {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon num" "icon title";
  column-gap: 1rem;
  align-items: center;
  padding-bottom: 1.3rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.scenario-icon {
  grid-area: icon;
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--skyblue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
}
.scenario-num {
  grid-area: num;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal);
}
.scenario-header h3 {
  grid-area: title;
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin: 0.1rem 0 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.scenario-steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
}
.scenario-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2.7rem;
  margin-bottom: 1.15rem;
}
.scenario-steps li:last-child { margin-bottom: 0; }
.scenario-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  width: 1.9rem; height: 1.9rem;
  border-radius: 50%;
  background: var(--skyblue-soft);
  color: var(--royal);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scenario-steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0.93rem; top: 1.9rem; bottom: -1.15rem;
  width: 2px;
  background: var(--border);
}
.step-action {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.step-detail {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-mid);
  overflow-wrap: break-word;
  hyphens: auto;
}
.scenario-steps em { font-style: italic; color: var(--royal); }

/* ── Ihre Rechte: 4 Karten mit Norm-Pille + Garantie ── */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.right-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--royal);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.right-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.right-para {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--royal);
  background: var(--skyblue-soft);
  border: 1px solid var(--skyblue);
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
}
.right-card h3 {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.6rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.right-card p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ── Mobile (Erste Hilfe) ── */
@media (max-width: 1100px) {
  .rules-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .rules-grid { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr; }
  .scenario { padding: 1.4rem 1.3rem; }
  .scenario-header { column-gap: 0.8rem; }
  .scenario-icon { width: 46px; height: 46px; font-size: 1.3rem; }
  .scenario-header h3 { font-size: 1.15rem; }
  .scenario-steps li { padding-left: 2.5rem; }
}

/* ════════════════════════════════════════════════════════════════
   INFORMATIONEN — Broschüren-Downloads (Batch 5, 03.06.2026)
   Stylt informationen/index.html: Intro, Broschüren-Karten (Navy-
   Cover links + Inhalt rechts), Themen-Pillen, Download-CTA, Hinweis.
   Nur Bestands-Tokens; Orange-Disziplin: Download-CTA = Royal.
   ════════════════════════════════════════════════════════════════ */

/* ── Royal-Akzent in Headlines (Geschwister von .italic) ── */
.royal-accent { font-style: italic; color: var(--royal); font-weight: 400; }

/* ── Intro-Block ── */
.info-intro { max-width: 720px; margin-bottom: 2.5rem; }
.info-intro p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0;
}

/* ── Broschüren-Karte: Navy-Cover (links) + Inhalt (rechts) ── */
.brochure-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.brochure-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Cover-Panel (dunkles Navy wie BVerfG-Block, helle Schrift) */
.brochure-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 2.4rem 1.6rem;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}
.brochure-preview::before {
  content: '';
  position: absolute;
  top: -30%; left: -20%;
  width: 90%; height: 90%;
  background: radial-gradient(circle, rgba(188,218,242,0.12), transparent 70%);
  pointer-events: none;
}
.brochure-preview-icon {
  width: 56px; height: 56px;
  fill: var(--skyblue);
  margin-bottom: 0.4rem;
  position: relative;
}
.brochure-preview-label {
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--skyblue);
}
.brochure-preview-title {
  position: relative;
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  overflow-wrap: break-word;
  hyphens: auto;
}
.brochure-preview-pages {
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* Inhalt rechts */
.brochure-content { padding: 2rem 2.2rem; }
.brochure-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--royal);
  background: var(--skyblue-soft);
  border: 1px solid var(--skyblue);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
}
.brochure-title {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.25rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.brochure-subtitle {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--royal);
  margin-bottom: 1.1rem;
}
.brochure-desc {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 1.3rem;
}
.brochure-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.brochure-topic {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--skyblue-wash);
  border: 1px solid var(--border);
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-sm);
  overflow-wrap: break-word;
}
.brochure-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.btn-download {                       /* Royal-Pill (Orange-Disziplin §3) */
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 600;
  background: var(--royal);
  color: var(--white);
  border: 2px solid transparent;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(46,99,169,0.28);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-download:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14,45,110,0.35);
}
.btn-download svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.brochure-meta {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ── Hinweis-Box (summary-box-Muster mit Titel) ── */
.info-note {
  background: var(--skyblue-wash);
  border-left: 4px solid var(--royal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.3rem 1.5rem;
  margin-top: 2.5rem;
}
.info-note-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.info-note p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

/* ── Mobile (Informationen) ── */
@media (max-width: 760px) {
  .brochure-card { grid-template-columns: 1fr; }
  .brochure-preview { padding: 1.9rem 1.4rem; }
  .brochure-preview-icon { width: 46px; height: 46px; }
  .brochure-preview-title { font-size: 1.3rem; }
  .brochure-content { padding: 1.6rem 1.4rem; }
  .brochure-title { font-size: 1.5rem; }
  .brochure-subtitle { font-size: 1.05rem; }
  .brochure-actions { gap: 0.75rem; }
  .btn-download { width: 100%; justify-content: center; }
  .brochure-meta { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   BATCH 6 — kanzlei-kiel (Über mich) + mandat-kiel (Honorar)
   03.06.2026. Stylt die zuvor undefinierten Inhalts-Komponenten:
   .digital-grid/-card/-icon, .contact-channels/.channel-item,
   .honorar-box/-grid/-item (+ .label/.value/.desc, scoped),
   Mobile-Stacking der 3fr/2fr-Split-Layouts (.kanzlei-split,
   .kanzlei-atmos-grid). Nur Bestands-Tokens; Orange-Disziplin (§3)
   gewahrt — alle Akzente Navy/Royal/Skyblue. Foto-Platzhalter via
   .content-figure (Batch 4) auf echte Navy-WebP umgestellt (§8).
   ════════════════════════════════════════════════════════════════ */

/* ── Digitale Kanzlei: Feature-Karten ── */
.digital-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.digital-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.4rem;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.digital-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--royal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.digital-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--royal-light);
}
.digital-card:hover::before { transform: scaleX(1); }
.digital-card h3 {
  color: var(--navy);
  margin: 0 0 0.5rem;
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.digital-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}
.digital-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--skyblue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.digital-icon svg { width: 26px; height: 26px; fill: var(--royal); }

/* ── Erreichbarkeit: Kontakt-Kanäle ── */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.channel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  background: var(--skyblue-wash);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 0.9rem;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.channel-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--royal-light);
}
.channel-item svg {
  width: 24px;
  height: 24px;
  fill: var(--royal);
  background: var(--skyblue-soft);
  border-radius: 50%;
  padding: 11px;
  box-sizing: content-box;
}
.channel-item span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ── Honorargestaltung: Preis-/Konditionen-Raster ── */
.honorar-box {
  background: var(--skyblue-wash);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-top: 1.75rem;
}
.honorar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem 3rem;
}
.honorar-item { min-width: 0; }
.honorar-item:nth-child(even) { border-left: 1px solid var(--border); padding-left: 3rem; }
.honorar-item:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 1.8rem; }
.honorar-item .label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--royal);
  margin-bottom: 0.45rem;
}
.honorar-item .value {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72, "SOFT" 0, "WONK" 0;
  font-size: clamp(1.6rem, 2.2vw, 1.95rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 0.7rem;
}
.honorar-item .desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-mid);
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ── Mobile-Stacking & Kompaktierung (Mobil-Grundregeln §7) ── */
@media (max-width: 900px) {
  /* 3fr/2fr-Inline-Layouts auf eine Spalte (inline -> !important nötig) */
  .kanzlei-split,
  .kanzlei-atmos-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .contact-channels { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .digital-grid { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .honorar-box { padding: 1.6rem; }
  .honorar-grid { grid-template-columns: 1fr; gap: 0; }
  .honorar-item:nth-child(even) { border-left: none; padding-left: 0; }
  .honorar-item:nth-child(n+3) { border-top: none; padding-top: 0; }
  .honorar-item:nth-child(n+2) { border-top: 1px solid var(--border); padding-top: 1.4rem; margin-top: 1.4rem; }
}


/* Session 4: sticky sidebar site-wide + hero-trust spacing */
@media (min-width:1025px){ .content-with-sidebar > aside{ position:sticky; top:132px; align-self:start; } }
.page-intro + .hero-trust{ margin-top:1.6rem; }
