﻿/* ================================================================
   KANZLEI KAGAN — Prototype Stylesheet
   Palette: Hanseatic Ink — tiefes Nachtblau + Pergament + Messing
   Fonts: Newsreader (Display) · IBM Plex Sans (Body)
   ================================================================ */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* === Direction B — International Cool ================================ */

  /* Ink */
  --ink-900: #091428;
  --ink-700: #1A2C4A;
  --ink-500: #475569;
  --ink-400: #94A3B8;
  --ink-line:      rgba(9, 20, 40, 0.10);
  --ink-line-soft: rgba(9, 20, 40, 0.06);

  /* Legacy ink aliases */
  --ink-950: #091428;
  --ink-800: #1A2C4A;
  --ink-600: #475569;
  --ink-300: #94A3B8;

  /* Surface — Cream nicht mehr als Haupthintergrund */
  --paper:       #FAF8F3;   /* sparsamer Pull-Quote-Akzent */
  --paper-dark:  #F8FAFC;   /* alias → surface-alt */
  --cream:       #FFFFFF;   /* legacy alias */
  --surface:     #FFFFFF;   /* primäre Section-Fläche */
  --surface-alt: #F8FAFC;   /* dezente Wechselfläche */

  /* Akzent (sparsam) */
  --brass:      #B8884F;
  --brass-deep: #8E6831;

  /* Auf dunklem Grund */
  --on-dark:             rgba(255, 255, 255, 0.92);
  --on-dark-mute:        rgba(255, 255, 255, 0.62);
  --on-dark-muted:       rgba(255, 255, 255, 0.62); /* legacy alias */
  --on-dark-line:        rgba(255, 255, 255, 0.14);
  --on-dark-line-strong: rgba(255, 255, 255, 0.26);

  /* Borders (direkte Variablen für Backward-Compat) */
  --border:       rgba(9, 20, 40, 0.10);
  --border-light: rgba(9, 20, 40, 0.06);

  /* Shadows */
  --shadow-card:   0 1px 2px rgba(9,20,40,.04), 0 4px 16px rgba(9,20,40,.06);
  --shadow-hover:  0 4px 12px rgba(9,20,40,.10), 0 8px 32px rgba(9,20,40,.07);
  --shadow-header: 0 1px 0 rgba(9, 20, 40, 0.10);

  /* Typography */
  --serif:        'Newsreader', 'Times New Roman', serif;
  --sans:         'IBM Plex Sans', system-ui, sans-serif;
  --mono:         'IBM Plex Mono', ui-monospace, monospace;
  --font-display: 'Newsreader', 'EB Garamond', Georgia, serif;
  --font-body:    'IBM Plex Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'Cascadia Code', monospace;

  /* Spacing scale */
  --sp-xs:  0.375rem;
  --sp-sm:  0.75rem;
  --sp-md:  1.25rem;
  --sp-lg:  2rem;
  --sp-xl:  3.5rem;
  --sp-2xl: 5.5rem;
  --sp-3xl: 8rem;

  /* Layout */
  --max-w:     1280px;
  --gutter:    clamp(1.125rem, 4vw, 3.5rem);
  --radius-sm: 2px;
  --radius-md: 4px;

  /* Transitions */
  --ease:     cubic-bezier(.4, 0, .2, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;

  /* Backward-compat aliases (legacy --c-* names) */
  --c-brand:          var(--ink-900);
  --c-brand-mid:      var(--ink-700);
  --c-brand-light:    var(--brass);
  --c-bg:             var(--surface);
  --c-surface:        var(--surface-alt);
  --c-surface-dark:   var(--ink-900);
  --c-white:          var(--surface);
  --c-text:           var(--ink-900);
  --c-text-muted:     var(--ink-500);
  --c-text-light:     var(--ink-400);
  --c-text-inv:       var(--on-dark);
  --c-text-inv-muted: var(--on-dark-mute);
  --c-border:         var(--border);
  --c-border-light:   var(--border-light);
}


/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-text);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}


/* ----------------------------------------------------------------
   3. TYPOGRAPHY — display headings
   ---------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem);    font-weight: 400; letter-spacing: -0.022em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem);    font-weight: 500; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 500; }

p {
  line-height: 1.75;
  color: var(--c-text-muted);
}

strong { font-weight: 600; color: var(--c-text); }

/* ── Type-scale utility classes ─────────────────────────────────── */
.headline-hero {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);   /* 40 → 76px */
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}

.headline-display {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);   /* 36 → 56px */
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.headline-section {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.2vw, 2.625rem); /* 30 → 42px */
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}

.title-card {
  font-family: var(--font-display);
  font-size: 1.5rem;   /* 24px */
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

.body-lead {
  font-family: var(--font-body);
  font-size: 1.0625rem;   /* 17px */
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-600);
}

.body {
  font-family: var(--font-body);
  font-size: 0.9375rem;   /* 15px */
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-600);
}

/* Dark-context overrides */
.on-dark .headline-hero,
.on-dark .headline-display,
.on-dark .headline-section,
.on-dark .title-card { color: var(--on-dark); }

.on-dark .body-lead,
.on-dark .body        { color: var(--on-dark-muted); }


/* ----------------------------------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand-light);
  margin-bottom: var(--sp-sm);
}

.section-label--light {
  color: var(--c-brand-light);
}

.section-label--center {
  display: block;
  text-align: center;
}

.section-heading {
  max-width: 680px;
}

.section-header {
  margin-bottom: var(--sp-xl);
}

.section-intro-text {
  margin-top: var(--sp-sm);
  max-width: 580px;
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-brand);
  border-bottom: 1px solid var(--c-brand-light);
  padding-bottom: 1px;
  opacity: 1;
  transition: opacity var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.text-link:hover,
.text-link:focus-visible {
  opacity: 0.7;
  border-color: var(--c-brand);
  outline: none;
}

.text-link:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
}


/* ----------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.625rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: opacity var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.98);
}

/* Primary — dark brand fill */
.btn-primary {
  background-color: var(--c-brand);
  color: var(--c-white);
  border: 1px solid var(--c-brand);
}

.btn-primary:hover {
  opacity: 0.85;
}

/* Ghost — outlined, transparent fill */
.btn-ghost {
  background-color: transparent;
  color: var(--c-brand);
  border: 1px solid var(--c-brand);
}

.btn-ghost:hover {
  background-color: var(--c-brand);
  color: var(--c-white);
  opacity: 1;
}

/* Light — for dark backgrounds */
.btn-light {
  background-color: var(--c-text-inv);
  color: var(--c-brand);
  border: 1px solid var(--c-text-inv);
}

.btn-light:hover {
  opacity: 0.88;
}

/* Ghost-light — for dark backgrounds */
.btn-ghost-light {
  background-color: transparent;
  color: var(--c-text-inv);
  border: 1px solid rgba(243,241,236,.35);
}

.btn-ghost-light:hover {
  border-color: var(--c-text-inv);
  opacity: 0.85;
}

/* Size modifier */
.btn-lg {
  min-height: 54px;
  padding: 0 2rem;
  font-size: 0.925rem;
}


/* ----------------------------------------------------------------
   6. SITE HEADER
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--c-white);
  box-shadow: var(--shadow-header);
  transition: box-shadow var(--dur-base) var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--c-border),
              0 4px 24px rgba(58,37,32,.06);
}

@media (min-width: 769px) {
  .site-header.is-scrolled .header-inner {
    height: 56px;
  }
  .site-header.is-scrolled .header-wordmark__sub {
    opacity: 0;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  height: 72px;
  transition: height var(--dur-base) var(--ease);
}

/* Brand / Logo */
.header-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.header-subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  white-space: nowrap;
}

/* Text wordmark — Variante A (replaces image logo) */
.header-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  text-decoration: none;
}

.header-wordmark__name {
  font-family: var(--font-display);
  font-size: 2.125rem;      /* 34px */
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  color: var(--ink-900);
  text-transform: uppercase;
}

.header-wordmark__sub {
  font-family: var(--font-mono);
  font-size: 0.625rem;      /* 10px */
  font-weight: 400;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--ink-400);
  line-height: 1;
  padding-left: 0.44em;     /* optische Ausrichtung zur Wortmarke */
  transition: opacity var(--dur-fast) var(--ease);
}

/* Main navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease),
              opacity var(--dur-fast) var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--c-brand);
  outline: none;
}

.nav-link:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 2px;
}

/* Header right: lang switcher + CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.lang-sep {
  font-size: 0.7rem;
  color: var(--c-border);
}

.lang-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-text-light);
  padding: 0.25rem 0.35rem;
  border-radius: 2px;
  transition: color var(--dur-fast) var(--ease),
              opacity var(--dur-fast) var(--ease);
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--c-brand);
  outline: none;
}

.lang-btn.is-active {
  color: var(--c-brand);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 2px;
}

/* ── Compact language switcher ──────────────────────────────────────────────── */
.lang-switcher--compact {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-text-light);
  padding: 0.25rem 0.35rem;
  border-radius: 2px;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
}

.lang-current:hover,
.lang-current:focus-visible {
  color: var(--c-brand);
  outline: none;
}

.lang-current:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 2px;
}

.lang-chevron {
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--dur-fast) var(--ease);
}

.lang-current[aria-expanded="true"] .lang-chevron {
  transform: rotate(-135deg) translateY(1px);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 130px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  z-index: 300;
  padding: 0.3rem 0;
}

.lang-current[aria-expanded="true"] + .lang-dropdown {
  display: block;
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--c-text);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}

.lang-option:hover,
.lang-option:focus-visible {
  background: var(--c-surface);
  color: var(--c-brand);
  outline: none;
}

.lang-option.is-active {
  color: var(--c-brand);
  font-weight: 600;
}

/* In mobile nav footer the dropdown opens upward */
.mobile-nav-footer .lang-switcher--compact .lang-dropdown {
  top: auto;
  bottom: calc(100% + 6px);
  right: 0;
}

/* Burger button — hidden on desktop */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0.25rem;
  flex-shrink: 0;
}

.burger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--c-brand);
  border-radius: 1px;
  transition: opacity var(--dur-fast) var(--ease),
              transform var(--dur-base) var(--ease);
}

/* Burger active state */
.burger-btn.is-open .burger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger-btn.is-open .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-btn.is-open .burger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.burger-btn:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* ----------------------------------------------------------------
   7. HERO
   ---------------------------------------------------------------- */
.hero {
  padding-block: var(--sp-3xl) var(--sp-2xl);
  background-color: var(--c-bg);
  border-bottom: 1px solid var(--c-border-light);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: var(--sp-xl);
}

.hero-text {
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-brand-mid);
  margin-bottom: var(--sp-md);
  line-height: 1;
}

.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-lg);
}

.hero-subheadline {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-lg);
  max-width: 600px;
}

.hero-trust {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--c-text-light);
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-xl);
  line-height: 1;
}

.trust-dot {
  margin-inline: 0.4em;
  color: var(--c-border);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

/* Hero stat cards */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  min-width: 160px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--sp-md) var(--sp-md);
  background-color: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--c-brand);
  letter-spacing: -0.01em;
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-text-light);
}


/* ----------------------------------------------------------------
   8. INTRO / KANZLEI POSITIONING
   ---------------------------------------------------------------- */
.section-intro {
  padding-block: var(--sp-2xl);
  background-color: var(--c-white);
}

.intro-inner {
  max-width: 900px;
}

.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  margin-top: var(--sp-lg);
}

.intro-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--c-text);
  font-weight: 400;
}

.intro-body {
  font-size: 0.975rem;
  line-height: 1.78;
  margin-bottom: var(--sp-md);
}

.intro-body-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}


/* ----------------------------------------------------------------
   9. SERVICES / PRACTICE AREAS
   ---------------------------------------------------------------- */
.section-services {
  padding-block: var(--sp-2xl);
  background-color: var(--c-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  background-color: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-lg) var(--sp-lg) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* Top accent line */
.service-card-accent {
  position: absolute;
  top: 0;
  left: var(--sp-lg);
  width: 28px;
  height: 2px;
  background-color: var(--c-brand-light);
  border-radius: 0 0 2px 2px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--c-text);
  padding-top: var(--sp-xs);
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.68;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-brand);
  letter-spacing: 0.01em;
  margin-top: auto;
  opacity: 1;
  transition: opacity var(--dur-fast) var(--ease);
}

.service-link:hover,
.service-link:focus-visible {
  opacity: 0.65;
  outline: none;
}

