/* ═══════════════════════════════════════════════════════════
   Lokal gehostete Schriftarten (DSGVO-konform, statt Google Fonts)
   Dateien liegen unter: /assets/fonts/
   Quelle: google-webfonts-helper (gwfh.mranftl.com)
   ═══════════════════════════════════════════════════════════ */

/* ── CORMORANT GARAMOND ── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond/cormorant-garamond-v22-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond/cormorant-garamond-v22-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond/cormorant-garamond-v22-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond/cormorant-garamond-v22-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond/cormorant-garamond-v22-latin_latin-ext-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond/cormorant-garamond-v22-latin_latin-ext-500italic.woff2') format('woff2');
}

/* ── INTER TIGHT ── */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/inter-tight/inter-tight-v7-latin_latin-ext-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-tight/inter-tight-v7-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-tight/inter-tight-v7-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-tight/inter-tight-v7-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter-tight/inter-tight-v7-latin_latin-ext-700.woff2') format('woff2');
}

/* ── JETBRAINS MONO ── */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/jetbrains-mono/jetbrains-mono-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/jetbrains-mono/jetbrains-mono-v20-latin-500.woff2') format('woff2');
}

:root {
    /* Marke — aus dem Logo extrahiert */
    --emerald-900: #1f4a3a;
    --emerald-800: #2b6350;
    --emerald-700: #3a8168;
    --emerald-600: #489d80;
    --emerald-500: #4ca184;
    --emerald-400: #86dbbe;
    --emerald-300: #a3e4ce;
    --emerald-100: #e6f5ee;
    --emerald-50:  #f1f9f5;

    /* Neutral */
    --ink:         #0d0d0d;
    --ink-soft:    #1a1a1a;
    --ink-80:      #2a2a2a;
    --ink-60:      #4a4a4a;
    --ink-40:      #6a6a6a;
    --ink-30:      #8a8a8a;

    /* Paper */
    --paper:       #fafaf7;
    --paper-warm:  #f5f3ed;
    --cream:       #f0ede3;
    --off-white:   #ffffff;

    --rule:        rgba(13, 13, 13, 0.12);
    --rule-soft:   rgba(13, 13, 13, 0.06);
    --rule-emerald:rgba(72, 157, 128, 0.25);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  /* ========== TOP BAR ========== */
  .topbar {
    background: var(--ink);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 10px 0;
    border-bottom: 1px solid rgba(134, 219, 190, 0.15);
  }
  .topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .topbar-left { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
  .topbar-item { display: flex; align-items: center; gap: 8px; }
  .topbar-item svg { width: 13px; height: 13px; stroke: var(--emerald-400); }
  .topbar-item a { color: inherit; text-decoration: none; }
  .topbar-item a:hover { color: var(--emerald-400); }
  .topbar-right a {
    color: var(--emerald-400);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 11px;
  }
  .topbar-right a:hover { color: white; }

  @media (max-width: 860px) {
    .topbar-inner { padding: 0 20px; }
    .topbar-left .topbar-item:nth-child(3) { display: none; }
  }

  /* ========== NAV ========== */
  nav.main {
    background: var(--off-white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--rule-soft);
    transition: box-shadow 0.3s;
  }
  nav.main.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

  .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
  }

  .logo-mark-svg {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
  .logo-img {
    height: 68px;
    width: auto;
    flex-shrink: 0;
    display: block;
  }
  .logo-img-footer {
    height: 44px;
    width: auto;
    flex-shrink: 0;
    display: block;
  }
  .logo-wordmark {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--ink);
    line-height: 1;
  }
  .logo-sub {
    font-size: 9.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-40);
    font-weight: 500;
    margin-top: 5px;
    line-height: 1;
  }

  .nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
    list-style: none;
  }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
  }
  .nav-links > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-600);
    transition: width 0.3s ease;
  }
  .nav-links > li > a:hover::after { width: 100%; }
  .nav-links > li > a:hover { color: var(--emerald-700); }
  .nav-links > li > a .caret {
    font-size: 9px;
    transition: transform 0.25s;
    margin-top: 1px;
  }
  .nav-links > li:hover > a .caret { transform: rotate(180deg); }

  .dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: -20px;
    min-width: 280px;
    background: var(--off-white);
    border: 1px solid var(--rule);
    border-top: 3px solid var(--emerald-600);
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    list-style: none;
  }
  .nav-links > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown li a {
    display: block;
    padding: 10px 24px;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.15s;
    border-left: 2px solid transparent;
  }
  .dropdown li a:hover {
    background: var(--emerald-50);
    color: var(--emerald-800);
    border-left-color: var(--emerald-600);
    padding-left: 28px;
  }

  .cta-nav {
    background: var(--ink);
    color: white;
    padding: 13px 26px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .cta-nav svg { width: 13px; height: 13px; transition: transform 0.3s; }
  .cta-nav:hover { background: var(--emerald-700); border-color: var(--emerald-700); }
  .cta-nav:hover svg { transform: translateX(4px); }

  .mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 2px;
  }

  @media (max-width: 1100px) {
    .nav-links, .cta-nav { display: none; }
    .mobile-toggle { display: block; }
    .nav-inner { padding: 16px 20px; }
  }

  /* ========== HERO ========== */
  .hero {
    background: var(--paper);
    position: relative;
    overflow: hidden;
    padding: 80px 40px 100px;
    border-bottom: 1px solid var(--rule-soft);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 120%;
    background:
      radial-gradient(ellipse at top right, rgba(72, 157, 128, 0.08) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(13, 13, 13, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(13, 13, 13, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--emerald-700);
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 36px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 42px;
    height: 1.5px;
    background: var(--emerald-600);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 7.5vw, 104px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.022em;
    margin-bottom: 32px;
    color: var(--ink);
  }
  .hero h1 .accent {
    color: var(--emerald-700);
    font-style: italic;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-stroke: 0.4px transparent;
  }
  .hero h1 .rule-inline {
    display: inline-block;
    width: 100px;
    height: 3px;
    background: var(--emerald-600);
    vertical-align: middle;
    margin: 0 20px 20px 0;
  }

  .hero-lede {
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink-60);
    max-width: 580px;
    margin-bottom: 48px;
    font-weight: 400;
  }

  .hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }

  .btn {
    padding: 16px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
  }
  .btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
  .btn:hover svg { transform: translateX(4px); }

  .btn-primary {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
  }
  .btn-primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
  }

  .btn-secondary {
    background: var(--emerald-600);
    color: white;
    border-color: var(--emerald-600);
  }
  .btn-secondary:hover {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
  }

  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }
  .btn-ghost:hover {
    background: var(--ink);
    color: white;
  }

  .hero-trust {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-60);
    font-weight: 500;
  }
  .trust-item svg { width: 18px; height: 18px; color: var(--emerald-600); flex-shrink: 0; }

  .hero-card {
    background: var(--off-white);
    border: 1px solid var(--rule);
    padding: 40px;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 20px 60px rgba(13, 13, 13, 0.04);
  }
  .hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    background: var(--emerald-600);
  }

  .card-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--ink);
  }
  .card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--rule-soft);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 500;
    color: var(--emerald-700);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 12px;
    color: var(--ink-40);
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  .rating-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
  }
  .star { color: var(--emerald-600); font-size: 18px; }

  @media (max-width: 960px) {
    .hero { padding: 60px 20px 80px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero h1 .rule-inline { display: none; }
  }

  /* ========== SECTION STRUCTURE ========== */
  section {
    padding: 120px 40px;
    position: relative;
  }
  .section-inner { max-width: 1400px; margin: 0 auto; }
  .section-header { max-width: 900px; margin-bottom: 80px; }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--emerald-700);
    font-weight: 600;
    margin-bottom: 24px;
  }
  .section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--emerald-600);
  }
  .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .section-header h2 em {
    color: var(--emerald-700);
    font-style: italic;
  }
  .section-header .lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-60);
    max-width: 700px;
    font-weight: 400;
  }

  @media (max-width: 768px) {
    section { padding: 80px 20px; }
    .section-header { margin-bottom: 56px; }
  }

  /* ========== AUDIENCE ========== */
  .audience {
    background: var(--paper-warm);
    border-top: 1px solid var(--rule-soft);
    border-bottom: 1px solid var(--rule-soft);
  }
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  .audience-card {
    background: var(--paper-warm);
    padding: 56px 40px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 360px;
  }
  .audience-card:hover { background: var(--ink); color: white; }
  .audience-card:hover .audience-num { color: var(--emerald-400); }
  .audience-card:hover .audience-title { color: white; }
  .audience-card:hover .audience-desc { color: rgba(255,255,255,0.8); }
  .audience-card:hover .audience-arrow { color: var(--emerald-400); }
  .audience-card:hover .audience-arrow svg { transform: translateX(8px); }

  .audience-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--emerald-700);
    margin-bottom: 40px;
    letter-spacing: 0.1em;
    transition: color 0.3s;
    font-weight: 500;
  }
  .audience-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--ink);
    transition: color 0.3s;
  }
  .audience-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-60);
    margin-bottom: 32px;
    flex-grow: 1;
    transition: color 0.3s;
  }
  .audience-arrow {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    margin-top: auto;
  }
  .audience-arrow svg { width: 14px; height: 14px; transition: transform 0.3s; }

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

  /* ========== EXPERTISE ========== */
  .expertise-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: end;
  }
  .expertise-claim {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--ink);
    font-style: italic;
  }
  .expertise-claim::first-letter {
    font-size: 64px;
    color: var(--emerald-600);
    float: left;
    line-height: 1;
    padding-right: 14px;
    padding-top: 4px;
    font-weight: 500;
  }

  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .practice {
    background: var(--off-white);
    padding: 44px 36px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--emerald-600);
  }
  .practice:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(13, 13, 13, 0.06);
  }

  .practice-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .practice-roman {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    line-height: 29px;
    font-style: italic;
    color: var(--emerald-600);
    flex-shrink: 0;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
  .practice h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    color: var(--ink);
  }
  .practice ul { list-style: none; }
  .practice ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-80);
  }
  .practice ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--emerald-600);
    font-weight: 500;
  }

  @media (max-width: 1100px) {
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-intro { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 700px) { .expertise-grid { grid-template-columns: 1fr; } }

  /* ========== METHODOLOGY ========== */
  .method {
    background: var(--ink);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .method::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
      radial-gradient(circle at 85% 15%, rgba(72, 157, 128, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 15% 85%, rgba(72, 157, 128, 0.08) 0%, transparent 50%);
  }
  .method .section-header h2 { color: white; }
  .method .section-header h2 em { color: var(--emerald-400); }
  .method .section-header .lede { color: rgba(255,255,255,0.7); }
  .method .section-eyebrow { color: var(--emerald-400); }
  .method .section-eyebrow::before { background: var(--emerald-400); }

  .method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
  }
  .method-step {
    border-top: 1px solid rgba(134, 219, 190, 0.3);
    padding-top: 32px;
    position: relative;
  }
  .method-step::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--emerald-400);
  }
  .method-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--emerald-400);
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  .method-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 14px;
    color: white;
  }
  .method-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
  }

  @media (max-width: 900px) { .method-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
  @media (max-width: 500px) { .method-grid { grid-template-columns: 1fr; } }

  /* ========== LAWYER ========== */
  .lawyer { background: var(--paper-warm); }
  .lawyer-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
  }

  /* Foto-Rahmen: feine Außenkontur + grüner Akzent oben */
  .lawyer-photo-frame {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(13, 13, 13, 0.12);
    background: var(--off-white);
  }
  /* Grüner Balken oben */
  .lawyer-photo-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 5px;
    background: var(--emerald-600);
    z-index: 3;
  }
  /* Dezenter innerer Rahmen für „Galerie"-Effekt */
  .lawyer-photo-frame::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    pointer-events: none;
    z-index: 2;
  }

  .lawyer-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .lawyer-photo-frame:hover img { transform: scale(1.03); }

  /* Namensplakette unten auf dem Foto */
  .lawyer-photo-nameplate {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 24px 32px;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.6) 70%, transparent 100%);
    color: white;
    z-index: 2;
    width: 100%;
  }
  .lawyer-photo-nameplate .np-eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--emerald-400);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .lawyer-photo-nameplate .np-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: white;
  }
  .lawyer-photo-nameplate .np-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    letter-spacing: 0.04em;
  }

  /* Waagen-Badge oben rechts als Markenakzent */
  .lawyer-photo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(13, 13, 13, 0.1);
  }
  .lawyer-photo-badge img {
    width: 32px;
    height: auto;
    display: block;
  }

  .lawyer-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 32px;
    letter-spacing: -0.012em;
  }
  .lawyer-body h2 em { color: var(--emerald-700); font-style: italic; }
  .lawyer-body > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-80);
    margin-bottom: 22px;
  }
  .lawyer-body > p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 500;
    float: left;
    line-height: 0.85;
    padding: 8px 14px 0 0;
    color: var(--emerald-600);
  }

  .credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--rule);
  }
  .credential {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .credential-icon {
    width: 38px;
    height: 38px;
    background: var(--emerald-50);
    color: var(--emerald-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 2px;
    border: 1px solid var(--rule-emerald);
  }
  .credential-icon svg { width: 18px; height: 18px; }
  .credential-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .credential-desc {
    font-size: 13px;
    color: var(--ink-60);
    line-height: 1.5;
  }

  @media (max-width: 900px) {
    .lawyer-inner { grid-template-columns: 1fr; gap: 48px; }
    .credentials { grid-template-columns: 1fr; }
  }

  /* ========== RECOGNITION / GÜTESIEGEL ========== */
  .recognition {
    background: var(--paper-warm);
    padding: 90px 40px;
    border-top: 1px solid var(--rule-soft);
    border-bottom: 1px solid var(--rule-soft);
  }

  .recognition-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
  }

  /* Das Siegel selbst — rund, ruhig, typografisch */
  .seal {
    position: relative;
    width: 260px;
    height: 260px;
    flex-shrink: 0;
  }

  /* Äußerer Ring — hier läuft der rotierende Text */
  .seal::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--rule-emerald);
    background: var(--paper);
  }

  .seal-ring {
    position: absolute;
    inset: 34px;  /* Raum für den rotierenden Text außen */
    border-radius: 50%;
    background: var(--off-white);
    border: 1.5px solid var(--emerald-600);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow:
      0 8px 24px rgba(13, 13, 13, 0.06),
      inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  }

  /* Dünner innerer Akzent-Ring */
  .seal-ring::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--rule-emerald);
    border-radius: 50%;
    pointer-events: none;
  }

  /* Rotierender Text auf dem äußeren Ring */
  .seal-rotating-text {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .seal-rotating-text svg {
    width: 100%;
    height: 100%;
    animation: sealRotate 40s linear infinite;
  }
  .seal-rotating-text text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    fill: var(--emerald-700);
    text-transform: uppercase;
  }
  @keyframes sealRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  @media (prefers-reduced-motion: reduce) {
    .seal-rotating-text svg { animation: none; }
  }

  .seal-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
    color: var(--emerald-600);
    font-size: 14px;
  }

  .seal-rating {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .seal-rating sup {
    font-size: 15px;
    color: var(--ink-40);
    font-weight: 400;
    margin-left: 2px;
  }

  .seal-divider {
    width: 36px;
    height: 1px;
    background: var(--emerald-600);
    margin: 10px 0 8px;
  }

  .seal-label {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emerald-700);
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
  }

  /* Begleittext rechts vom Siegel */
  .recognition-body .section-eyebrow { margin-bottom: 20px; }
  .recognition-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.012em;
  }
  .recognition-body h2 em {
    color: var(--emerald-700);
    font-style: italic;
  }
  .recognition-body p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-60);
    margin-bottom: 28px;
    max-width: 560px;
  }

  /* Kleine Fakt-Liste unter dem Text */
  .recognition-facts {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
  }
  .recognition-fact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .recognition-fact-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--emerald-700);
    line-height: 1;
  }
  .recognition-fact-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-40);
    font-weight: 600;
    line-height: 1.4;
    padding-top: 4px;
  }

  /* Link zu ProvenExpert-Quelle */
  .recognition-source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-60);
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
  }
  .recognition-source:hover {
    color: var(--emerald-700);
    border-bottom-color: var(--emerald-600);
  }
  .recognition-source svg { width: 12px; height: 12px; }

  @media (max-width: 900px) {
    .recognition { padding: 70px 20px; }
    .recognition-inner {
      grid-template-columns: 1fr;
      gap: 40px;
      justify-items: center;
      text-align: center;
    }
    .recognition-body p { margin-left: auto; margin-right: auto; }
    .recognition-facts { justify-content: center; }
  }
  @media (max-width: 500px) {
    .seal { width: 220px; height: 220px; }
    .seal-ring { inset: 28px; padding: 14px; }
    .seal-rating { font-size: 32px; }
    .seal-rotating-text text { font-size: 9px; letter-spacing: 0.22em; }
  }

  /* ========== INSIGHTS ========== */
  .insights { background: var(--paper); }
  .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .insight {
    background: var(--off-white);
    border: 1px solid var(--rule);
    padding: 40px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .insight::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 3px;
    background: var(--emerald-600);
    transition: width 0.4s ease;
  }
  .insight:hover {
    border-color: var(--emerald-300);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(13, 13, 13, 0.06);
  }
  .insight:hover::before { width: 100%; }

  .insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 24px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .insight-date { color: var(--ink-40); letter-spacing: 0.08em; font-weight: 500; }

  .insight h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .insight p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-60);
    margin-bottom: 28px;
    flex-grow: 1;
  }
  .insight-link {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
  }
  .insight-link svg { width: 12px; height: 12px; transition: transform 0.3s; }
  .insight:hover .insight-link { color: var(--emerald-700); }
  .insight:hover .insight-link svg { transform: translateX(4px); }

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

  /* ========== TESTIMONIAL ========== */
  .testimonial {
    background: var(--emerald-900);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(134, 219, 190, 0.15) 0%, transparent 50%);
  }
  .testimonial-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .quote-mark {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px;
    line-height: 1;
    color: var(--emerald-400);
    font-style: italic;
    margin: 0 0 24px;
    text-align: center;
  }
  .testimonial blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 48px;
    color: white;
    letter-spacing: -0.005em;
  }
  .testimonial blockquote::before {
    content: none;
  }
  .testimonial-source {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
  }
  .testimonial-rating .star { color: var(--emerald-400); font-size: 22px; }
  .testimonial-source-name {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-300);
    font-weight: 600;
  }
  .testimonial-source-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.05em;
  }

  /* ========== CTA ========== */
  .cta-section {
    background: var(--paper);
    padding: 100px 40px;
  }
  .cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .cta-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.012em;
  }
  .cta-left h2 em { color: var(--emerald-700); font-style: italic; }
  .cta-left p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-60);
    margin-bottom: 32px;
  }

  .contact-box {
    background: var(--ink);
    padding: 48px;
    border-radius: 2px;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .contact-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0;
    height: 4px;
    background: var(--emerald-600);
  }

  .contact-label {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--emerald-400);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 28px;
    display: block;
    color: white;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-value:hover { color: var(--emerald-400); }

  .contact-hours {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(134, 219, 190, 0.18);
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
  }
  .contact-hours strong {
    color: var(--emerald-400);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 10px;
  }

  @media (max-width: 900px) {
    .cta-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-box { padding: 32px; }
  }

  /* ========== FOOTER ========== */
  footer {
    background: var(--ink);
    color: white;
    padding: 80px 40px 40px;
    border-top: 4px solid var(--emerald-600);
  }
  .footer-inner { max-width: 1400px; margin: 0 auto; }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand .logo-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .footer-brand .logo-wordmark { color: white; font-size: 22px; }
  .footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    margin-top: 16px;
  }

  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emerald-400);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--emerald-400); }

  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
  }
  .footer-bottom a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.2s;
  }
  .footer-bottom a:hover { color: var(--emerald-400); }

  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
    footer { padding: 60px 20px 30px; }
  }

  /* ========== REVEAL ========== */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* =========================================================
     SUBPAGE-STYLES — für alle Unterseiten (Aktuelles, Beitrag,
     Kontakt, Textseiten). Wurden ergänzt, damit die Templates
     beitrag.php, kontakt.php, textseite.php, aktuelles.php
     konsistent mit dem Onepager-Design funktionieren.
     ========================================================= */

  /* ---------- SUBPAGE HEADER ---------- */
  .subpage-header {
    background: var(--paper-warm);
    padding: 100px 40px 80px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .subpage-header-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .breadcrumbs {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-40);
    margin-bottom: 28px;
    font-weight: 500;
  }
  .breadcrumbs a {
    color: var(--ink-40);
    text-decoration: none;
    transition: color 0.2s;
  }
  .breadcrumbs a:hover { color: var(--emerald-600); }
  .breadcrumbs .sep {
    margin: 0 10px;
    color: var(--ink-30);
  }
  .breadcrumbs .current {
    color: var(--ink-80);
    font-weight: 600;
  }
  .subpage-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-700);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .subpage-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin-bottom: 24px;
  }
  .subpage-header h1 em {
    color: var(--emerald-700);
    font-style: italic;
  }
  .subpage-lede {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-60);
    max-width: 700px;
  }

  @media (max-width: 768px) {
    .subpage-header { padding: 60px 20px 48px; }
  }

  /* ---------- CONTENT SECTION / GRID ---------- */
  .content-section {
    padding: 80px 40px 100px;
    background: var(--paper);
  }
  .content-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 900px) {
    .content-grid { grid-template-columns: 1fr; gap: 48px; }
    .content-section { padding: 60px 20px 80px; }
  }

  /* ---------- PROSE (Haupt-Artikeltext) ---------- */
  .prose {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-80);
    max-width: 720px;
  }
  .prose > *:first-child { margin-top: 0; }
  .prose > *:last-child { margin-bottom: 0; }

  .prose p {
    margin: 0 0 20px;
  }
  .prose h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin: 56px 0 20px;
    padding-top: 24px;
    border-top: 1px solid var(--rule-soft);
  }
  .prose h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .prose h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin: 36px 0 14px;
  }
  .prose h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin: 32px 0 10px;
  }
  .prose strong { color: var(--ink); font-weight: 600; }
  .prose em { font-style: italic; }
  .prose a {
    color: var(--emerald-700);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s;
  }
  .prose a:hover { color: var(--emerald-800); }

  .prose ul, .prose ol {
    margin: 0 0 24px;
    padding-left: 24px;
  }
  .prose li {
    margin-bottom: 8px;
  }
  .prose ul li { list-style-type: disc; }
  .prose ol li { list-style-type: decimal; }

  .prose blockquote {
    margin: 32px 0;
    padding: 16px 0 16px 28px;
    border-left: 3px solid var(--emerald-600);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
  }

  .prose hr {
    border: none;
    border-top: 1px solid var(--rule-soft);
    margin: 48px 0;
  }

  .prose code {
    background: var(--paper-warm);
    padding: 2px 6px;
    border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
  }

  .prose img {
    max-width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 2px;
  }

  /* Callout-Box (z.B. auf Kontaktseite für Hinweise) */
  .callout {
    background: var(--emerald-50);
    border-left: 3px solid var(--emerald-600);
    padding: 20px 24px;
    margin: 32px 0;
    border-radius: 2px;
  }
  .callout .callout-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emerald-800);
    font-weight: 700;
    margin-bottom: 8px;
  }
  .callout p { margin-bottom: 0; color: var(--ink-80); font-size: 15px; }

  /* ---------- SIDEBAR ---------- */
  .sidebar {
    position: sticky;
    top: 120px;
  }
  @media (max-width: 900px) {
    .sidebar { position: static; }
  }

  .sidebar-card {
    background: var(--paper-warm);
    padding: 32px 28px;
    border-radius: 2px;
    border-top: 3px solid var(--emerald-600);
  }
  .sidebar-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .sidebar-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-60);
    margin-bottom: 20px;
  }
  .sidebar-contact {
    padding: 16px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 20px;
  }
  .sidebar-contact .label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-40);
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 4px;
  }
  .sidebar-contact .label:first-child { margin-top: 0; }
  .sidebar-contact a {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.005em;
    transition: color 0.2s;
  }
  .sidebar-contact a:hover { color: var(--emerald-700); }

  /* ---------- KONTAKT-CTA (unten auf Beitragsseite) ---------- */
  .contact-cta {
    background: var(--ink);
    color: white;
    padding: 100px 40px;
    text-align: center;
  }
  .contact-cta-inner {
    max-width: 700px;
    margin: 0 auto;
  }
  .contact-cta .subpage-eyebrow {
    color: var(--emerald-400);
    margin-bottom: 20px;
  }
  .contact-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 500;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
  }
  .contact-cta h2 em {
    color: var(--emerald-400);
    font-style: italic;
  }
  .contact-cta p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
  }
  .contact-cta-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .contact-cta .btn-ghost {
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
  }
  .contact-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
  }

  @media (max-width: 768px) {
    .contact-cta { padding: 72px 20px; }
  }


  /* =========================================================
     PROVENEXPERT RATING im Footer
     ========================================================= */
  .footer-provenexpert {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }
  .footer-provenexpert a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-provenexpert a:hover {
    color: var(--emerald-400);
  }
  /* ProvenExpert eigene Klassen — gegen helle/dunkle Vererbungsprobleme absichern */
  .footer-provenexpert .pe-aggregate-rating,
  .footer-provenexpert .pe-text {
    color: rgba(255, 255, 255, 0.85) !important;
  }
  .footer-provenexpert svg {
    max-width: 100%;
    height: auto;
  }
