    /* ===== LOKAL GEHOSTETE SCHRIFTEN (DSGVO-konform) =====
       Inter und Source Serif 4, beide direkt vom Server geladen.
       Keine Verbindung zu Google-Servern, keine IP-Übermittlung. */
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('../fonts/inter-400-latin.woff2') format('woff2'),
           url('../fonts/inter-400-latin-ext.woff2') format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 500;
      font-display: swap;
      src: url('../fonts/inter-500-latin.woff2') format('woff2'),
           url('../fonts/inter-500-latin-ext.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 600;
      font-display: swap;
      src: url('../fonts/inter-600-latin.woff2') format('woff2'),
           url('../fonts/inter-600-latin-ext.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url('../fonts/inter-700-latin.woff2') format('woff2'),
           url('../fonts/inter-700-latin-ext.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Source Serif 4';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('../fonts/source-serif-4-400-latin.woff2') format('woff2'),
           url('../fonts/source-serif-4-400-latin-ext.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Source Serif 4';
      font-style: normal;
      font-weight: 600;
      font-display: swap;
      src: url('../fonts/source-serif-4-600-latin.woff2') format('woff2'),
           url('../fonts/source-serif-4-600-latin-ext.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Source Serif 4';
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url('../fonts/source-serif-4-700-latin.woff2') format('woff2'),
           url('../fonts/source-serif-4-700-latin-ext.woff2') format('woff2');
    }

    :root {
      --ink: #0a0a08;
      --body: #2a2a28;
      --muted: #6a6a66;
      --line: #d8d8d2;
      --line-strong: #2a2a28;
      --bg: #fafaf7;
      --bg-alt: #f1f0eb;
      --accent: #5a7a4a;             /* Grünton aus index.html */
      --accent-hover: #46613a;
      --accent-light: #cfe1bd;
      --accent-soft: #f5f7f2;

      --shadow-sm: 0 1px 2px rgba(10,10,8,0.04), 0 2px 8px rgba(10,10,8,0.04);
      --shadow-md: 0 4px 16px rgba(10,10,8,0.08);
      --shadow-lg: 0 12px 40px rgba(10,10,8,0.12);

      --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
      --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;

      --container: 1180px;
      --radius: 2px;
      --ease: cubic-bezier(0.4, 0, 0.2, 1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      color: var(--body);
      background: var(--bg);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      /* Defensiv: sehr lange Komposita brechen statt seitenweiten Horizontal-Scroll zu erzeugen */
      overflow-wrap: break-word;
    }
    img { max-width: 100%; display: block; }
    a { color: var(--ink); transition: color 0.2s var(--ease); }
    a:hover { color: var(--accent); }
    ::selection { background: var(--ink); color: var(--bg); }

    .container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

    /* ===== TYPO (Inter, bold Headlines) ===== */
    h1, h2, h3, h4 {
      font-family: var(--font-serif);
      color: var(--ink);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.01em;
    }
    h1 { font-size: clamp(40px, 5.6vw, 60px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
    h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; letter-spacing: -0.01em; }
    h3 { font-size: 22px; font-weight: 600; }
    h4 { font-size: 14px; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; color: var(--muted); }
    p { font-size: 17px; line-height: 1.7; color: var(--body); }
    p + p { margin-top: 16px; }

    /* Silbentrennung für deutsche Lesetexte */
    .intro p, .ueber-text p, .leistung-body p, .faq-item p {
      hyphens: auto;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
    }

    .eyebrow {
      display: inline-block;
      font-size: 15px; font-weight: 600;
      color: var(--accent-hover); /* WCAG-AA: dunkleres Grün, hält auch auf bg-alt ≥ 4,5:1 (accent war dort nur 4,26:1) */
      letter-spacing: 0;
      margin-bottom: 16px;
    }
    .eyebrow a {
      color: inherit;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
      text-decoration-color: var(--accent-light);
      transition: text-decoration-color .2s ease;
    }
    .eyebrow a:hover { text-decoration-color: var(--accent); }

    .skip { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: var(--bg); padding: 8px 16px; z-index: 1000; }
    .skip:focus { left: 8px; }

    /* ===== HEADER (Farbe aus index.html) ===== */
    header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: saturate(140%) blur(8px);
      -webkit-backdrop-filter: saturate(140%) blur(8px);
      border-bottom: 1px solid var(--line);
    }
    .header-inner {
      max-width: var(--container); margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 32px;
    }
    .logo-area { display: flex; align-items: center; text-decoration: none; }
    .logo-img { height: 56px; width: auto; display: block; }

    nav.primary { display: flex; gap: 36px; }
    nav.primary a {
      color: var(--ink); font-size: 14px; font-weight: 500;
      text-decoration: none; letter-spacing: 0.02em;
    }
    nav.primary a:hover { color: var(--accent); }

    .header-cta { display: flex; align-items: center; gap: 24px; }
    .header-phone {
      display: flex; align-items: center; gap: 8px;
      color: var(--ink); font-size: 14px; font-weight: 500;
      text-decoration: none; font-variant-numeric: tabular-nums;
    }
    .header-phone svg { color: var(--accent); flex-shrink: 0; }
    .header-phone:hover { color: var(--accent); }

    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
      background: none; border: 0;
    }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: 0.3s var(--ease); }
    .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; inset: 92px 0 0 0;
      background: var(--bg); padding: 24px 32px;
      flex-direction: column; gap: 0; z-index: 99;
      border-top: 1px solid var(--line);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      padding: 18px 0; font-size: 19px; font-weight: 600;
      color: var(--ink); text-decoration: none;
      border-bottom: 1px solid var(--line);
    }

    /* ===== Buttons ===== */
    .btn-solid {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      padding: 16px 28px;
      font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
      color: var(--bg); background: var(--ink); text-decoration: none;
      border: 1px solid var(--ink); border-radius: var(--radius);
      cursor: pointer; transition: all 0.2s var(--ease);
    }
    .btn-solid:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
    .btn-solid::after { content: '→'; font-size: 16px; transition: transform 0.2s var(--ease); }
    .btn-solid:hover::after { transform: translateX(4px); }

    .btn-quiet {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 0;
      font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--ink); text-decoration: none;
      border: 0; border-bottom: 1px solid var(--ink);
      background: none; cursor: pointer;
      transition: color 0.2s var(--ease), border-color 0.2s var(--ease), gap 0.2s var(--ease);
    }
    .btn-quiet:hover { color: var(--accent); border-color: var(--accent); gap: 14px; }
    .btn-quiet:active { color: var(--accent); border-color: var(--accent); transform: scale(0.98); }
    .btn-quiet:focus-visible { color: var(--accent); border-color: var(--accent); outline: 2px solid var(--accent); outline-offset: 4px; }
    .btn-quiet::after { content: '→'; font-size: 15px; }
    .btn-solid:active { background: var(--accent); border-color: var(--accent); transform: scale(0.98); }
    .btn-solid:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

    /* ===== HERO (Editorial Split-Layout) ===== */
    .hero {
      padding: 96px 0;
      border-bottom: 1px solid var(--line);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .hero-text .eyebrow { margin-bottom: 28px; }
    .hero-headline {
      font-family: var(--font-serif);
      font-size: clamp(44px, 7vw, 96px);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: var(--ink);
      margin-bottom: 32px;
      max-width: none;
      text-wrap: balance;
      /* Lange Komposita-Headlines (z. B. „Wohnflächenberechnung") brechen sonst auf
         schmalen Screens nicht um und erzeugen seitenweiten Horizontal-Scroll. */
      overflow-wrap: break-word;
      -webkit-hyphens: auto;
      hyphens: auto;
    }
    .hero-sub {
      font-size: 19px; line-height: 1.6;
      color: var(--body);
      max-width: 520px;
      margin-bottom: 36px;
    }
    .hero-portrait img {
      width: 100%; height: auto;
      max-height: 640px;
      object-fit: cover;
      object-position: center top;
    }

    /* ===== TRUST-STRIP (1:1 aus index.html) ===== */
    .trust-strip {
      background: var(--bg);
      border-bottom: 1px solid var(--line);
      padding: 32px 0;
    }
    .trust-strip-inner {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
      align-items: center; text-align: center;
    }
    .trust-num {
      font-size: 32px; font-weight: 800;
      color: var(--accent);
      letter-spacing: -0.02em;
    }
    .trust-num--text {
      font-size: 18px; line-height: 1.3; letter-spacing: 0;
    }
    .trust-label {
      font-size: 13px; color: var(--muted);
      font-weight: 500; margin-top: 4px;
    }

    /* ===== INTRO (Einleitungstext mit H1) ===== */
    .intro { padding: 96px 0; }
    .intro-inner { max-width: 760px; padding: 0 32px; margin-left: max(32px, calc((100vw - var(--container))/2 + 32px)); margin-right: 32px; }
    .intro h1 {
      font-size: clamp(32px, 4.4vw, 48px); font-weight: 800;
      line-height: 1.1; letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 18px;
    }
    .intro h2 {
      /* Auf Unterseiten ohne eigene H1 im Intro: gleicher Abstand zum Folgeabsatz wie .intro h1. */
      margin-bottom: 18px;
    }
    .intro-subline {
      font-size: 19px; font-weight: 500;
      color: var(--muted);
      margin-bottom: 36px;
      max-width: 640px;
    }
    .intro p { font-size: 18px; line-height: 1.7; margin-bottom: 22px; color: var(--body); }
    .intro p.intro-subline { /* override default p style */ }
    .intro p:last-of-type { margin-bottom: 32px; }

    /* ===== Sections ===== */
    .section { padding: 96px 0; }
    .section-alt { background: var(--bg-alt); }
    .section-head { max-width: 760px; margin-bottom: 56px; }
    .section-head h2 { margin-bottom: 16px; }
    /* Kompakter Section-Head (28 statt 56px) – konsolidiert 06/2026 aus Aufteilungspläne/Bauanträge/Kaufberatung */
    .section-head.section-head--tight { margin-bottom: 28px; }

    /* Kontakt-CTA (zentrierter, kompakter Abschluss-Block) – konsolidiert 06/2026 aus 7 Leistungs-/Unternehmensseiten */
    .kontakt-cta { text-align: center; max-width: 640px; margin: 0 auto; }
    .kontakt-cta .kontakt-cta-meta { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin: 24px 0 32px; font-variant-numeric: tabular-nums; }
    .kontakt-cta .kontakt-cta-meta a { color: var(--ink); text-decoration: none; font-size: 17px; }
    .kontakt-cta .kontakt-cta-meta a:hover { color: var(--accent); }

    /* Kosten-Fließtext-Wrapper – konsolidiert 06/2026 aus Aufteilungspläne/Kaufberatung */
    .kosten-text { max-width: 800px; }
    .kosten-text p { font-size: 17px; line-height: 1.7; color: var(--body); margin-bottom: 18px; }
    .kosten-text p:last-child { margin-bottom: 0; }

    /* Kosten-Beispiel-Box (Akzent-Soft) – konsolidiert 06/2026 aus Kurzbewertung/Verkehrswertgutachten */
    .kosten-beispiel { margin: 32px 0; padding: 28px 32px; background: var(--accent-soft); border-left: 3px solid var(--accent); border-radius: var(--radius); max-width: 760px; }
    .kosten-beispiel strong { display: block; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--accent); letter-spacing: 0; margin-bottom: 8px; }
    .kosten-beispiel p { margin: 0; font-size: 17px; line-height: 1.65; color: var(--body); }

    /* ===== LEISTUNGEN (Editorial-Liste, ohne Bilder) ===== */
    .leistungen-list { border-top: 1px solid var(--line-strong); }
    .leistung-row {
      border-bottom: 1px solid var(--line);
      padding: 32px 0;
      display: grid;
      grid-template-columns: 80px 1fr auto;
      gap: 32px;
      align-items: baseline;
    }
    .leistung-num {
      font-family: var(--font-serif);
      font-size: 32px; font-weight: 600;
      color: var(--ink);
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .leistung-body { max-width: 720px; }
    .leistung-body h3 {
      font-size: 26px; font-weight: 600;
      margin-bottom: 10px;
      line-height: 1.2;
    }
    .leistung-body p {
      font-size: 16px; line-height: 1.65;
      color: var(--body);
      margin: 0;
    }
    .leistung-row .btn-quiet {
      padding: 6px 0;
      font-size: 12px;
      white-space: nowrap;
    }

    .leistungen-secondary {
      margin-top: 48px;
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 48px;
      align-items: center;
    }
    .leistungen-secondary h4 {
      font-family: var(--font-sans);
      font-size: 15px; font-weight: 600;
      color: var(--accent);
      letter-spacing: 0;
      margin: 0;
    }
    .leistungen-secondary-list {
      display: flex; flex-wrap: wrap; gap: 8px 24px;
      list-style: none;
    }
    .leistungen-secondary-list li { font-size: 15px; }
    .leistungen-secondary-list a {
      color: var(--ink); text-decoration: none;
      border-bottom: 1px solid var(--line-strong);
      padding-bottom: 2px;
    }
    .leistungen-secondary-list a:hover { color: var(--accent); border-color: var(--accent); }

    /* ===== TIMELINE (Ablauf-Komponente, vertikale Linie + Akzent-Punkte) ===== */
    .timeline {
      list-style: none;
      margin: 0;
      padding: 0;
      max-width: 880px;
    }
    .timeline li {
      position: relative;
      padding-left: 56px;
      padding-bottom: 48px;
    }
    .timeline li:last-child { padding-bottom: 0; }
    .timeline li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 7px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--accent);
    }
    .timeline li:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 6px;
      top: 22px;
      bottom: -7px;
      width: 1px;
      background: var(--line);
    }
    .timeline h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 10px;
      line-height: 1.2;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .timeline p {
      font-size: 16px;
      line-height: 1.7;
      color: var(--body);
      margin: 0;
      max-width: 700px;
    }

    /* ===== ANLÄSSE ===== */
    /* ===== Anlässe als Tab-Register (Akten-Anmutung) ===== */
    .anlaesse-tabs {
      display: flex;
      flex-wrap: wrap;
      border-top: 1px solid var(--line-strong);
      border-bottom: 1px solid var(--line);
      margin-bottom: 56px;
    }
    .tab-trigger {
      flex: 1;
      min-width: 0;
      background: none;
      border: 0;
      border-right: 1px solid var(--line);
      padding: 22px 16px;
      font-family: var(--font-sans);
      font-size: 15px;
      font-weight: 600;
      color: var(--muted);
      text-align: center;
      cursor: pointer;
      letter-spacing: 0;
      transition: color 0.2s var(--ease), background 0.2s var(--ease);
      position: relative;
    }
    .tab-trigger:last-child { border-right: 0; }
    .tab-trigger:hover { color: var(--ink); background: rgba(10,10,8,0.025); }
    .tab-trigger.active {
      color: var(--ink);
      background: var(--bg);
    }
    .tab-trigger.active::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 3px;
      background: var(--accent);
    }

    .anlaesse-panels { position: relative; min-height: 200px; }
    .tab-panel {
      display: none;
      max-width: 760px;
    }
    .tab-panel.active { display: block; }
    .tab-panel h3 {
      font-family: var(--font-serif);
      font-size: 32px; font-weight: 600;
      color: var(--ink);
      margin-bottom: 12px;
      line-height: 1.15;
      letter-spacing: -0.01em;
    }
    .tab-subhead {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 24px;
      font-style: italic;
    }
    .tab-panel p:not(.tab-subhead) {
      font-size: 17px;
      line-height: 1.7;
      color: var(--body);
      hyphens: auto;
      -webkit-hyphens: auto;
    }
    .anlaesse-cta {
      margin-top: 56px;
      padding: 28px 0 0;
      border-top: 1px solid var(--line);
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px; flex-wrap: wrap;
    }
    .anlaesse-cta p { font-size: 16px; color: var(--ink); max-width: 540px; margin: 0; }

    /* ===== ÜBER MICH ===== */
    .ueber-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .ueber-text h2 { margin-bottom: 28px; line-height: 1.15; }
    .ueber-text p { font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
    .ueber-text .btn-quiet { margin-top: 16px; }
    .ueber-portrait { position: relative; }
    .ueber-portrait img {
      width: 100%; height: auto;
      max-height: 580px;
      object-fit: cover;
      object-position: top;
      border-radius: var(--radius);
    }
    .ueber-portrait-tag {
      position: absolute;
      bottom: 24px; left: 24px;
      background: var(--bg);
      padding: 16px 20px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      font-size: 13px;
      max-width: calc(100% - 48px);
    }
    .ueber-portrait-tag strong {
      display: block;
      font-size: 16px; font-weight: 700;
      color: var(--ink);
      margin-bottom: 4px;
    }
    .ueber-portrait-tag span { color: var(--muted); }

    /* ===== FAQ (subtil: keine Linien, kein +, nicht fett) ===== */
    .faq { max-width: 800px; }
    .faq-item summary {
      list-style: none; cursor: pointer;
      padding: 10px 0;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      font-size: 16px; font-weight: 400;
      color: var(--body);
      transition: color 0.15s var(--ease);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '';
      width: 7px; height: 7px;
      border-right: 1.5px solid var(--muted);
      border-bottom: 1.5px solid var(--muted);
      transform: rotate(45deg);
      transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
      margin-top: -3px;
      flex-shrink: 0;
    }
    .faq-item summary:hover { color: var(--accent); }
    .faq-item summary:hover::after { border-color: var(--accent); }
    .faq-item[open] summary { color: var(--ink); }
    .faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
    .faq-item p {
      padding: 0 0 14px;
      font-size: 15px; line-height: 1.5;
      color: var(--body);
      max-width: 720px;
    }

    /* ===== KONTAKT ===== */
    .kontakt-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: start;
    }
    .kontakt-info h3 {
      font-family: var(--font-sans);
      font-size: 15px; font-weight: 600;
      color: var(--accent);
      letter-spacing: 0;
      margin-bottom: 8px;
    }
    .kontakt-info-block {
      padding: 28px 0;
      border-bottom: 1px solid var(--line);
    }
    .kontakt-info-block:first-of-type { padding-top: 28px; border-top: 1px solid var(--line); }
    .kontakt-info-block strong {
      display: block;
      font-family: var(--font-sans);
      font-size: 16px; font-weight: 600;
      color: var(--ink); margin-bottom: 10px;
      letter-spacing: 0;
    }
    .kontakt-info-block address {
      font-style: normal;
      font-size: 15px; line-height: 1.7;
      color: var(--body);
    }
    .kontakt-info-block a {
      display: block; font-size: 15px;
      color: var(--ink); text-decoration: none;
      margin-top: 4px; font-variant-numeric: tabular-nums;
    }
    .kontakt-info-block a:hover { color: var(--accent); }

    .form { padding: 0; }
    .form-row { margin-bottom: 22px; }
    .form-row label {
      display: block;
      font-size: 15px; font-weight: 600;
      letter-spacing: 0;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .form-row input, .form-row select, .form-row textarea {
      width: 100%; padding: 12px 0;
      font-family: inherit; font-size: 16px;
      background: transparent; border: 0; border-bottom: 1px solid var(--line-strong);
      color: var(--ink);
      transition: border-color 0.2s var(--ease);
    }
    .form-row input:focus, .form-row select:focus, .form-row textarea:focus {
      outline: none; border-color: var(--accent);
    }
    /* Klar sichtbarer Tastatur-Fokus (WCAG 2.4.7), konsistent zu .btn-quiet:focus-visible */
    .form-row input:focus-visible, .form-row select:focus-visible, .form-row textarea:focus-visible {
      outline: 2px solid var(--accent); outline-offset: 2px;
    }
    .form-row textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
    .form-consent {
      display: flex; gap: 12px; align-items: flex-start;
      font-size: 13px; color: var(--muted); line-height: 1.5;
      margin: 28px 0;
    }
    .form-consent input { width: auto; margin-top: 4px; }
    .form button { margin-top: 8px; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,0.7);
      padding: 80px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 56px;
    }
    .footer-logo { width: 220px; height: auto; display: block; margin-bottom: 24px; }
    .footer-brand p {
      color: rgba(255,255,255,0.6);
      font-size: 14px; line-height: 1.6;
      max-width: 320px;
    }
    footer h4 {
      color: #fff;
      font-size: 15px; font-weight: 600;
      letter-spacing: 0;
      margin-bottom: 20px;
    }
    .footer-col a, .footer-col p {
      display: block;
      color: rgba(255,255,255,0.65);
      font-size: 14px; line-height: 1.9;
      text-decoration: none;
    }
    .footer-col a:hover { color: #fff; }
    .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
      font-size: 12px; color: rgba(255,255,255,0.45);
    }
    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a { color: rgba(255,255,255,0.55); font-size: 12px; text-decoration: none; }
    .footer-legal a:hover { color: #fff; }

    /* ===== RATGEBER-KARTEN-GRID =====
       Verwendet auf /ratgeber/ (Übersicht) und am Fuß jeder Detailseite
       („Weitere Beiträge"). Editorial-Karten: 16:9-Bild oben, Datum-Eyebrow,
       Source-Serif-Titel, Body-Teaser, Caps-Link. Kein Hover-Schatten/Tilt
       (PROJEKTSTAND §3 verbietet das); Hover ändert nur die Farbe. */
    .ratgeber-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 56px 32px;
    }
    @media (max-width: 980px) {
      .ratgeber-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 28px; }
    }
    @media (max-width: 640px) {
      .ratgeber-grid { grid-template-columns: 1fr; gap: 48px; }
    }
    .ratgeber-card { display: flex; flex-direction: column; }
    .ratgeber-card .card-link {
      display: flex; flex-direction: column;
      color: inherit; text-decoration: none;
    }
    .ratgeber-card .card-image {
      aspect-ratio: 16 / 9;
      overflow: hidden;
      margin-bottom: 22px;
      border-radius: var(--radius);
      background: var(--bg-alt);
    }
    .ratgeber-card .card-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .ratgeber-card .card-date {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--muted);
      letter-spacing: 0.01em;
      margin: 0 0 8px;
    }
    .ratgeber-card .card-title {
      font-family: 'Source Serif 4', Georgia, serif;
      font-size: 24px;
      font-weight: 600;
      line-height: 1.3;
      color: var(--ink);
      margin: 0 0 12px;
      text-wrap: balance;
    }
    .ratgeber-card .card-link:hover .card-title { color: var(--accent); }
    .ratgeber-card .card-teaser {
      font-size: 16px;
      line-height: 1.65;
      color: var(--body);
      margin: 0 0 18px;
    }
    .ratgeber-card .card-cta {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink);
      border-bottom: 1px solid var(--ink);
      padding-bottom: 2px;
      align-self: flex-start;
    }
    .ratgeber-card .card-link:hover .card-cta {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    /* ===== ARTICLE (Ratgeber-Detailseiten) =====
       Skalierbares Pattern für Blog-Beiträge unter /ratgeber/<slug>/.
       Reading-Column-Breite 760 px (analog .intro-inner), Hero-Bild
       16:9 in Container-Breite. Wird pro neuem Beitrag wiederverwendet. */

    /* Ratgeber-Article-Header: teilt sich denselben 1180-px-Container wie
       das 16:9-Hero-Bild darunter (.container) – identische max-width und
       identisches 32-px-Padding. Dadurch sitzen die Kanten von H1-Block
       und Hero-Bild deckungsgleich; beide lesen sich als ein Aufmacher. */
    .article-header { padding: 80px 0 40px; }
    .article-header-inner {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 32px;
    }
    .article-back {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      letter-spacing: 0.02em;
      color: var(--muted);
      text-decoration: none;
      display: inline-block;
      margin-bottom: 32px;
    }
    .article-back:hover { color: var(--accent); }
    .article-header h1 {
      font-family: 'Source Serif 4', Georgia, serif;
      font-size: clamp(28px, 4.5vw, 56px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.015em;
      color: var(--ink);
      margin: 16px 0 24px;
      text-wrap: balance;
    }
    .article-meta {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--muted);
      margin: 0;
    }
    .article-meta strong { color: var(--ink); font-weight: 600; }
    .article-meta .sep { margin: 0 10px; color: var(--line); }
    .article-lead {
      font-family: 'Source Serif 4', Georgia, serif;
      font-size: clamp(18px, 1.6vw, 22px);
      line-height: 1.5;
      color: var(--body);
      font-style: italic;
      margin: 24px 0 28px;
      max-width: 760px;
      text-wrap: balance;
    }

    .article-hero-image { padding: 0 0 48px; }
    .article-hero-image .image-frame {
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--bg-alt);
    }
    .article-hero-image .image-frame img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    .article-body { padding: 32px 0 96px; }
    .article-body-inner {
      max-width: 760px;
      padding: 0 32px;
      margin: 0 auto;
    }
    .article-body-inner > :first-child { margin-top: 0; }
    .article-body-inner p,
    .article-body-inner ul,
    .article-body-inner ol {
      font-size: 18px;
      line-height: 1.75;
      color: var(--body);
      margin: 0 0 24px;
    }
    .article-body-inner h2 {
      font-family: 'Source Serif 4', Georgia, serif;
      font-size: clamp(24px, 2.8vw, 32px);
      font-weight: 700;
      color: var(--ink);
      margin: 48px 0 16px;
      letter-spacing: -0.01em;
    }
    .article-body-inner h3 {
      font-family: 'Source Serif 4', Georgia, serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--ink);
      margin: 36px 0 12px;
    }
    .article-body-inner ul,
    .article-body-inner ol { padding-left: 24px; }
    .article-body-inner li { margin-bottom: 10px; }

    /* Beispiel-Box im Artikel (für „Beispiel 1: …"-Abschnitte und Hinweise) */
    .article-example {
      background: var(--accent-soft);
      border-left: 3px solid var(--accent);
      border-radius: var(--radius);
      padding: 22px 28px;
      margin: 8px 0 28px;
      font-size: 17px;
      line-height: 1.65;
      color: var(--body);
    }
    .article-example strong {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
      display: block;
      margin-bottom: 4px;
    }

    /* Schluss-CTA-Box am Ende eines Ratgeber-Beitrags – größerer Serif-Text
       auf Akzent-Bg, gleicher Stil wie article-example, aber prominenter. */
    .article-body-inner .article-cta-block {
      background: var(--accent-soft);
      border-left: 3px solid var(--accent);
      border-radius: var(--radius);
      padding: 32px 36px;
      margin: 48px 0 28px;
    }
    .article-body-inner .article-cta-block p {
      font-family: 'Source Serif 4', Georgia, serif;
      font-size: 19px;
      line-height: 1.7;
      color: var(--body);
      margin: 0;
    }

    /* Rechtshinweis am Ende eines Beitrags */
    .article-disclaimer {
      font-size: 14px;
      color: var(--muted);
      font-style: italic;
      padding-top: 28px;
      border-top: 1px solid var(--line);
      margin-top: 48px;
    }

    /* Skeleton-Hinweis für Beiträge in Überarbeitung */
    .article-skeleton {
      background: var(--accent-soft);
      border-left: 3px solid var(--accent);
      border-radius: var(--radius);
      padding: 32px 36px;
      margin: 0 0 32px;
    }
    .article-skeleton strong {
      display: block;
      font-family: 'Source Serif 4', Georgia, serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 10px;
    }
    .article-skeleton p {
      font-size: 16px;
      line-height: 1.65;
      color: var(--body);
      margin: 0 0 16px;
    }
    .article-skeleton p:last-child { margin-bottom: 0; }

    /* Autor-Box am Ende jedes Beitrags */
    .autor-box {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 32px;
      align-items: start;
      max-width: 760px;
      margin: 0 auto;
    }
    .autor-box .autor-portrait {
      width: 140px; height: 140px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--bg-alt);
    }
    .autor-box .autor-portrait img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .autor-box .eyebrow { margin-bottom: 8px; }
    .autor-box h3 {
      font-family: 'Source Serif 4', Georgia, serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--ink);
      margin: 0 0 12px;
    }
    .autor-box p {
      font-size: 16px;
      line-height: 1.65;
      color: var(--body);
      margin: 0 0 16px;
    }
    .autor-box .autor-link {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
      border-bottom: 1px solid var(--ink);
      padding-bottom: 2px;
    }
    .autor-box .autor-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

    @media (max-width: 600px) {
      .article-header-inner,
      .article-body-inner { padding-left: 24px; padding-right: 24px; margin-left: 0; margin-right: 0; }
      .article-hero-image .image-frame { border-radius: 0; }
      .autor-box { grid-template-columns: 1fr; gap: 20px; }
      .autor-box .autor-portrait { width: 96px; height: 96px; }
      /* text-wrap: balance bricht auf Mobile zu früh und lässt rechts
         Whitespace stehen – auf schmalen Viewports natürliches Fluss-Wrap. */
      .article-header h1,
      .article-lead { text-wrap: auto; }
    }

    /* ===== Reveal on scroll ===== */
    .reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* ===== Responsive ===== */
    @media (max-width: 960px) {
      nav.primary { display: none; }
      .hamburger { display: flex; }
      .header-phone span { display: none; }
      .hero { padding: 60px 0; }
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .hero-portrait { max-width: 460px; margin: 0 auto; width: 100%; }
      .leistung-row { grid-template-columns: 50px 1fr; gap: 20px; }
      .leistung-row .btn-quiet { grid-column: 2; margin-top: 8px; justify-self: start; }
      .anlaesse-tabs { flex-wrap: wrap; }
      .tab-trigger { flex: 1 1 33%; padding: 16px 10px; font-size: 12px; }
      .tab-trigger:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
      .tab-panel h3 { font-size: 26px; }
      .leistungen-secondary { grid-template-columns: 1fr; gap: 16px; }
      .ueber-grid { grid-template-columns: 1fr; gap: 48px; }
      .ueber-portrait { max-width: 460px; width: 100%; }
      .kontakt-grid { grid-template-columns: 1fr; gap: 56px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .section, .intro { padding: 72px 0; }
      .hero { padding: 72px 0; }
      .intro-inner { margin-left: 32px; margin-right: 32px; }
    }
    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr; }
      .leistung-row { grid-template-columns: 36px 1fr; gap: 16px; padding: 24px 0; }
      .leistung-body h3 { font-size: 22px; }
      .container, .intro-inner { padding-left: 24px; padding-right: 24px; }
      .intro-inner { margin-left: 0; margin-right: 0; }
      .timeline li { padding-left: 42px; padding-bottom: 40px; }
      .timeline h3 { font-size: 19px; }
    }