.service-link:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ----------------------------------------------------------------
   10. TARGET CLIENTS / ZIELGRUPPEN
   ---------------------------------------------------------------- */
.section-clients {
  padding-block: var(--sp-2xl);
  background-color: var(--c-white);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--c-border);
  margin-bottom: var(--sp-xl);
}

.client-item {
  padding: var(--sp-lg) var(--sp-lg) var(--sp-lg) 0;
  border-bottom: 1px solid var(--c-border);
}

.clients-grid .client-item:not(:last-child) {
  border-right: 1px solid var(--c-border);
  padding-right: var(--sp-lg);
}

.client-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-xs);
}

.client-desc {
  font-size: 0.875rem;
  line-height: 1.65;
}

.clients-lang-note {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-brand-mid);
  letter-spacing: 0.02em;
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--c-border-light);
  display: inline-block;
}


/* ----------------------------------------------------------------
   11. BUSINESS IMMIGRATION HIGHLIGHT (dark section)
   ---------------------------------------------------------------- */
.section-highlight {
  padding-block: var(--sp-2xl) var(--sp-2xl);
  background-color: var(--c-surface-dark);
  color: var(--c-text-inv);
}

.highlight-inner {
  max-width: 780px;
}

.highlight-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--c-text-inv);
  margin-bottom: var(--sp-lg);
  line-height: 1.2;
}

.highlight-body {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--c-text-inv-muted);
  margin-bottom: var(--sp-lg);
  max-width: 640px;
}

.highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-xl);
}

.highlight-tag {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--c-text-inv);
  border: 1px solid rgba(243,241,236,.22);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}


/* ----------------------------------------------------------------
   12. MULTILINGUAL LEGAL ADVICE
   ---------------------------------------------------------------- */
.section-languages {
  padding-block: var(--sp-2xl);
  background-color: var(--c-surface);
  border-top: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
}

.languages-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-xl);
}

.languages-text .section-heading {
  max-width: 480px;
}

.languages-body {
  font-size: 0.975rem;
  line-height: 1.75;
  max-width: 500px;
  margin-top: var(--sp-sm);
}

/* Language badges */
.lang-badges {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.lang-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--sp-md) 1.75rem;
  background-color: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  min-width: 110px;
  text-align: center;
}

.lang-badge-code {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-brand);
  line-height: 1;
}

.lang-badge-name {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-light);
}


/* ----------------------------------------------------------------
   13. CONSULTATION PROCESS / ABLAUF
   ---------------------------------------------------------------- */
.section-process {
  padding-block: var(--sp-2xl);
  background-color: var(--c-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 2px solid var(--c-border-light);
  counter-reset: steps;
}

.process-step {
  padding: var(--sp-lg) var(--sp-md) var(--sp-md) 0;
  border-right: 1px solid var(--c-border-light);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.process-step:last-child {
  border-right: none;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-brand-light);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: 2px;
}

.step-desc {
  font-size: 0.875rem;
  line-height: 1.65;
}


/* ----------------------------------------------------------------
   14. GUIDES / KNOWLEDGE PREVIEW
   ---------------------------------------------------------------- */
.section-guides {
  padding-block: var(--sp-2xl);
  background-color: var(--c-surface);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.25rem;
}

.guide-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.guide-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.guide-topic {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--c-brand-mid);
  margin-bottom: var(--sp-xs);
}

.guide-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.3;
}

.guide-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
  margin-top: var(--sp-xs);
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-brand);
  margin-top: var(--sp-md);
  transition: opacity var(--dur-fast) var(--ease);
}

.guide-link:hover,
.guide-link:focus-visible {
  opacity: 0.65;
  outline: none;
}

.guide-link:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ----------------------------------------------------------------
   15. CONTACT CTA
   ---------------------------------------------------------------- */
.section-cta {
  padding-block: var(--sp-3xl) var(--sp-2xl);
  background-color: var(--c-white);
  text-align: center;
}

.cta-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.cta-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--c-text);
  margin-bottom: var(--sp-md);
  margin-top: var(--sp-xs);
}

.cta-body {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--sp-xl);
  max-width: 480px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}

.cta-notice {
  font-size: 0.78rem;
  color: var(--c-text-light);
  line-height: 1.6;
  max-width: 440px;
  margin-inline: auto;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--c-border-light);
}


/* ----------------------------------------------------------------
   16. SITE FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background-color: var(--c-surface-dark);
  color: var(--c-text-inv);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-block: var(--sp-2xl);
  border-bottom: 1px solid rgba(243,241,236,.1);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer-logo-link {
  display: inline-block;
  opacity: 0.9;
  transition: opacity var(--dur-fast) var(--ease);
}

.footer-logo-link:hover,
.footer-logo-link:focus-visible {
  opacity: 0.7;
  outline: none;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--c-text-inv-muted);
  line-height: 1.55;
  max-width: 220px;
  margin-top: var(--sp-xs);
}

.footer-location {
  font-size: 0.75rem;
  color: var(--c-text-inv-muted);
  opacity: 0.6;
}

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-brand-light);
  margin-bottom: var(--sp-md);
}

.footer-col-heading--mt {
  margin-top: var(--sp-lg);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--c-text-inv-muted);
  line-height: 1.4;
  transition: color var(--dur-fast) var(--ease),
              opacity var(--dur-fast) var(--ease);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--c-text-inv);
  outline: none;
}

.footer-link:focus-visible {
  outline: 1px solid var(--c-text-inv);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer-lang-item {
  font-size: 0.875rem;
  color: var(--c-text-inv-muted);
}

/* Footer bottom bar */
.footer-bottom {
  padding-block: var(--sp-lg);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-sm);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--c-text-inv-muted);
  opacity: 0.65;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--c-text-inv-muted);
  opacity: 0.45;
  max-width: 480px;
}


/* ================================================================
   17. RESPONSIVE — MOBILE FIRST
   ================================================================ */

/* ---- Tablet: ≤ 1024px ---- */
@media (max-width: 1024px) {
  :root {
    --sp-3xl: 5.5rem;
    --sp-2xl: 4rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:nth-child(3) {
    border-right: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: row;
    min-width: unset;
  }

  .hero-stat {
    flex: 1;
  }
}

/* ---- Phablet: ≤ 768px ---- */
@media (max-width: 768px) {
  :root {
    --sp-2xl: 3rem;
    --gutter: 1.25rem;
  }

  /* Header mobile */
  .header-inner {
    height: 60px;
    gap: 0;
    justify-content: space-between;
  }

  .header-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    padding: var(--sp-md) var(--gutter) var(--sp-lg);
    box-shadow: 0 8px 32px rgba(58,37,32,.10);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 95;
  }

  .header-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-link {
    padding: 0.7rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--c-border-light);
    width: 100%;
    border-radius: 0;
  }

  .header-actions {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  /* Hero mobile */
  .hero {
    padding-block: var(--sp-2xl) var(--sp-xl);
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hero-stat {
    flex: 1;
    min-width: 120px;
    padding: var(--sp-sm);
  }

  /* Intro */
  .intro-columns {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Clients */
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-item {
    padding: var(--sp-md) 0;
    border-right: none !important;
    padding-right: 0 !important;
  }

  /* Languages */
  .languages-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .lang-badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .lang-badge {
    flex: 1;
    min-width: 80px;
    padding: var(--sp-sm) var(--sp-sm);
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .process-step {
    border-right: none;
    border-top: 1px solid var(--c-border-light);
    padding: var(--sp-md) 0;
  }

  /* Guides */
  .guides-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-xs);
  }
}

/* ---- Mobile: ≤ 480px ---- */
@media (max-width: 480px) {
  :root {
    --sp-2xl: 2.5rem;
    --gutter: 1rem;
  }

  .hero-actions,
  .highlight-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------------------------------
   18. FOCUS STYLES (high-contrast accessible)
   ---------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
}


/* ----------------------------------------------------------------
   19. REDUCED MOTION
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}


/* ================================================================
   EXTENSIONS — SEO / Multi-Page / FAQ / Form / Photos
   ================================================================ */

/* ----------------------------------------------------------------
   20. ACTIVE NAV STATE
   ---------------------------------------------------------------- */
.nav-link.is-active {
  color: var(--c-brand);
  font-weight: 500;
}

/* Mobile nav: show lang switcher + CTA inside open menu */
@media (max-width: 768px) {
  .header-nav.is-open .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    margin-top: var(--sp-md);
    padding-top: var(--sp-md);
    border-top: 1px solid var(--c-border-light);
  }

  .mobile-nav-footer .lang-switcher {
    justify-content: flex-start;
  }

  .mobile-nav-footer .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}

.mobile-nav-footer {
  display: none;
}


/* ----------------------------------------------------------------
   21. BREADCRUMB
   ---------------------------------------------------------------- */
.breadcrumb-nav {
  padding-block: var(--sp-sm);
  border-bottom: 1px solid var(--c-border-light);
  background-color: var(--c-white);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--c-text-light);
}

.breadcrumb-item a {
  color: var(--c-text-light);
  transition: color var(--dur-fast) var(--ease);
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus-visible {
  color: var(--c-brand);
  outline: none;
}

.breadcrumb-item a:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 2px;
  border-radius: 2px;
}

.breadcrumb-sep {
  color: var(--c-border);
  font-size: 0.7rem;
  line-height: 1;
}

.breadcrumb-item.is-current {
  color: var(--c-text-muted);
  font-weight: 500;
}


/* ----------------------------------------------------------------
   22. PAGE HERO (subpages — smaller than main hero)
   ---------------------------------------------------------------- */
.page-hero {
  padding-block: var(--sp-xl) var(--sp-lg);
  background-color: var(--c-bg);
  border-bottom: 1px solid var(--c-border-light);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-xl);
}

.page-hero-text {
  max-width: 680px;
}

.page-h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--c-text);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.page-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-text-muted);
  max-width: 600px;
}

/* Variant with background image strip (used on kanzlei.html) */
.page-hero--with-image {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 18, 14, 0.82) 0%,
    rgba(26, 18, 14, 0.55) 55%,
    rgba(26, 18, 14, 0.2) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-2xl);
  max-width: 580px;
}

.page-hero--with-image .page-h1 {
  color: var(--c-text-inv);
}

.page-hero--with-image .page-intro {
  color: rgba(243, 241, 236, 0.82);
}

.page-hero--with-image .section-label {
  color: var(--c-brand-light);
}

@media (max-width: 768px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero--with-image {
    min-height: 260px;
  }
}


/* ----------------------------------------------------------------
   23. PHOTO SPLIT LAYOUT (intro sections with portrait)
   ---------------------------------------------------------------- */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.photo-split--reverse {
  grid-template-columns: 1fr 1fr;
}

.photo-split--reverse .photo-col {
  order: -1;
}

.photo-col {
  position: relative;
}

.photo-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  display: block;
}

.photo-wide {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  display: block;
}

.photo-square {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  display: block;
}

@media (max-width: 768px) {
  .photo-split,
  .photo-split--reverse {
    grid-template-columns: 1fr;
  }

  .photo-split--reverse .photo-col {
    order: 0;
  }
}


/* ----------------------------------------------------------------
   24. HERO PHOTO VARIANT (index.html)
   ---------------------------------------------------------------- */
.hero-photo-col {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  align-self: stretch;
  min-height: 420px;
}

.hero-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-inner--with-photo {
  grid-template-columns: 55% 1fr;
}

@media (max-width: 1024px) {
  .hero-inner--with-photo {
    grid-template-columns: 1fr;
  }

  .hero-photo-col {
    min-height: 300px;
    aspect-ratio: 16/9;
    align-self: auto;
  }
}

@media (max-width: 768px) {
  .hero-photo-col {
    min-height: 220px;
  }
}


/* ----------------------------------------------------------------
   25. AUTHOR / TRUST BOX
   ---------------------------------------------------------------- */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background-color: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-left: 3px solid var(--c-brand-light);
  border-radius: var(--radius-md);
  margin-block: var(--sp-xl);
}

.author-box-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.author-box-text {
  flex: 1;
}

.author-box-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  display: block;
  margin-bottom: 3px;
}

.author-box-role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-brand-mid);
  display: block;
  margin-bottom: var(--sp-xs);
}

.author-box-note {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--c-text-muted);
}

.page-meta {
  font-size: 0.75rem;
  color: var(--c-text-light);
  margin-top: var(--sp-xs);
}