/* ============================================
   404 / Error Page
   ============================================ */

.error-page {
  background: #fff;
}

/* --- Hero --- */

.error-hero {
  padding: 6rem 0 4rem;
  text-align: center;
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
}

.error-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.error-eyebrow .eyebrow-stripe {
  display: inline-block;
  width: 3rem;
  height: 2px;
  background: #34d399; /* Emerald-400 */
}

.error-eyebrow .eyebrow-text {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #34d399;
}

.error-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #0f172a;
  margin: 0 0 1.5rem;
}

.error-lead {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #475569;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Buttons – falls Ihre bestehenden .btn-Klassen anders heißen,
   diese Regeln entfernen und stattdessen die globalen Klassen nutzen */

.error-actions .btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.error-actions .btn-primary {
  background: #0f172a;
  color: #fff;
}

.error-actions .btn-primary:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.error-actions .btn-secondary {
  background: transparent;
  color: #0f172a;
  border: 2px solid #0f172a;
  padding: calc(0.875rem - 2px) calc(2rem - 2px);
}

.error-actions .btn-secondary:hover {
  background: #0f172a;
  color: #fff;
}

/* --- Suggestions --- */

.error-suggestions {
  padding: 5rem 0 6rem;
}

.suggestions-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  margin: 0 0 3rem;
}

.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.suggestion-card {
  position: relative;
  display: block;
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  overflow: hidden;
}

.suggestion-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #34d399;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}

.suggestion-card:hover {
  border-color: #34d399;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.suggestion-card:hover::before {
  transform: scaleY(1);
}

.suggestion-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.75rem;
}

.suggestion-card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0 0 1.5rem;
}

.suggestion-card-arrow {
  display: inline-block;
  font-size: 1.25rem;
  color: #34d399;
  transition: transform 0.2s ease;
}

.suggestion-card:hover .suggestion-card-arrow {
  transform: translateX(4px);
}

/* --- Responsive --- */

@media (max-width: 640px) {
  .error-hero {
    padding: 4rem 0 3rem;
  }

  .error-suggestions {
    padding: 3rem 0 4rem;
  }

  .error-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 20rem;
    margin: 0 auto;
  }

  .error-actions .btn {
    text-align: center;
  }
}