/* ----------------------------------------------------------------
   26. FAQ ACCORDION
   ---------------------------------------------------------------- */
.faq-section {
  padding-block: var(--sp-2xl);
  background-color: var(--c-white);
}

.faq-section--surface {
  background-color: var(--c-surface);
}

.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-border);
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-md);
  width: 100%;
  padding: var(--sp-md) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-text);
  background: none;
  border: none;
  cursor: pointer;
  min-height: 44px;
  transition: color var(--dur-fast) var(--ease);
}

.faq-question:hover,
.faq-question:focus-visible {
  color: var(--c-brand);
  outline: none;
}

.faq-question:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--c-brand-mid);
  transition: transform var(--dur-base) var(--ease),
              background-color var(--dur-fast) var(--ease);
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--c-brand);
  border-color: var(--c-brand);
  color: var(--c-white);
}

.faq-answer {
  display: none;
  padding-bottom: var(--sp-md);
  padding-right: var(--sp-lg);
}

.faq-answer.is-open {
  display: block;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.72;
}

.faq-answer ul {
  list-style: disc;
  padding-left: var(--sp-lg);
  margin-top: var(--sp-xs);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq-answer li {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.faq-more-link {
  display: inline-block;
  margin-top: var(--sp-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-brand);
  border-bottom: 1px solid var(--c-brand-light);
  padding-bottom: 1px;
  transition: opacity var(--dur-fast) var(--ease);
}

.faq-more-link:hover,
.faq-more-link:focus-visible {
  opacity: 0.7;
  outline: none;
}


/* ----------------------------------------------------------------
   27. CONTACT FORM / INTAKE FORM
   ---------------------------------------------------------------- */
.form-page {
  padding-block: var(--sp-2xl);
  background-color: var(--c-bg);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-xl);
  align-items: start;
}

.form-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-card);
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--c-border-light);
}

.form-section-divider {
  height: 1px;
  background-color: var(--c-border-light);
  margin-block: var(--sp-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-md);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-text);
}

.form-label .optional {
  font-weight: 400;
  color: var(--c-text-light);
  margin-left: 0.3em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--c-text);
  background-color: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  min-height: 44px;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--c-brand-mid);
  box-shadow: 0 0 0 3px rgba(122, 84, 66, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-text-light);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5F57' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.form-radio-item,
.form-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 44px;
  transition: border-color var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.form-radio-item:hover,
.form-checkbox-item:hover {
  border-color: var(--c-brand-mid);
  background-color: var(--c-surface);
}

.form-radio-item input[type="radio"],
.form-checkbox-item input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--c-brand);
}

.form-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-checkbox-item {
  align-items: flex-start;
}

.form-upload-placeholder {
  padding: var(--sp-md);
  border: 2px dashed var(--c-border);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--c-text-light);
  font-size: 0.875rem;
  line-height: 1.5;
  background-color: var(--c-surface);
}

.form-submit-row {
  margin-top: var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.form-submit-note {
  font-size: 0.78rem;
  color: var(--c-text-light);
  max-width: 320px;
  line-height: 1.5;
}

/* Form sidebar */
.form-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  position: sticky;
  top: 88px;
}

.form-trust-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-card);
}

.form-trust-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--c-border-light);
}

.form-trust-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.form-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.form-trust-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: var(--c-brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.form-sidebar-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.form-sidebar-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Kontakt Visitenkarte */
.kontakt-vcard {
  background: var(--ink-900);
  color: var(--on-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: var(--sp-md);
}

.kontakt-vcard__firm-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  padding: var(--sp-md) var(--sp-md) 0;
}

.kontakt-vcard__info-block {
  padding: var(--sp-xs) var(--sp-md) var(--sp-md);
}

.kontakt-vcard__firm {
  font-size: 1rem;
  font-weight: 500;
  color: var(--on-dark);
  margin-bottom: 0.125rem;
  margin-top: var(--sp-xs);
}

.kontakt-vcard__person {
  font-size: 0.825rem;
  color: var(--on-dark-muted);
  margin-bottom: var(--sp-sm);
}

.kontakt-vcard__row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-block: var(--sp-xs);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.kontakt-vcard__row-key {
  font-family: var(--font-mono);
  font-size: 0.575rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

.kontakt-vcard__row-val {
  font-size: 0.85rem;
  color: var(--on-dark);
  text-decoration: none;
  line-height: 1.5;
}

a.kontakt-vcard__row-val:hover {
  color: var(--brass);
}

.kontakt-vcard__more {
  display: block;
  padding: var(--sp-sm) var(--sp-md);
  background: rgba(255,255,255,0.05);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--brass);
  text-decoration: none;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s;
}

.kontakt-vcard__more:hover {
  background: rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .form-card {
    padding: var(--sp-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-radio-grid {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit-row .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}


/* ----------------------------------------------------------------
   28. RELATED LINKS / CLUSTER NAVIGATION
   ---------------------------------------------------------------- */
.section-related {
  padding-block: var(--sp-xl) var(--sp-2xl);
  background-color: var(--c-surface);
  border-top: 1px solid var(--c-border-light);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: var(--sp-lg);
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  padding: var(--sp-md) var(--sp-lg);
  background-color: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.related-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.related-card:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
}

.related-card-topic {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-brand-mid);
}

.related-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.3;
}

.related-card-arrow {
  font-size: 0.82rem;
  color: var(--c-brand);
  margin-top: auto;
  padding-top: var(--sp-xs);
}


/* ----------------------------------------------------------------
   29. ATTORNEY PROFILE PAGE
   ---------------------------------------------------------------- */
.attorney-profile {
  padding-block: var(--sp-2xl);
  background-color: var(--c-white);
}

.attorney-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.attorney-photo-col {
  position: sticky;
  top: 88px;
}

.attorney-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  display: block;
  margin-bottom: var(--sp-md);
}

.attorney-facts {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.attorney-fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--c-border-light);
}

.attorney-fact:last-child {
  border-bottom: none;
}

.attorney-fact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-brand-mid);
}

.attorney-fact-value {
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.5;
}

.attorney-content h2 {
  margin-bottom: var(--sp-md);
  margin-top: var(--sp-xl);
}

.attorney-content h2:first-child {
  margin-top: 0;
}

.attorney-content p {
  margin-bottom: var(--sp-md);
  font-size: 0.975rem;
}

@media (max-width: 1024px) {
  .attorney-grid {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 768px) {
  .attorney-grid {
    grid-template-columns: 1fr;
  }

  .attorney-photo-col {
    position: static;
  }

  .attorney-photo {
    aspect-ratio: 3/2;
    object-position: center 20%;
  }
}


/* ----------------------------------------------------------------
   30. REFERENCES / REVIEWS PAGE
   ---------------------------------------------------------------- */
.reviews-intro {
  padding-block: var(--sp-2xl);
  background-color: var(--c-white);
  max-width: 760px;
}

.review-platform-section {
  padding-block: var(--sp-xl) var(--sp-2xl);
  background-color: var(--c-surface);
  border-top: 1px solid var(--c-border-light);
}

.review-placeholder {
  padding: var(--sp-lg);
  border: 2px dashed var(--c-border);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--c-text-light);
  font-size: 0.9rem;
  background-color: var(--c-white);
  line-height: 1.6;
}

.review-notice {
  font-size: 0.82rem;
  color: var(--c-text-light);
  font-style: italic;
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-top: var(--sp-md);
  line-height: 1.6;
}

.review-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: var(--sp-lg);
}

.review-platform-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-card);
}

.review-platform-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-xs);
}

.review-platform-note {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}


/* ----------------------------------------------------------------
   31. WISSEN / KNOWLEDGE PAGE ENHANCEMENTS
   ---------------------------------------------------------------- */
.knowledge-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--sp-xl);
}

.filter-btn {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  background-color: var(--c-white);
  cursor: pointer;
  min-height: 36px;
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
}

.filter-btn:hover,
.filter-btn.is-active {
  color: var(--c-brand);
  border-color: var(--c-brand);
  background-color: var(--c-surface);
}

.filter-btn:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 2px;
}


/* ----------------------------------------------------------------
   32. ADDITIONAL MOBILE TOUCH TARGETS & SPACING
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Minimum 44px touch target on all interactive elements */
  .btn,
  .nav-link,
  .lang-btn,
  .faq-question,
  .filter-btn,
  .service-link,
  .guide-link {
    min-height: 44px;
  }

  /* Reduce large section padding on mobile */
  .section-intro,
  .section-services,
  .section-clients,
  .section-highlight,
  .section-languages,
  .section-process,
  .section-guides,
  .faq-section,
  .attorney-profile,
  .form-page {
    padding-block: var(--sp-xl);
  }

  .section-cta {
    padding-block: var(--sp-xl) var(--sp-lg);
  }

  .page-hero {
    padding-block: var(--sp-lg) var(--sp-md);
  }

  /* Avoid hero being too tall on small screens */
  .hero {
    padding-block: var(--sp-xl);
  }

  .hero-headline {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    margin-bottom: var(--sp-md);
  }

  /* Process steps: 2 column on mid-mobile */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(odd) {
    border-right: 1px solid var(--c-border-light);
  }

  /* Footer single column on very small */
  .footer-bottom-inner {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none !important;
  }
}


/* ----------------------------------------------------------------
   33. JSON-LD PLACEHOLDER VISIBILITY (dev mode only)
   ---------------------------------------------------------------- */
/* JSON-LD scripts are invisible by default — no styles needed */


/* ----------------------------------------------------------------
   35. SERVICE DETAIL PAGES
   ---------------------------------------------------------------- */
.service-body {
  padding-block: var(--sp-2xl);
  background-color: var(--c-white);
}

.service-prose {
  max-width: 720px;
}

.service-prose h2 {
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-md);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 400;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.service-prose h2:first-of-type {
  margin-top: 0;
}

.service-prose p {
  font-size: 0.975rem;
  line-height: 1.78;
  margin-bottom: var(--sp-md);
  color: var(--c-text-muted);
}

.service-prose ul,
.service-prose ol {
  padding-left: var(--sp-lg);
  margin-bottom: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.service-prose li {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--c-text-muted);
}

.service-prose li {
  padding-left: 1em;
  position: relative;
}

.service-prose li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--brass);
}

.service-prose a {
  color: var(--brass);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-prose a:hover {
  color: var(--brass-deep);
}

.service-prose strong {
  color: var(--c-text);
  font-weight: 600;
}


/* ----------------------------------------------------------------
   36. ZIELGRUPPEN OVERVIEW
   ---------------------------------------------------------------- */
.zielgruppen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.zielgruppe-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding: var(--sp-xl);
  background-color: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.zielgruppe-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.zielgruppe-card:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
  border-radius: var(--radius-md);
}

.zielgruppe-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-brand-mid);
}

.zielgruppe-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.25;
}

.zielgruppe-card-desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  flex: 1;
}

.zielgruppe-card-arrow {
  font-size: 0.82rem;
  color: var(--c-brand);
  margin-top: auto;
  padding-top: var(--sp-xs);
}


/* ----------------------------------------------------------------
   37. WISSEN / KNOWLEDGE ARTICLE CARDS (GRID)
   ---------------------------------------------------------------- */
.wissen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.wissen-card {
  display: flex;
  flex-direction: column;
  background-color: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.wissen-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.wissen-card:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
  border-radius: var(--radius-md);
}

.wissen-card-body {
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  flex: 1;
}

.wissen-card-topic {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-brand-mid);
}

.wissen-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.3;
}

.wissen-card-summary {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-top: var(--sp-xs);
}

.wissen-card-meta {
  font-size: 0.72rem;
  color: var(--c-text-light);
  margin-top: var(--sp-sm);
  padding-top: var(--sp-xs);
  border-top: 1px solid var(--c-border-light);
  letter-spacing: 0.02em;
}

.wissen-card-arrow {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-brand);
  padding: var(--sp-xs) var(--sp-lg) var(--sp-md);
  border-top: 1px solid var(--c-border-light);
}

/* Dunkle Tool-/Self-Check-Kachel — additiver Modifier, aendert die hellen Artikel-Karten NICHT */
.wissen-tools-section {
  width: 100%;
  max-width: var(--max-w);
  margin: var(--sp-xl) auto;
  padding-inline: var(--gutter);
}
.wissen-tools-section h2 { margin-bottom: var(--sp-lg); }
.wissen-card--tool { background: var(--ink-900); border-color: transparent; }
.wissen-card--tool .wissen-card-topic { color: var(--brass); }
.wissen-card--tool h3 { color: #fff; }
.wissen-card--tool .wissen-card-desc { color: var(--on-dark-mute); }
.wissen-card--tool .wissen-card-arrow { color: var(--brass); border-top-color: var(--on-dark-line); }

@media (max-width: 768px) {
  .zielgruppen-grid {
    grid-template-columns: 1fr;
  }

  .wissen-grid {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------------------------------
   34. PRINT BASIC
   ---------------------------------------------------------------- */
@media print {
  .site-header,
  .burger-btn,
  .header-actions,
  .hero-actions,
  .cta-actions,
  .section-cta,
  .site-footer {
    display: none;
  }

  body {
    font-size: 11pt;
    color: #000;
    background: #fff;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
    color: #555;
  }
}


/* ================================================================
   HOMEPAGE v2 — Premium Design Enhancements
   ================================================================ */

/* ----------------------------------------------------------------
   38. HERO — FULL BLEED SPLIT VARIANT (homepage v2)
   ---------------------------------------------------------------- */
.hero--split {
  padding-block: 0;
  border-bottom: none;
  background: none;
  min-height: clamp(580px, 88vh, 860px);
  display: flex;
  align-items: stretch;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  width: 100%;
  min-height: inherit;
}

.hero-split-text {
  background-color: var(--c-surface-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vh, 6rem) clamp(2rem, 5vw, 5rem);
  position: relative;
}

/* Subtle right-edge accent line */
.hero-split-text::after {
  content: '';
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(196,168,130,.28),
    transparent);
  pointer-events: none;
}

.hero-split-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brand-light);
  margin-bottom: var(--sp-md);
  line-height: 1;
}

.hero-split-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--c-text-inv);
  margin-bottom: var(--sp-lg);
}

.hero-split-subline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-text-inv-muted);
  max-width: 420px;
  margin-bottom: var(--sp-lg);
  letter-spacing: 0.01em;
}

.hero-split-trust {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(176,160,152,.5);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-xl);
  line-height: 1;
}

.hero-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

/* Right: photo panel */
.hero-split-photo {
  position: relative;
  overflow: hidden;
}

.hero-split-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Subtle left-edge gradient overlay */
.hero-split-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(26,18,14,.18) 0%,
    transparent 35%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1200px) {
  /* Tighten nav link spacing for 7 items */
  .nav-link {
    padding-inline: 0.5rem;
  }
}

@media (max-width: 1024px) {
  .hero--split {
    min-height: auto;
    flex-direction: column;
  }

  .hero-split-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 380px auto;
  }

  .hero-split-photo {
    grid-row: 1;
    position: relative;
    height: 380px;
  }

  .hero-split-text {
    grid-row: 2;
    padding: var(--sp-xl) var(--sp-lg);
  }

  .hero-split-text::after { display: none; }
}

@media (max-width: 768px) {
  .hero-split-inner {
    grid-template-rows: 280px auto;
  }

  .hero-split-photo { height: 280px; }

  .hero-split-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-split-text {
    padding: var(--sp-lg) var(--sp-md);
  }
}

@media (max-width: 480px) {
  .hero-split-inner {
    grid-template-rows: 240px auto;
  }

  .hero-split-photo { height: 240px; }

  .hero-split-actions {
    flex-direction: column;
  }

  .hero-split-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}


/* ----------------------------------------------------------------
   39. PRIORITY SERVICE TIERS
   ---------------------------------------------------------------- */
.services-primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: var(--sp-lg);
}

.services-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.services-tier-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-light);
  margin-bottom: var(--sp-md);
  padding-top: var(--sp-md);
  padding-bottom: var(--sp-xs);
  border-top: 1px solid var(--c-border-light);
}

/* Featured card modifier */
.service-card--featured {
  border-top: 2px solid var(--c-brand);
  padding-top: calc(var(--sp-lg) - 2px);
}

.service-card--featured .service-card-accent {
  display: none; /* replaced by top border */
}

.service-card--featured .service-title {
  font-size: 1.3rem;
}

/* Compact card modifier */
.service-card--compact {
  padding: var(--sp-md) var(--sp-md);
}

.service-card--compact .service-card-accent {
  left: var(--sp-md);
}

.service-card--compact .service-title {
  font-size: 1.05rem;
  padding-top: var(--sp-xs);
}

.service-card--compact .service-desc {
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .services-primary  { grid-template-columns: repeat(2, 1fr); }
  .services-secondary { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-primary,
  .services-secondary { grid-template-columns: 1fr; }
}


/* ----------------------------------------------------------------
   40. BUSINESS IMMIGRATION HIGHLIGHT — WITH PHOTO
   ---------------------------------------------------------------- */
.section-highlight--with-photo .highlight-inner {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.highlight-content-col { max-width: 580px; }

.highlight-photo-col {
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.highlight-photo-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.78;
}

@media (max-width: 1024px) {
  .section-highlight--with-photo .highlight-inner {
    grid-template-columns: 1fr;
  }

  .highlight-photo-col { max-height: 260px; overflow: hidden; }
  .highlight-photo-img { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .highlight-photo-col { display: none; }
}


/* ----------------------------------------------------------------
   41. ZIELGRUPPEN HOMEPAGE TEASER (linked cards)
   ---------------------------------------------------------------- */
.clients-teaser-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: var(--sp-xl);
}

.client-teaser-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  padding: var(--sp-lg) var(--sp-md);
  background-color: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-bottom: 2px solid transparent;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              border-bottom-color var(--dur-fast) var(--ease);
}

.client-teaser-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-bottom-color: var(--c-brand-light);
}

.client-teaser-card:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
}

.client-teaser-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-brand-light);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.client-teaser-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.25;
}

.client-teaser-desc {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-top: 2px;
}

.client-teaser-arrow {
  font-size: 0.8rem;
  color: var(--c-brand);
  margin-top: auto;
  padding-top: var(--sp-sm);
}

@media (max-width: 1024px) {
  .clients-teaser-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .clients-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .clients-teaser-grid { grid-template-columns: 1fr; }
}


/* ----------------------------------------------------------------
   42. REVIEWS / REFERENCES TEASER (homepage)
   ---------------------------------------------------------------- */
.section-reviews-teaser {
  padding-block: var(--sp-2xl);
  background-color: var(--c-surface);
  border-top: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
}

.reviews-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.reviews-teaser-body {
  font-size: 0.975rem;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: var(--sp-lg);
}

.reviews-platform-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
}

.reviews-platform-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background-color: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: box-shadow var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.reviews-platform-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(3px);
}

.reviews-platform-item:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
}

.reviews-platform-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-brand);
}

.reviews-platform-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  flex: 1;
}

.reviews-platform-arrow {
  font-size: 0.82rem;
  color: var(--c-brand-light);
}

.reviews-photo-col {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.reviews-photo-img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

@media (max-width: 768px) {
  .reviews-teaser-inner { grid-template-columns: 1fr; }
  .reviews-photo-col    { display: none; }
}


/* ----------------------------------------------------------------
   43. BLOG CARDS
   ---------------------------------------------------------------- */
.section-blog-teaser {
  padding-block: var(--sp-2xl);
  background-color: var(--c-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--sp-xl);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--c-bg);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.blog-card:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
}

.blog-card-body {
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.blog-card-topic {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-brand-mid);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.28;
  margin-bottom: 4px;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-md);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--c-border-light);
  font-size: 0.75rem;
  color: var(--c-text-light);
}

.blog-card-date { font-style: italic; }

.blog-card-link-arrow {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-brand);
}

.blog-all-link-wrap { text-align: center; }

/* Blog overview page */
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--sp-xl);
}

.section-blog-content {
  padding-block: var(--sp-2xl);
  background-color: var(--c-bg);
}

.blog-disclaimer {
  padding-block: var(--sp-lg);
  border-top: 1px solid var(--c-border-light);
  margin-top: var(--sp-xl);
}

.blog-disclaimer p {
  font-size: 0.82rem;
  color: var(--c-text-light);
  max-width: 640px;
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ----------------------------------------------------------------
   ACCENT ITALIC — sparsamer Stilakzent für Eyebrows / Sublines
   ---------------------------------------------------------------- */
.acc-italic {
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
}

@media (max-width: 768px) {
  .blog-grid,
  .blog-page-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   28. EYEBROW — micro-label für neue Sektionen
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-brand-light);
  margin-bottom: var(--sp-sm);
}

.eyebrow--brass   { color: var(--c-brand-light); }
.acc-italic--brass { color: var(--c-brand-light); }

/* Override eyebrow on dark hero panel */
.hero-split-text .eyebrow {
  color: rgba(244, 240, 230, 0.60);
  margin-bottom: calc(var(--sp-sm) + 0.25rem);
}


/* ============================================================
   29. HERO QUICK-NAV
   ============================================================ */
.hero-quicknav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: var(--sp-lg);
  border-top: 1px solid rgba(244, 240, 230, 0.20);
  padding-top: var(--sp-md);
}

.quicknav-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.7rem 1rem 0.7rem 0;
  color: var(--c-text-inv);
  text-decoration: none;
  border-right: 1px solid rgba(244, 240, 230, 0.10);
  transition: opacity var(--dur-fast) var(--ease);
}

.quicknav-item:last-child { border-right: none; }
.quicknav-item:hover      { opacity: 0.70; }

.quicknav-n {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-brand-light);
}

.quicknav-t {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(244, 240, 230, 0.85);
  line-height: 1.3;
}

@media (max-width: 800px) {
  .hero-quicknav {
    grid-template-columns: 1fr;
  }
  .quicknav-item {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    border-right: none;
    border-bottom: 1px solid rgba(244, 240, 230, 0.10);
    padding: 0.6rem 0;
  }
  .quicknav-item:last-child { border-bottom: none; }
}


/* ============================================================
   30. SECTION POSITIONING (SEO anchor, weißer Hintergrund)
   ============================================================ */
.section-positioning {
  background: var(--c-white);
  padding-block: clamp(3rem, 7vw, 6rem);
}

.positioning-inner { max-width: 1100px; }

.positioning-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--c-text);
  max-width: 780px;
  margin-block: var(--sp-sm) var(--sp-xl);
}

.positioning-columns {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.positioning-lead {
  font-size: 1.18rem;
  color: var(--c-text);
  line-height: 1.65;
}

.positioning-body {
  font-size: 0.98rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.domain-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}

.domain-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.5rem;
  background: var(--c-white);
  transition: background var(--dur-fast) var(--ease);
}

.domain-card:hover { background: var(--c-surface); }

.domain-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.domain-card-sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .positioning-columns { grid-template-columns: 1fr; }
  .domain-strip        { grid-template-columns: 1fr; }
}


/* ============================================================
   31. FOTO-BAND HAMBURG
   ============================================================ */
.section-photoband {
  overflow: hidden;
  line-height: 0;
}

.photoband-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: clamp(200px, 35vw, 420px);
}

.photoband-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .photoband-grid                    { grid-template-columns: 1fr; height: auto; }
  .photoband-cell, .photoband-cell--wide { height: 200px; }
}


/* ============================================================
   32. MAGAZIN-TOC LEISTUNGEN
   ============================================================ */
.section-services { background: var(--c-surface); }

.toc {
  list-style: none;
  padding: 0;
  margin: var(--sp-xl) 0 0;
  border-top: 2px solid var(--c-border);
}

.toc-cluster,
.toc-leaf {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 0 1.5rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--c-border-light);
}

.toc-cluster {
  background: rgba(15, 24, 34, 0.03);
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--c-border);
  margin-top: 0.5rem;
}

.toc-cluster:first-child { margin-top: 0; }

.toc-leaf:hover { background: rgba(15, 24, 34, 0.025); }

.rn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-brand-light);
  padding-left: 0.25rem;
}

.toc-cluster .rn {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0;
}

.toc-cluster .rt {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.toc-leaf .rt {
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--c-text);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.toc-leaf .rt:hover { color: var(--c-brand-light); }

.rd {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--c-text-light);
  text-align: right;
  white-space: nowrap;
}

.toc-cluster .rd {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--c-brand-light);
}

.toc-footer {
  padding-top: var(--sp-md);
  text-align: right;
}

@media (max-width: 600px) {
  .toc-cluster,
  .toc-leaf { grid-template-columns: 2.75rem 1fr; gap: 0 0.75rem; }
  .rd { display: none; }
}


/* ============================================================
   33. AUDIENCES INDEX LIST
   ============================================================ */
.section-audiences {
  background: var(--c-white);
  padding-block: clamp(3rem, 7vw, 6rem);
}

.audiences {
  list-style: none;
  padding: 0;
  margin: var(--sp-xl) 0 var(--sp-md);
  border-top: 2px solid var(--c-border);
}

.audiences li { border-bottom: 1px solid var(--c-border-light); }

.audiences a {
  display: grid;
  grid-template-columns: 3.5rem 14rem 1fr auto;
  gap: 0 1.5rem;
  align-items: baseline;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
  transition: background var(--dur-fast) var(--ease),
              padding-inline var(--dur-fast) var(--ease);
}

.audiences a:hover {
  background: var(--c-surface);
  padding-inline: 0.5rem;
}

.audiences .n {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--c-brand-light);
}

.audiences .t {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
}

.audiences .d {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.audiences .a {
  font-size: 0.9rem;
  color: var(--c-text-light);
  transition: transform var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}

.audiences a:hover .a {
  color: var(--c-text);
  transform: translateX(4px);
}

.audiences-lang-note {
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-light);
}

@media (max-width: 900px) {
  .audiences a { grid-template-columns: 2.5rem 1fr auto; }
  .audiences .d { display: none; }
}

@media (max-width: 480px) {
  .audiences a { grid-template-columns: 2rem 1fr; }
  .audiences .a { display: none; }
}


/* ============================================================
   34. LANGUAGES TRIPLET
   ============================================================ */
.section-languages {
  background: var(--c-surface);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.languages-inner { max-width: 1280px; }

.lang-triplet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--c-border);
}

.lang-triplet-item {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.lang-triplet-item:last-child { border-right: none; }

.lang-triplet-sentence {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--c-text);
  margin: 0 0 var(--sp-sm);
}

.lang-triplet-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-brand-light);
}

@media (max-width: 768px) {
  .lang-triplet { grid-template-columns: 1fr; }
  .lang-triplet-item { border-right: none; }
}


/* ============================================================
   35. KNOWLEDGE TEASER (Trennlinien-Optik, kein Featured-Image)
   ============================================================ */
.section-knowledge {
  background: var(--c-white);
  padding-block: clamp(3rem, 7vw, 6rem);
}

.section-header--flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}

.section-header-link {
  flex-shrink: 0;
  white-space: nowrap;
  margin-bottom: calc(var(--sp-sm) * 0.5);
}

.knowledge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--c-border);
}

.knowledge-item { border-bottom: 1px solid var(--c-border-light); }

.knowledge-link {
  display: block;
  padding: 1.5rem 0;
  text-decoration: none;
  color: inherit;
  transition: background var(--dur-fast) var(--ease),
              padding-inline var(--dur-fast) var(--ease);
}

.knowledge-link:hover {
  background: var(--c-surface);
  padding-inline: 0.5rem;
}

.knowledge-topic {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-brand-light);
  margin-bottom: 0.4rem;
}

.knowledge-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.3;
  margin-bottom: 0.45rem;
}

.knowledge-excerpt {
  display: block;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.knowledge-meta {
  display: block;
  font-family: var(--font-body);
  font-size: 0.70rem;
  color: var(--c-text-light);
  letter-spacing: 0.04em;
}


/* ============================================================
   36. FAQ SECTION (neue Klasse, nutzt existierendes Accordion-JS)
   ============================================================ */
.section-faq {
  background: var(--c-surface);
  padding-block: clamp(3rem, 7vw, 6rem);
}


/* ============================================================
   37. CONTACT CTA — Ergänzungen
   ============================================================ */
.cta-lang-note {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-brand-light);
  margin-top: var(--sp-sm);
}

.cta-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: var(--sp-md) auto var(--sp-sm);
  max-width: 200px;
}


/* ============================================================
   38. SEKTIONS-RHYTHMUS (Hintergrund-Wechsel)
   Hero           → --c-brand (via .hero-split-text)
   Positionierung → --c-white
   Foto-Band      → kein Hintergrund (Bilder)
   Leistungen     → --c-surface
   Schwerpunkt    → --c-surface-dark
   Für wen        → --c-white
   Mehrsprachig   → --c-surface
   Wissen         → --c-white
   FAQ            → --c-surface
   Kontakt-CTA    → --c-bg
   ============================================================ */
.section-highlight   { background: var(--c-surface-dark); color: var(--c-text-inv); }
.section-cta         { background: var(--c-bg); }


/* ----------------------------------------------------------------
   44. PROCESS SECTION PHOTO CLASS (replaces inline styles)
   ---------------------------------------------------------------- */
.process-photo-wrap {
  margin-bottom: var(--sp-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.process-photo-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

@media (max-width: 768px) {
  .process-photo-img { max-height: 200px; }
}


/* ----------------------------------------------------------------
   45. FAQ TEASER — HOMEPAGE
   ---------------------------------------------------------------- */
.section-faq-teaser {
  padding-block: var(--sp-2xl);
  background-color: var(--c-surface);
  border-top: 1px solid var(--c-border-light);
}

.faq-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-xl);
  align-items: start;
}

.faq-teaser-intro .section-heading {
  max-width: 360px;
  margin-bottom: var(--sp-md);
}

.faq-teaser-intro-text {
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
  max-width: 340px;
}

@media (max-width: 768px) {
  .faq-teaser-inner { grid-template-columns: 1fr; }
}


/* ----------------------------------------------------------------
   46. EDITORIAL PHOTO STRIP (decorative separator)
   ---------------------------------------------------------------- */
.editorial-strip {
  overflow: hidden;
  line-height: 0;
}

.editorial-strip-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

@media (max-width: 768px) {
  .editorial-strip-img { height: 200px; }
}


/* ----------------------------------------------------------------
   47. FOOTER — 5-COLUMN (brand + 4 nav)
   ---------------------------------------------------------------- */


/* ================================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ================================================================ */

/* ----------------------------------------------------------------
   48. LEGAL PAGE LAYOUT
   ---------------------------------------------------------------- */
.legal-page-section {
  padding-block: var(--sp-2xl) var(--sp-3xl);
}

.legal-page-container {
  max-width: 820px;
}

.legal-page-header {
  margin-block-end: var(--sp-2xl);
  padding-block-end: var(--sp-xl);
  border-bottom: 1px solid var(--c-border);
}

.legal-page-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2xl);
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--c-brand);
  margin-block-end: var(--sp-xs);
}

.legal-section h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  margin-block-start: var(--sp-sm);
  margin-block-end: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-section p,
.legal-section address {
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--c-text-muted);
}

.legal-address {
  font-style: normal;
  line-height: 1.85;
}

.legal-dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.25rem 1.25rem;
  font-size: 0.925rem;
  line-height: 1.7;
}

.legal-dl dt {
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  padding-block-start: 0.1em;
}

.legal-dl dd {
  color: var(--c-text-muted);
  margin: 0;
}

.legal-list {
  padding-inline-start: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--c-text-muted);
}

.legal-list li::marker {
  color: var(--c-brand-light);
}

.legal-section a {
  color: var(--c-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  color: var(--c-brand-light);
}

@media (max-width: 640px) {
  .legal-dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legal-dl dt {
    margin-block-start: var(--sp-sm);
  }
}


/* ================================================================
   NAVIGATION v2 — DROPDOWN, MEGA-MENU, MOBILE ACCORDION
   ================================================================ */

/* ----------------------------------------------------------------
   49. NAV TRIGGER BUTTON RESET
   ---------------------------------------------------------------- */
button.nav-link,
button.nav-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  text-align: left;
  white-space: nowrap;
}

/* ----------------------------------------------------------------
   50. NAV ARROW CHEVRON
   ---------------------------------------------------------------- */
.nav-arrow {
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--dur-fast) var(--ease);
  flex-shrink: 0;
  margin-left: 0.15em;
}
.nav-trigger[aria-expanded="true"] .nav-arrow {
  transform: rotate(-135deg) translateY(2px);
}

/* ----------------------------------------------------------------
   51. DROPDOWN PANEL (desktop: positioned; mobile: in-flow)
   ---------------------------------------------------------------- */
.nav-item {
  position: relative;
}

/* Desktop */
@media (min-width: 769px) {
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 240px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(58,37,32,.08), 0 8px 32px rgba(58,37,32,.06);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity var(--dur-base) var(--ease),
                transform var(--dur-base) var(--ease),
                visibility var(--dur-base) var(--ease);
    z-index: 200;
  }
  .nav-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* Mobile: display toggle */
@media (max-width: 768px) {
  .nav-dropdown {
    display: none;
  }
  .nav-dropdown.is-open {
    display: block;
  }
}

.nav-dropdown-list {
  list-style: none;
}
.nav-dropdown-link {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  transition: color var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
}
.nav-dropdown-link:hover {
  color: var(--c-brand);
  background-color: var(--c-surface);
}
.nav-dropdown-link:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: -2px;
  border-radius: 2px;
}
.nav-dropdown-link--soon {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}
.nav-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-brand-mid);
  background: var(--c-surface);
  padding: 0.1em 0.4em;
  border-radius: 2px;
  margin-left: 0.3em;
  vertical-align: middle;
}

/* ----------------------------------------------------------------
   52. MEGA-MENU PANEL
   ---------------------------------------------------------------- */
.nav-item--has-mega {
  position: static;
}

/* Desktop: fixed panel below header */
@media (min-width: 769px) {
  .nav-mega {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    border-bottom: 2px solid var(--c-border);
    box-shadow: 0 8px 32px rgba(58,37,32,.07);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity var(--dur-base) var(--ease),
                transform var(--dur-base) var(--ease),
                visibility var(--dur-base) var(--ease);
    z-index: 199;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-mega.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mega-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--sp-lg) var(--gutter) var(--sp-md);
  }
  .mega-cluster {
    padding: 0 1.25rem;
    border-right: 1px solid var(--c-border-light);
  }
  .mega-cluster:first-child { padding-left: 0; }
  .mega-cluster:last-child  { padding-right: 0; border-right: none; }
  .mega-cluster-list { display: flex; }
}

/* Mobile: in-flow, display toggle */
@media (max-width: 768px) {
  .nav-mega {
    display: none;
  }
  .nav-mega.is-open {
    display: block;
  }
  .mega-inner {
    display: block;
    padding: 0;
  }
  /* Cluster: stacked accordion items */
  .mega-cluster {
    padding: 0;
    border-bottom: 1px solid var(--c-border-light);
  }
  .mega-cluster:last-child { border-bottom: none; }
  /* Cluster header: toggle button look */
  .mega-cluster-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0;
  }
  .mega-cluster-header::after {
    content: '';
    display: inline-block;
    width: 0.4em;
    height: 0.4em;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--dur-fast) var(--ease);
    flex-shrink: 0;
  }
  .mega-cluster.is-open .mega-cluster-header::after {
    transform: rotate(-135deg) translateY(2px);
  }
  /* Cluster list: hidden until open */
  .mega-cluster-list {
    display: none !important;
    flex-direction: column;
    padding: 0.25rem 0 0.5rem 0.75rem;
  }
  .mega-cluster.is-open .mega-cluster-list {
    display: flex !important;
  }
  .mega-footer-bar {
    padding: var(--sp-sm) 0.5rem;
  }
}

/* Shared cluster/mega link styles */
.mega-cluster-header {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 0.65rem;
  transition: color var(--dur-fast) var(--ease);
}
.mega-cluster-header:hover {
  color: var(--c-brand-mid);
}
.mega-cluster-list {
  list-style: none;
  flex-direction: column;
  gap: 0.05rem;
}
.mega-link {
  display: block;
  padding: 0.35rem 0.4rem;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
}
.mega-link:hover {
  color: var(--c-brand);
  background-color: var(--c-surface);
}
.mega-link:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: -2px;
}
.mega-footer-bar {
  border-top: 1px solid var(--c-border-light);
  padding: var(--sp-sm) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.mega-all-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-brand);
  transition: opacity var(--dur-fast) var(--ease);
}
.mega-all-link:hover {
  opacity: 0.7;
}

/* ----------------------------------------------------------------
   53. MOBILE NAV TRIGGER FULL-WIDTH
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  .nav-item--has-dropdown > .nav-trigger,
  .nav-item--has-mega > .nav-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .nav-dropdown .nav-dropdown-link {
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
  }
}

/* ----------------------------------------------------------------
   54. ACTIVE STATE — NAV ITEM LEVEL
   ---------------------------------------------------------------- */
.nav-item.is-active > .nav-trigger,
.nav-item.is-active > .nav-link {
  color: var(--c-brand);
  font-weight: 500;
}

/* ----------------------------------------------------------------
   55. NAV SPLIT — Leistungen link + arrow toggle
   ---------------------------------------------------------------- */
/* Desktop and shared */
.nav-split {
  display: flex;
  align-items: center;
}
.nav-split__link {
  flex: 1 1 auto;
}
.nav-split__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0.35rem 0 0.1rem;
  color: inherit;
  display: flex;
  align-items: center;
  font-size: inherit;
  line-height: 1;
}
/* Active and hover states for split children */
.nav-item.is-active .nav-split__link,
.nav-split__link.is-active {
  color: var(--c-brand);
  font-weight: 500;
}
.nav-item.is-active .nav-split__toggle {
  color: var(--c-brand);
}
/* Mobile: ensure full row width */
@media (max-width: 768px) {
  .nav-split {
    width: 100%;
  }
  .nav-split__toggle {
    padding: 0.5rem 0.5rem;
    margin-left: auto;
  }
}


/* ================================================================
   DESIGN SPEC IMPLEMENTATION — New Sections
   ================================================================ */

/* ── Global mobile overflow fix ─────────────────────────────────── */
/* clip statt hidden: verhindert horizontalen Overflow ohne Scroll-Container zu erzeugen,
   sodass position:sticky am site-header funktioniert */
html, body { overflow-x: clip; }


/* ── ClusterD-Compact bands ─────────────────────────────────────── */
.section-clusters {
  background-color: var(--surface);
}

.section-clusters__header {
  padding: var(--sp-2xl) var(--gutter) var(--sp-lg);
  max-width: var(--max-w);
  margin-inline: auto;
}

.cluster-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-top: 1px solid var(--border);
}

.cluster-band:last-of-type { border-bottom: 1px solid var(--border); }

.cluster-band__photo {
  position: relative;
  overflow: hidden;
}

.cluster-band__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s var(--ease);
}

.cluster-band:hover .cluster-band__photo img { transform: scale(1.04); }

.cluster-band__body {
  padding: var(--sp-xl) clamp(var(--sp-lg), 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-md);
}

.cluster-band__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.cluster-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}

.cluster-band__text {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--ink-600);
  max-width: 480px;
}

.cluster-band__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cluster-band__link {
  font-size: 0.85rem;
  color: var(--ink-600);
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--dur-fast) var(--ease);
}

.cluster-band__link:first-child { border-top: 1px solid var(--border-light); }

.cluster-band__link:hover { color: var(--ink-900); }

.cluster-band__link-arrow { color: var(--brass); font-size: 0.78em; }

.cluster-band__cta { margin-top: var(--sp-xs); }

.section-clusters__footer {
  padding: var(--sp-lg) var(--gutter);
  max-width: var(--max-w);
  margin-inline: auto;
}

/* Flip: even clusters have photo on right */
.cluster-band--flip .cluster-band__photo { order: 2; }
.cluster-band--flip .cluster-band__body  { order: 1; }

@media (max-width: 900px) {
  .cluster-band {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .cluster-band--flip .cluster-band__photo { order: 1; }
  .cluster-band--flip .cluster-band__body  { order: 2; }
  .cluster-band__photo { height: 280px; }
  .cluster-band__body  { padding: var(--sp-lg) var(--gutter); }
}


/* ── Photo Mosaic ────────────────────────────────────────────────── */
.section-photomosaic {
  background-color: var(--surface);
  overflow: hidden;
}

.photomosaic-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr;
  grid-template-rows: 340px 280px;
  gap: 3px;
}

.photomosaic-cell {
  position: relative;
  overflow: hidden;
}

.photomosaic-cell--tall { grid-row: 1 / 3; }

.photomosaic-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.photomosaic-cell:hover img { transform: scale(1.04); }

.photomosaic-cell-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(10,17,24,.65) 0%, transparent 100%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark);
}

@media (max-width: 768px) {
  .photomosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 170px;
  }
  /* Cell 1 (--tall) spans both rows col 1; cells 2+3 fill col 2.
     Cells 4-5 have no explicit row height → hide to prevent collapse. */
  .photomosaic-cell:nth-child(n+4) { display: none; }
}

@media (max-width: 480px) {
  .photomosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .photomosaic-cell--tall { grid-row: auto; }
  /* cells 4-5 already hidden by the 768px rule above */
}


/* ── Photo Quote / Editorial ─────────────────────────────────────── */
.section-photoquote {
  padding-block: var(--sp-2xl);
  background-color: var(--paper-dark);
}

.photoquote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-lg), 5vw, var(--sp-3xl));
  align-items: center;
}

.photoquote-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.photoquote-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photoquote-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.photoquote-pull {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.photoquote-attr {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.photoquote-text {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--ink-600);
}

@media (max-width: 768px) {
  .photoquote-inner { grid-template-columns: 1fr; }
  .photoquote-img-wrap { aspect-ratio: 3 / 2; }
}


/* ── Contact Dark Block ──────────────────────────────────────────── */
.section-contact-dark {
  position: relative;
  background-color: var(--ink-900);
  overflow: hidden;
}

.contact-dark-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-dark-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.18;
}

.contact-dark-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-lg), 5vw, var(--sp-3xl));
  align-items: start;
  padding-block: var(--sp-3xl);
}

.contact-dark-head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  padding-top: var(--sp-xs);
}

.contact-dark-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}

.contact-dark-head p {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--on-dark-muted);
}

.contact-dark-details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: var(--sp-sm);
}

.contact-detail {
  display: flex;
  gap: 1em;
  align-items: baseline;
}

.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  width: 4.5em;
  flex-shrink: 0;
}

.contact-detail-value {
  font-size: 0.875rem;
  color: var(--on-dark-muted);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: var(--on-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.65rem 0.875rem;
  transition: border-color var(--dur-fast) var(--ease);
  width: 100%;
  min-height: 44px;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(244,240,230,0.30); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: rgba(255,255,255,0.09);
}

.form-select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(156%2C107%2C61%2C0.8)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-notice {
  font-size: 0.75rem;
  color: rgba(244,240,230,0.38);
  line-height: 1.55;
}

.form-submit { align-self: flex-start; }

@media (max-width: 900px) {
  .contact-dark-inner  { grid-template-columns: 1fr; }
  .contact-form-row    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .contact-dark-inner { padding-block: var(--sp-2xl); }
}


/* ── Footer Wordmark ─────────────────────────────────────────────── */
.footer-wordmark {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-wordmark__name {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  color: var(--on-dark);
  text-transform: uppercase;
}

.footer-wordmark__sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  line-height: 1;
}


/* ── Footer Accordion (mobile <details>) ────────────────────────── */
.footer-accordion { border: none; }

.footer-accord-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: default;
}

.footer-accord-summary::-webkit-details-marker { display: none; }

.footer-accord-icon {
  display: none;
  font-size: 1rem;
  font-weight: 300;
  color: var(--on-dark-muted);
  line-height: 1;
  user-select: none;
}

.footer-accord-summary .footer-col-heading { margin-bottom: 0; }

@media (max-width: 768px) {
  .footer-accord-summary {
    cursor: pointer;
    padding-block: 0.5rem;
  }

  .footer-accord-summary .footer-col-heading { margin-bottom: 0; }

  .footer-accord-icon { display: block; }

  .footer-accordion:not([open]) .footer-accord-icon::after { content: '+'; }
  .footer-accordion[open]       .footer-accord-icon::after { content: '−'; }

  .footer-accordion .footer-nav-list {
    padding-top: var(--sp-sm);
    padding-bottom: var(--sp-md);
  }

  .footer-col-heading--mt { margin-top: 0; }
}


/* ── Visually hidden (a11y) ──────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ── Audience Cards grid (fuer-wen.html) ────────────────────────── */
.section-audiences-detail {
  padding-block: var(--sp-2xl);
  background-color: var(--surface);
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-top: var(--sp-lg);
}

.audience-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.audience-card-photo {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.audience-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
}

.audience-card:hover .audience-card-photo img { transform: scale(1.04); }

.audience-card-body {
  padding: var(--sp-md) var(--sp-md) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  flex: 1;
}

.audience-card-body .eyebrow { margin-bottom: 0; }

.audience-card-body p {
  font-size: 0.9rem;
  line-height: 1.68;
  color: var(--ink-600);
}

.audience-topics {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-block: var(--sp-xs);
}

.audience-topics li {
  font-size: 0.82rem;
  color: var(--ink-600);
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 0.5em;
  align-items: baseline;
}

.audience-topics li::before {
  content: '↗';
  color: var(--brass);
  font-size: 0.75em;
  flex-shrink: 0;
}

.audience-card-body .text-link { margin-top: auto; }

@media (max-width: 1024px) {
  .audience-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .audience-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   36 — Page TOC: Inhalt dieser Seite
   Pilot: leistungen-business-immigration.html
   Reusable on any long money page:
     wrap content + sidebar in .service-layout,
     add .page-toc-mobile (accordion) and .page-toc-sidebar (sticky panel)
   ============================================================ */

/* Grid: TOC (260px) + content (1fr) + CTA (260px) — switches to single column <1024px */
.service-layout {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: var(--sp-xl);
  align-items: start;
}
/* TOC moves visually to first column (left) even if it appears second in DOM */
.page-toc-sidebar { order: -1; }

/* ---- Mobile accordion ---- */
/* Shown only on mobile; desktop version is .page-toc-sidebar */
.page-toc-mobile {
  display: none;
  margin-bottom: var(--sp-lg);
}

.page-toc-details {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm, 6px);
  background: var(--ink-50, #F7F9FB);
  overflow: hidden;
}

.page-toc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-sm) var(--sp-md);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.page-toc-summary::-webkit-details-marker { display: none; }

.page-toc-summary::after {
  content: '+';
  font-size: 1rem;
  font-weight: 400;
  color: var(--brass);
}

.page-toc-details[open] .page-toc-summary::after {
  content: '−';
}

.page-toc-nav {
  padding: 0 var(--sp-md) var(--sp-md);
}

/* ---- Shared list + link styles (used in both mobile & desktop) ---- */
.page-toc-list {
  list-style: none;
  counter-reset: none;
  margin: 0;
  padding: 0;
}

.page-toc-link {
  display: block;
  padding: 0.35rem 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--ink-600);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.page-toc-link:hover,
.page-toc-link:focus-visible {
  color: var(--brass);
  padding-left: 0.3rem;
  outline: none;
}

.page-toc-list li:last-child .page-toc-link {
  border-bottom: none;
}

/* ---- Desktop sidebar ---- */
.page-toc-sidebar {
  display: none;
}

.page-toc-box {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm, 6px);
  background: var(--ink-50, #F7F9FB);
  padding: var(--sp-md);
}

.page-toc-title,
.page-toc-heading {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-sm);
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--border-light);
}

/* ---- Responsive switches ---- */
@media (min-width: 1024px) {
  .page-toc-mobile { display: none; }

  .page-toc-sidebar {
    display: block;
    position: sticky;
    top: calc(72px + 24px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    align-self: start;
  }
}

@media (max-width: 1023px) {
  .service-layout {
    display: block;
  }

  .page-toc-sidebar { display: none; }
  .page-toc-mobile  { display: block; }
  .service-cta-sidebar { display: none; }
}

/* ---- Active TOC link state (IntersectionObserver) ---- */
.page-toc-link.is-active {
  color: var(--brass);
  font-weight: 500;
  padding-left: 0.3rem;
}

/* ---- Sticky CTA sidebar (Money-Pages right column) ---- */
.service-cta-sidebar {
  position: sticky;
  top: calc(72px + var(--sp-lg));
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  align-self: start;
}

.service-cta-box {
  background: var(--ink-900);
  color: var(--on-dark);
  padding: var(--sp-lg);
  border-radius: var(--radius-md);
}

.service-cta-box__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6125rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-sm);
}

.service-cta-box__h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--on-dark);
  margin: 0 0 var(--sp-sm) 0;
}

.service-cta-box__text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--on-dark-mute);
  margin: 0 0 var(--sp-md) 0;
}

.service-cta-box .btn-light {
  width: 100%;
  justify-content: center;
}

/* Mobile: fixed bottom bar for CTA */
@media (max-width: 1023px) {
  .service-cta-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--ink-900);
    padding: 12px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-sm);
    box-shadow: 0 -2px 12px rgba(9,20,40,0.18);
  }
  .service-cta-mobile-bar__text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--on-dark);
    flex: 1;
  }
  body { padding-bottom: 72px; }
}
@media (min-width: 1024px) {
  .service-cta-mobile-bar { display: none; }
}


/* ================================================================
   DIRECTION B EXTENSIONS — Reviews, Meridian Hero, Parallax, Footer
   ================================================================ */

/* ----------------------------------------------------------------
   A. PARALLAX HELPER (.section-fixed-bg)
   ---------------------------------------------------------------- */
.section-fixed-bg {
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
@media (min-width: 1024px) and (hover: hover) {
  .section-fixed-bg { background-attachment: fixed; }
}


/* ----------------------------------------------------------------
   B. FOOTER WORDMARK (text-variant, dunkler Hintergrund)
   ---------------------------------------------------------------- */
.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity var(--dur-fast) var(--ease);
}
.footer-wordmark:hover,
.footer-wordmark:focus-visible {
  opacity: 0.7;
  outline: none;
}
.footer-wordmark__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  color: var(--on-dark);
  text-transform: uppercase;
}
.footer-wordmark__sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  margin-left: 0;
  font-weight: 400;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  line-height: 1;
}


/* ----------------------------------------------------------------
   C. CTA-NOTICE italic
   ---------------------------------------------------------------- */
.cta-notice { font-style: italic; }


/* ----------------------------------------------------------------
   D. REVIEWS-SEKTION (dunkel, Karussell)
   ---------------------------------------------------------------- */
.section-reviews {
  background-color: var(--ink-900);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

/* Meridian-Ringe im Hintergrund */
.section-reviews::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow:
    0 0 0 55px  rgba(255,255,255,0.04),
    0 0 0 110px rgba(255,255,255,0.03),
    0 0 0 165px rgba(255,255,255,0.025),
    0 0 0 220px rgba(255,255,255,0.018),
    0 0 0 275px rgba(255,255,255,0.012),
    0 0 0 330px rgba(255,255,255,0.008);
  pointer-events: none;
}

.reviews-head {
  margin-bottom: var(--sp-xl);
}

.reviews-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-sm);
}

.reviews-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--on-dark);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

/* Karussell */
.reviews-carousel { position: relative; }

.reviews-card {
  display: none;
  flex-direction: column;
  gap: var(--sp-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 6vw, 4.5rem);
  min-height: 360px;
}
.reviews-card.is-active { display: flex; }

.reviews-card-source {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}

.reviews-card-ornament {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.55;
  color: var(--brass);
  opacity: 0.65;
  display: block;
  margin-bottom: calc(var(--sp-sm) * -1);
}

.reviews-card-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--on-dark);
  line-height: 1.52;
  margin: 0;
  flex: 1;
}

.reviews-card-author {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--on-dark-mute);
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.reviews-card-author strong {
  color: var(--on-dark);
  font-weight: 500;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-lg);
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.reviews-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.reviews-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.reviews-dot.is-active {
  background: var(--brass);
  transform: scale(1.3);
}

.reviews-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.reviews-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  color: var(--on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.reviews-btn:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}
.reviews-btn:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.reviews-all-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brass);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity var(--dur-fast) var(--ease);
}
.reviews-all-link:hover { opacity: 0.75; }

@media (max-width: 768px) {
  .section-reviews { padding: var(--sp-2xl) 0; }
  .section-reviews::before { width: 400px; height: 400px; top:-100px; right:-100px; }
  .reviews-card { min-height: auto; padding: var(--sp-lg) var(--sp-md); }
  .reviews-card-quote { font-size: 1.05rem; }
  .reviews-controls { justify-content: center; }
}


/* ----------------------------------------------------------------
   E. MERIDIAN HERO — Cluster-Hub & Money-Page
   ---------------------------------------------------------------- */
.hero-meridian {
  background-color: var(--ink-900);
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  min-height: 460px;
  display: flex;
  align-items: center;
}

/* Konzentrische Ringe oben rechts */
.hero-meridian__rings {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 0 0 50px  rgba(255,255,255,0.085),
    0 0 0 100px rgba(255,255,255,0.065),
    0 0 0 150px rgba(255,255,255,0.048),
    0 0 0 200px rgba(255,255,255,0.034),
    0 0 0 250px rgba(255,255,255,0.022),
    0 0 0 300px rgba(255,255,255,0.014),
    0 0 0 350px rgba(255,255,255,0.009),
    0 0 0 400px rgba(255,255,255,0.006),
    0 0 0 450px rgba(255,255,255,0.004),
    0 0 0 500px rgba(255,255,255,0.002);
  pointer-events: none;
}

/* Große Cluster-Zahl als Stilakzent */
.hero-meridian__accent-num {
  position: absolute;
  top: -0.1em;
  right: -0.05em;
  font-family: var(--font-display);
  font-size: 320px;
  font-weight: 400;
  color: var(--brass);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero-meridian--money .hero-meridian__accent-num { font-size: 260px; }

.hero-meridian__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.hero-meridian--money .hero-meridian__inner { max-width: 1080px; }

.hero-meridian__breadcrumb {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  margin-bottom: var(--sp-md);
}

.hero-meridian__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-sm);
}

.hero-meridian__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--on-dark);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: var(--sp-lg);
}
.hero-meridian--money .hero-meridian__h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.hero-meridian__lead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-dark-mute);
  max-width: 640px;
  margin-bottom: var(--sp-xl);
}

.hero-meridian__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

@media (max-width: 768px) {
  .hero-meridian {
    padding: var(--sp-2xl) 0 var(--sp-xl);
    min-height: auto;
  }
  .hero-meridian__accent-num {
    font-size: 180px;
    opacity: 0.08;
  }
  .hero-meridian--money .hero-meridian__accent-num { font-size: 140px; }
  .hero-meridian__rings {
    width: 380px;
    height: 380px;
    top: -80px;
    right: -80px;
  }
  .hero-meridian__actions {
    flex-direction: column;
  }
  .hero-meridian__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================================================
   BANNER HERO — Leistungen / Für-wen / Wissen / Kontakt / FAQ / Blog
   Dark ink-900 background, concentric Meridian rings upper-right,
   no accent number. Simpler than cluster/money meridian.
   =================================================================== */
.hero-banner {
  position: relative;
  background: var(--ink-900);
  color: var(--on-dark);
  overflow: hidden;
  padding: 88px var(--gutter) 72px;
}
.hero-banner::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  box-shadow:
    0 0 0  44px rgba(255,255,255,0.04),
    0 0 0  88px rgba(255,255,255,0.03),
    0 0 0 140px rgba(255,255,255,0.025),
    0 0 0 200px rgba(255,255,255,0.018),
    0 0 0 270px rgba(255,255,255,0.012),
    0 0 0 350px rgba(255,255,255,0.008),
    0 0 0 440px rgba(255,255,255,0.005),
    0 0 0 540px rgba(255,255,255,0.003);
  pointer-events: none;
  z-index: 0;
}
.hero-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}
.hero-banner__breadcrumb {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--on-dark-mute);
  margin-bottom: var(--sp-md);
}
.hero-banner__breadcrumb a {
  color: var(--on-dark-mute);
  text-decoration: none;
}
.hero-banner__breadcrumb a:hover { color: var(--on-dark); }
.hero-banner__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-md);
}
.hero-banner__h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--on-dark);
  margin: 0 0 var(--sp-lg) 0;
}
.hero-banner__lead {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-dark-mute);
  max-width: 680px;
  margin: 0;
}
@media (max-width: 768px) {
  .hero-banner { padding: 56px var(--gutter) 48px; }
  .hero-banner__h1 { font-size: 2.25rem; }
}

/* ===================================================================
   KONTAKTFORMULAR — Input / Radio / Textarea Sichtbarkeit & Styling
   Betrifft: .form-input/.kx-input, .form-select/.kx-select,
   .form-textarea/.kx-textarea, .form-radio-item/.kx-radio
   =================================================================== */

/* Outer wrapper */
.form-page {
  padding-block: var(--sp-2xl);
  background: var(--surface-alt);
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-xl);
  align-items: start;
}
@media (max-width: 960px) {
  .form-layout { grid-template-columns: 1fr; }
}

/* Form card */
.form-card {
  background: var(--surface);
  border: 1px solid var(--ink-line);
  padding: 56px;
  border-radius: var(--radius-md);
}
@media (max-width: 768px) {
  .form-card { padding: 32px 20px; }
}

/* Section headings inside form */
.form-section-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: var(--sp-xl) 0 var(--sp-sm);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--ink-line);
}
.form-section-title:first-child { margin-top: 0; }

/* Labels */
.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.form-label .optional {
  font-weight: 400;
  color: var(--ink-400);
}

/* Inputs, Selects */
.form-input,
.kx-input,
.form-select,
.kx-select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--ink-line);
  background: var(--surface);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-900);
  border-radius: 2px;
  transition: border-color var(--dur-fast) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-select,
.kx-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23475569' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Textarea */
.form-textarea,
.kx-textarea {
  width: 100%;
  height: auto;
  min-height: 140px;
  padding: 14px 16px;
  border: 1px solid var(--ink-line);
  background: var(--surface);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-900);
  border-radius: 2px;
  resize: vertical;
  transition: border-color var(--dur-fast) var(--ease);
}

/* Placeholders */
.form-input::placeholder, .kx-input::placeholder,
.form-textarea::placeholder, .kx-textarea::placeholder { color: var(--ink-400); }

/* Focus rings */
.form-input:focus, .kx-input:focus,
.form-select:focus, .kx-select:focus,
.form-textarea:focus, .kx-textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(184, 136, 79, 0.12);
}

/* Radio grid */
.form-radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 600px) {
  .form-radio-grid { grid-template-columns: 1fr; }
}

/* Radio card labels */
.form-radio-item,
.kx-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--ink-line);
  background: var(--surface);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.875rem;
  line-height: 1.4;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  border-radius: 2px;
}
.form-radio-item:hover, .kx-radio:hover { border-color: var(--ink-400); }
.form-radio-item input[type="radio"],
.kx-radio input[type="radio"] { accent-color: var(--brass); flex-shrink: 0; }
.form-radio-item:has(input:checked),
.kx-radio:has(input:checked) { border-color: var(--brass); background: rgba(184, 136, 79, 0.04); }

/* Checkbox list */
.form-checkbox-list { display: flex; flex-direction: column; gap: var(--sp-sm); }
.form-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--ink-700);
  line-height: 1.5;
  cursor: pointer;
}
.form-checkbox-item input[type="checkbox"] { accent-color: var(--brass); flex-shrink: 0; margin-top: 3px; }

/* Upload placeholder */
.form-upload-placeholder {
  border: 1px dashed var(--ink-line);
  padding: var(--sp-md) var(--sp-lg);
  font-size: 0.875rem;
  color: var(--ink-500);
  border-radius: 2px;
  margin-block: var(--sp-md);
}
.form-upload-placeholder p { margin: 0 0 4px; }
.form-upload-placeholder strong { color: var(--ink-700); font-weight: 500; }

/* Section divider */
.form-section-divider { border: none; border-top: 1px solid var(--ink-line); margin-block: var(--sp-xl); }

/* Submit row */
.form-submit-row {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  margin-top: var(--sp-xl);
}
.form-submit-note { font-style: italic; font-size: 0.8125rem; color: var(--ink-500); margin: 0; }

/* Form groups */
.form-group { margin-bottom: var(--sp-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Sidebar */
.form-sidebar { position: sticky; top: 32px; display: flex; flex-direction: column; gap: var(--sp-lg); }
.form-sidebar-photo img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center;
  display: block; border-radius: var(--radius-md);
}
.form-trust-card {
  border: 1px solid var(--ink-line);
  background: var(--surface);
  padding: var(--sp-lg);
  border-radius: var(--radius-md);
}
.form-trust-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 var(--sp-sm);
}
.form-trust-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.form-trust-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8125rem; color: var(--ink-700); line-height: 1.5; }
.form-trust-icon::before { content: '—'; color: var(--brass); font-weight: 600; }

/* ===================================================================
   KONTAKT PAGE — Redesign (grid, sidebar, map)
   =================================================================== */

.kontakt-page-body {
  padding-top: var(--sp-2xl);
  background: var(--surface-alt);
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
}

.kontakt-sidebar {
  position: sticky;
  top: calc(72px + 24px);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.kontakt-sb-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.kontakt-sb-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.kontakt-sb-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: rgba(11, 21, 35, 0.6);
  font-family: var(--font-mono);
  font-size: 0.575rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.kontakt-sb-address {
  background: var(--ink-900);
  padding: var(--sp-lg) var(--sp-xl);
}
.kontakt-sb-address-eb {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.575rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-xs);
}
.kontakt-sb-address-firm {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--on-dark);
  margin: 0 0 2px;
}
.kontakt-sb-address-block {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--on-dark-muted);
  margin: 0 0 var(--sp-md);
}
.kontakt-sb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-md);
}
.kontakt-sb-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kontakt-sb-contact-key {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.kontakt-sb-contact-val {
  font-size: 0.8125rem;
  color: var(--on-dark);
  text-decoration: none;
  word-break: break-all;
}
a.kontakt-sb-contact-val:hover { color: var(--brass); }

/* Kontakt SVG Map */
.kontakt-map-wrap {
  margin-top: 56px;
  padding-bottom: var(--sp-2xl);
}
.kontakt-map-card {
  border: 1px solid var(--ink-line);
  padding: 32px;
  background: var(--surface);
}
.kontakt-map-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 16px;
}
.kontakt-map-svg {
  width: 100%;
  height: auto;
  display: block;
}
.kontakt-map-caption {
  font-size: 0.875rem;
  color: var(--ink-500);
  margin: 16px 0 0;
}

/* ===================================================================
   ERFAHRUNG & MANDATE PAGE
   =================================================================== */

.em-reviews-section {
  padding-block: var(--sp-2xl);
  background: var(--surface);
}
.em-mandate-section {
  padding-block: var(--sp-2xl);
  background: var(--surface-alt);
}
.em-section-header { margin-bottom: var(--sp-xl); }
.em-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-xs);
}
.em-section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 var(--sp-sm);
}
.em-section-lead {
  font-size: 0.975rem;
  color: var(--ink-500);
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

/* Filter pills */
.em-filter-pills {
  display: flex;
  gap: 8px;
  margin-bottom: var(--sp-xl);
  flex-wrap: wrap;
}
.em-filter-pill {
  padding: 8px 20px;
  border: 1px solid var(--ink-line);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.675rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.em-filter-pill:hover { border-color: var(--ink-400); color: var(--ink-700); }
.em-filter-pill.is-active {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--on-dark);
}

/* Reviews grid */
.em-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}
@media (max-width: 768px) {
  .em-reviews-grid { grid-template-columns: 1fr; }
}
.em-review-card {
  border: 1px solid var(--ink-line);
  background: var(--surface);
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.em-review-card.is-hidden { display: none; }
.em-review-source {
  font-family: var(--font-mono);
  font-size: 0.575rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.em-review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-900);
  margin: 0;
  quotes: none;
}
.em-review-name {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink-900);
  margin: 0;
}
.em-review-role {
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin: 0;
}

/* Mandate list */
.em-mandate-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.em-mandate-item {
  display: grid;
  grid-template-columns: 160px 1fr 60px;
  gap: var(--sp-lg);
  align-items: baseline;
  padding-block: var(--sp-lg);
  border-top: 1px solid var(--ink-line);
}
.em-mandate-item:last-child { border-bottom: 1px solid var(--ink-line); }
@media (max-width: 768px) {
  .em-mandate-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.em-mandate-domain {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}
.em-mandate-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
}
.em-mandate-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-400);
  text-align: right;
}


/* ================================================================
   PHASE F — ADDITIVE DESIGN-KOMPONENTEN (2026-05-28)
   Alle Sektionen unterhalb sind additiv — kein bestehender
   Selektor wird überschrieben oder gelöscht.
   ================================================================ */

/* ----------------------------------------------------------------
   F.1 — SUMMARY BOX / TL;DR
   Eyebrow „Auf einen Blick", 3 px Brass-Border links,
   Surface-Hintergrund, max-width wie .service-prose (720 px).
   Platziertung: direkt nach Hero, vor .service-body.
   ---------------------------------------------------------------- */
.summary-box {
  max-width: 720px;
  margin: var(--sp-xl) auto var(--sp-lg);
  padding: var(--sp-md) var(--sp-lg);
  background-color: var(--surface-alt);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius-sm);
}

.summary-box__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-sm);
}

.summary-box__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
}

@media (max-width: 768px) {
  .summary-box {
    margin-inline: var(--gutter);
    padding: var(--sp-sm) var(--sp-md);
  }
}


/* ----------------------------------------------------------------
   F.2a — FAQ KATEGORIE-SUB-HEADING
   Nur für FAQ-Hub (W3) mit vielen Kategorien.
   Optisch wie .eyebrow + 1 px Border-Bottom.
   ---------------------------------------------------------------- */
.faq-category {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-brand-light);
  padding-bottom: var(--sp-xs);
  border-bottom: 1px solid var(--c-border);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-md);
}


/* ----------------------------------------------------------------
   F.3a — TOC-BOX (Alias für bestehende .page-toc-* Struktur)
   Volle Implementierung existiert bereits als Section 36
   (.page-toc-mobile + .page-toc-sidebar). Dieser Selector
   ist ein CSS-Alias für externe Referenz / Validierung.
   ---------------------------------------------------------------- */
.toc-box {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.6;
}

.toc-box__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-sm);
}

.toc-box ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}

.toc-box li {
  counter-increment: toc-counter;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--ink-line-soft);
}

.toc-box li::before {
  content: counter(toc-counter, decimal-leading-zero) " ";
  color: var(--brass);
  font-weight: 500;
  margin-right: 0.4em;
}

.toc-box a {
  color: var(--ink-700);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.toc-box a:hover,
.toc-box a.is-active {
  color: var(--brass);
}

.toc-box a.is-active {
  border-left: 2px solid var(--brass);
  padding-left: 0.4em;
}


/* ----------------------------------------------------------------
   F.3b — PULL-QUOTE
   Newsreader italic, 3 px Brass-Vertical-Bar links.
   Kein Hintergrund. Setzt generisches blockquote-Reset voraus.
   ---------------------------------------------------------------- */
.pull-quote {
  border-left: 3px solid var(--brass);
  padding: var(--sp-sm) var(--sp-md);
  margin: var(--sp-lg) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--ink-700);
  background: none;
}

.pull-quote p {
  margin: 0;
}

@media (max-width: 768px) {
  .pull-quote {
    font-size: 1.2rem;
  }
}


/* ----------------------------------------------------------------
   F.3c — INLINE CTA BAR
   Schmaler Block mit Surface-Hintergrund + Brass-Border-Top.
   Inhalt (Headline + Button) wird im Body-Content-Chat gesetzt.
   ---------------------------------------------------------------- */
.inline-cta-bar {
  background-color: var(--surface-alt);
  border-top: 2px solid var(--brass);
  border-radius: var(--radius-sm);
  padding: var(--sp-md) var(--sp-lg);
  margin: var(--sp-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.inline-cta-bar__headline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-900);
  margin: 0;
}

@media (max-width: 640px) {
  .inline-cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ----------------------------------------------------------------
   F.5 — AUTHOR BOX META (Aktualisierungsdatum)
   Sub-Element von .author-box. Mono 0.78 rem, Letter-Spacing.
   KEINE „rechtlich geprüft"-Aussage — nur Datum.
   ---------------------------------------------------------------- */
.author-box-meta {
  margin-top: var(--sp-xs);
}

.author-box-meta time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  display: block;
}


/* ----------------------------------------------------------------
   F.6a — DATA TABLE
   1 px --c-border, kein Schatten, dezenter Brass-Hover.
   th: Mono uppercase 0.78 rem, 2 px Border-Bottom.
   td: Plex Sans 0.92 rem, padding 12/16.
   Mobile: .data-table--scroll (horizontaler Scroll) /
           .data-table--stack (Card-Umbruch via data-label).
   ---------------------------------------------------------------- */
.data-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-block: var(--sp-lg);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.data-table th {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-700);
  text-align: left;
  padding: 10px 16px;
  border-bottom: 2px solid var(--c-brand-light);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  color: var(--ink-700);
  line-height: 1.5;
  vertical-align: top;
}

.data-table tbody tr:hover td {
  background-color: rgba(184, 136, 79, 0.04);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* Scroll variant: fade-edge indicator */
.data-table-wrap--scroll {
  position: relative;
}

.data-table-wrap--scroll::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--surface));
  pointer-events: none;
}

/* Stack variant: mobile card layout */
@media (max-width: 600px) {
  .data-table--stack thead {
    display: none;
  }

  .data-table--stack tbody,
  .data-table--stack tr {
    display: block;
  }

  .data-table--stack td {
    display: flex;
    gap: var(--sp-sm);
    border-bottom: none;
    padding: 6px 0;
  }

  .data-table--stack td::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    min-width: 100px;
    flex-shrink: 0;
  }

  .data-table--stack tr {
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: var(--sp-sm) var(--sp-md);
    margin-bottom: var(--sp-sm);
  }
}


/* ----------------------------------------------------------------
   F.6b — HOWTO STEPS
   ol.howto-steps: 2-Spalten-Grid (60 px Nummer + 1fr Inhalt).
   Nummer Newsreader 1.75 rem Brass, Trennlinien 1 px --c-border.
   ---------------------------------------------------------------- */
.howto-steps {
  list-style: none;
  padding: 0;
  margin: var(--sp-lg) 0;
  counter-reset: none;
}

.howto-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-md);
  align-items: start;
  padding-block: var(--sp-md);
  border-top: 1px solid var(--c-border);
}

.howto-steps li:last-child {
  border-bottom: 1px solid var(--c-border);
}

.howto-step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--brass);
  line-height: 1;
  padding-top: 0.2em;
}

.howto-step-body strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: var(--sp-xs);
}

.howto-step-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
}

@media (max-width: 480px) {
  .howto-steps li {
    grid-template-columns: 40px 1fr;
  }
  .howto-step-num {
    font-size: 1.3rem;
  }
}


/* ----------------------------------------------------------------
   F.10 — LANG-BTN DISABLED STATE
   Für Seiten ohne Sprach-Pendant (z. B. C4.1 DE-only).
   JS setzt .lang-btn--disabled via data-en-pendant="" Check.
   ---------------------------------------------------------------- */
.lang-btn--disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

.lang-btn--disabled:hover {
  opacity: 0.38;
}


/* ----------------------------------------------------------------
   F.11 — GOOGLE REVIEWS WIDGET SLOT
   Primär: K5 /kanzlei/erfahrung-mandate/
   Sekundär: S0 Startseite (kompaktes Trust-Badge)
   KEIN AggregateRating-Schema im Markup.
   ---------------------------------------------------------------- */
.reviews-widget-slot {
  background-color: var(--surface-alt);
  padding: var(--sp-xl) var(--gutter);
  max-width: var(--max-w);
  margin-inline: auto;
}

.reviews-widget-slot__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-sm);
}

.reviews-widget-slot__headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 var(--sp-lg);
}

/* Widget embed area — plugin renders here */
.reviews-widget-slot__embed {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Compact trust-badge variant for Startseite */
.reviews-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-700);
}

.reviews-trust-badge__stars {
  color: var(--brass);
  letter-spacing: 0.05em;
}

.reviews-trust-badge__count {
  color: var(--c-text-muted);
}


/* ---- End of Phase F additions ---- */

/* Reviews CTA – Google-Bewertungslink unter dem Grid */
.em-reviews-cta {
	grid-column: 1 / -1;
	text-align: center;
	margin-top: var(--sp-xl);
	padding-top: var(--sp-lg);
	border-top: 1px solid var(--ink-line);
}
.em-reviews-cta-note {
	font-size: 0.8125rem;
	color: var(--ink-500);
	margin: 0 0 var(--sp-sm) 0;
}
.em-reviews-cta-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brass);
	text-decoration: none;
	transition: color 0.2s ease, gap 0.2s ease;
}
.em-reviews-cta-link:hover {
	color: var(--brass-deep);
	gap: 0.65em;
}
.em-reviews-cta-link,
.em-reviews-cta-link:link,
.em-reviews-cta-link:visited {
	border: 0;
	outline: 0;
	box-shadow: none;
	background: none;
	padding: 0;
}
.em-reviews-cta-link:focus-visible {
	outline: 2px solid var(--brass);
	outline-offset: 3px;
}
