
  /* ==========================================================================
     DER ARBEITSRECHTLER — Prototyp v8 „Mehrseiter"
     Landing mit Video + Türen · eigene Unterseiten (Hash-Routing) · kein Formular
     ========================================================================== */
  :root {
    --bg: #FFFFFF;
    --grey: #F5F5F5;
    --ink: #000000;
    --muted: #4A4A4A;
    --faint: #8A8A8A;
    --line: #E4E4E4;
    --inv: #FFFFFF;
    --mhb: #8E1B15;
    --mhb-hell: #C7392E;
    color-scheme: light;
  }
  @media (prefers-color-scheme: dark) {
    :root {
      --bg: #0C0C0D; --grey: #151517; --ink: #F4F4F4; --muted: #B4B4B6;
      --faint: #7A7A7E; --line: #26262A; --inv: #0C0C0D;
      --mhb: #C7392E; --mhb-hell: #C7392E;
      color-scheme: dark;
    }
  }
  :root[data-theme="dark"] {
    --bg: #0C0C0D; --grey: #151517; --ink: #F4F4F4; --muted: #B4B4B6;
    --faint: #7A7A7E; --line: #26262A; --inv: #0C0C0D;
    --mhb: #C7392E; --mhb-hell: #C7392E;
    color-scheme: dark;
  }
  :root[data-theme="light"] {
    --bg: #FFFFFF; --grey: #F5F5F5; --ink: #000000; --muted: #4A4A4A;
    --faint: #8A8A8A; --line: #E4E4E4; --inv: #FFFFFF;
    --mhb: #8E1B15; --mhb-hell: #C7392E;
    color-scheme: light;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--bg); color: var(--ink);
    font-family: 'Segoe UI Variable Display', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
    font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  }
  ::selection { background: #000; color: #fff; }
  h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.015em; line-height: 1.05; text-wrap: balance; }
  p { margin: 0; }
  a { color: inherit; }
  img, canvas.ph { max-width: 100%; display: block; }
  button { font-family: inherit; }
  :focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
  @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } html { scroll-behavior: auto; } }

  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

  /* ---------- Header ---------- */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  header .head-in { display: flex; align-items: center; gap: 28px; height: 78px; }
  .logo-link { position: relative; display: inline-block; line-height: 0; }
  .logo-link::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px;
    background: var(--mhb-hell);
  }
  header.solid .logo-link::after { background: var(--mhb); }
  .logo-img { height: 24px; width: auto; transition: filter 0.3s ease; cursor: pointer; }
  header.solid { background: var(--bg); box-shadow: 0 1px 0 var(--line); }
  header.solid .logo-img { filter: invert(1); }
  :root[data-theme="dark"] header.solid .logo-img { filter: none; }
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) header.solid .logo-img { filter: none; } }
  nav { margin-left: auto; display: flex; gap: 24px; }
  nav a {
    font-size: 13.5px; font-weight: 600; text-decoration: none; letter-spacing: 0.01em;
    color: #fff; transition: opacity 0.15s;
  }
  header.solid nav a { color: var(--muted); }
  header.solid nav a.on { color: var(--ink); text-decoration: underline; text-decoration-color: var(--mhb); text-underline-offset: 6px; text-decoration-thickness: 2px; }
  nav a.on { text-decoration: underline; text-decoration-color: var(--mhb-hell); text-underline-offset: 6px; text-decoration-thickness: 2px; }
  nav a:hover { opacity: 0.7; }
  .head-tel { font-size: 13.5px; font-weight: 700; text-decoration: none; white-space: nowrap; color: #fff; font-variant-numeric: tabular-nums; }
  header.solid .head-tel { color: var(--ink); }
  .head-tel:hover { opacity: 0.6; }
  @media (max-width: 940px) { nav { display: none; } .head-tel { margin-left: auto; } }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; cursor: pointer;
    font-size: 14px; font-weight: 700; letter-spacing: 0.01em; padding: 16px 30px; border: 1px solid transparent;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
  }
  .btn-black { background: var(--ink); color: var(--inv); }
  .btn-black:hover { opacity: 0.85; }
  .btn-white { background: #fff; color: #000; }
  .btn-white:hover { background: #E8E8E8; }
  .btn-invert { background: var(--inv); color: var(--ink); }
  .btn-invert:hover { opacity: 0.85; }
  .btn-ghost-w { border-color: rgba(255,255,255,0.55); color: #fff; background: transparent; }
  .btn-ghost-w:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
  .btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
  .btn-ghost:hover { border-color: var(--ink); }
  .btn .a { transition: transform 0.16s ease; }
  .btn:hover .a { transform: translateX(4px); }

  /* ---------- HERO (nur Startseite) ---------- */
  .hero { position: relative; height: 100svh; min-height: 560px; overflow: hidden; background: #000; }
  .hero-media { position: absolute; inset: 0; }
  .hero-media .km {
    position: absolute; inset: -6%;
    background-size: cover; background-position: center 20%;
    filter: grayscale(1) contrast(1.06) brightness(0.9);
    opacity: 0; transition: opacity 1.6s ease;
    will-change: transform;
  }
  .hero-media .km.active { opacity: 1; }
  .hero-media .km.a1 { animation: kb1 26s ease-in-out infinite alternate; }
  .hero-media .km.a2 { animation: kb2 26s ease-in-out infinite alternate; }
  @keyframes kb1 { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.14) translate(-1.6%, -2%); } }
  @keyframes kb2 { from { transform: scale(1.12) translate(1.4%, -1%); } to { transform: scale(1) translate(0, 0); } }
  .hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(0.9); }
  .hero-shade {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.62) 100%);
  }
  .hero-grain {
    position: absolute; inset: 0; opacity: 0.07; pointer-events: none; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  }
  .hero-content { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: clamp(56px, 11vh, 130px); }
  .claims { position: relative; min-height: 3.2em; width: 100%; }
  .claim {
    position: absolute; left: 0; right: 0; bottom: 0;
    color: #fff; font-size: clamp(34px, 5.6vw, 76px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.04;
    max-width: 17ch; opacity: 0; transform: translateY(18px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    pointer-events: none; text-wrap: balance;
  }
  .claim.active { opacity: 1; transform: none; }
  .hero-sub { color: rgba(255,255,255,0.82); font-size: clamp(15px, 1.6vw, 18px); margin-top: 24px; max-width: 52ch; }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
  .hero-tag {
    position: absolute; top: 96px; left: 0; right: 0;
    color: rgba(255,255,255,0.72); font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
    display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; align-items: baseline;
  }
  .ki-note {
    position: absolute; z-index: 2;
    bottom: 30px; right: calc(clamp(20px, 4vw, 48px) + 46px);
    font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255,255,255,0.42); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1px; white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  /* Die Regel fuer .scroll-cue steht weiter unten am Ende des Stylesheets,
     weil sie sonst von der spaeteren .scroll-cue-Definition ueberschrieben wird. */
  .ki-note:hover { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.7); }
  .scroll-cue {
    position: absolute; bottom: 26px; right: clamp(20px, 4vw, 48px);
    color: rgba(255,255,255,0.65); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    writing-mode: vertical-rl; display: flex; align-items: center; gap: 10px;
  }
  .scroll-cue::after { content: ''; width: 1px; height: 44px; background: rgba(255,255,255,0.5); animation: cue 2s ease-in-out infinite; }
  @keyframes cue { 0%, 100% { transform: scaleY(0.4); transform-origin: top; } 50% { transform: scaleY(1); } }
  .claim-dots { position: absolute; bottom: 30px; left: clamp(20px, 4vw, 48px); display: flex; gap: 8px; }
  .claim-dots button { width: 26px; height: 3px; border: none; background: rgba(255,255,255,0.35); cursor: pointer; padding: 0; transition: background 0.2s; }
  .claim-dots button.active { background: #fff; }

  /* ---------- Seitengerüst ---------- */
  section { padding: clamp(72px, 11vh, 130px) 0; }
  .page-head { padding: clamp(140px, 20vh, 190px) 0 clamp(40px, 6vh, 64px); }
  .page-head .sec-label { margin-bottom: 20px; }
  .page-head h1 { font-size: clamp(36px, 5vw, 68px); max-width: 20ch; }
  .page-head .sec-sub { margin-top: 20px; }
  .sec-label { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); margin-bottom: 26px; }
  .sec-h { font-size: clamp(30px, 4.2vw, 56px); max-width: 20ch; }
  .sec-sub { color: var(--muted); font-size: clamp(16px, 1.8vw, 18.5px); max-width: 58ch; margin-top: 18px; }
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--d, 0s); }
  .reveal.in { opacity: 1; transform: none; }

  /* ---------- Türen ---------- */
  .doors { display: grid; grid-template-columns: 1fr 1fr; }
  @media (max-width: 780px) { .doors { grid-template-columns: 1fr; } }
  .door {
    padding: clamp(44px, 7vh, 88px) clamp(24px, 4vw, 64px);
    text-decoration: none; position: relative; display: block; cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .door.an { background: var(--bg); color: var(--ink); box-shadow: inset -1px 0 0 var(--line), inset 0 -1px 0 var(--line); }
  .door.an:hover { background: var(--ink); color: var(--inv); }
  .door.ag { background: var(--ink); color: var(--inv); }
  .door.ag:hover { background: var(--bg); color: var(--ink); box-shadow: inset 0 -1px 0 var(--line); }
  .door .d-l { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.55; display: block; }
  .door .d-t { font-size: clamp(26px, 3.2vw, 42px); font-weight: 700; letter-spacing: -0.02em; display: block; margin-top: 14px; }
  .door .d-d { font-size: 14.5px; opacity: 0.7; display: block; margin-top: 8px; }
  .door .d-a { position: absolute; right: clamp(24px, 4vw, 64px); bottom: clamp(40px, 6vh, 80px); font-size: 26px; transition: transform 0.2s ease; }
  .door:hover .d-a { transform: translateX(8px); }

  /* ---------- Stärken / Zeilen ---------- */
  .pts { margin-top: clamp(28px, 4.5vh, 44px); border-top: 1px solid var(--line); }
  .pt { padding: 20px 2px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(180px, 280px) 1fr; gap: 10px 28px; align-items: baseline; }
  @media (max-width: 680px) { .pt { grid-template-columns: 1fr; } }
  .pt b { font-size: 17.5px; font-weight: 700; letter-spacing: -0.01em; }
  .pt span { color: var(--muted); font-size: 15px; max-width: 62ch; }
  .rows { border-top: 1px solid var(--line); margin-top: clamp(26px, 4vh, 44px); }
  .row {
    display: grid; grid-template-columns: 64px 1fr auto; gap: 22px; align-items: baseline;
    padding: 20px 4px; border-bottom: 1px solid var(--line); text-decoration: none;
    transition: padding-left 0.2s ease;
  }
  .row:hover { padding-left: 16px; }
  .row > span { min-width: 0; }
  .row .no { font-size: 12.5px; color: var(--faint); font-variant-numeric: tabular-nums; font-weight: 700; }
  .row .t { display: block; font-size: clamp(19px, 2.2vw, 28px); font-weight: 700; letter-spacing: -0.02em; overflow-wrap: anywhere; }
  .row .d { display: block; font-size: 14.5px; color: var(--muted); margin-top: 6px; max-width: 56ch; }
  .row .arr { font-size: 22px; color: var(--faint); transition: transform 0.2s, color 0.2s; }
  .row:hover .arr { transform: translateX(6px); color: var(--ink); }
  @media (max-width: 640px) { .row { grid-template-columns: 32px 1fr auto; gap: 14px; } }
  .sec-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(28px, 4.5vh, 44px); }
  .lex-line { margin-top: 26px; font-size: 14px; color: var(--muted); }
  .lex-line a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; color: inherit; }

  /* Arbeitgeber-Seite (invertiert) */
  .ag-band { background: var(--ink); color: var(--inv); min-height: 100vh; }
  .ag-band .sec-label { color: color-mix(in srgb, var(--inv) 55%, transparent); }
  .ag-band .sec-sub, .ag-band .pt span, .ag-band .row .d, .ag-band .lex-line { color: color-mix(in srgb, var(--inv) 72%, transparent); }
  .ag-band .pts, .ag-band .pt, .ag-band .rows, .ag-band .row { border-color: color-mix(in srgb, var(--inv) 20%, transparent); }
  .ag-band .row .no, .ag-band .row .arr { color: color-mix(in srgb, var(--inv) 55%, transparent); }
  .ag-band .row:hover .arr { color: var(--inv); }
  .ag-band .btn-ghost { border-color: color-mix(in srgb, var(--inv) 35%, transparent); color: var(--inv); }

  /* ---------- Tools ---------- */
  .tools-band { background: var(--grey); }
  .tools { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(18px, 3vw, 32px); align-items: start; margin-top: clamp(30px, 5vh, 54px); }
  @media (max-width: 900px) { .tools { grid-template-columns: 1fr; } }
  .tool { background: var(--bg); border: 1px solid var(--line); padding: clamp(26px, 3.2vw, 42px); }
  .tool h3 { font-size: 20px; letter-spacing: -0.01em; }
  .tool .hint { font-size: 13px; color: var(--faint); margin: 6px 0 30px; }
  .f-lab { display: flex; justify-content: space-between; align-items: baseline; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
  .f-lab output { font-size: 17px; font-weight: 700; color: var(--ink); text-transform: none; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
  .tool-field { margin-bottom: 26px; }
  input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; background: linear-gradient(to right, var(--ink) var(--fill, 50%), var(--line) var(--fill, 50%)); outline: none; cursor: pointer; }
  input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--bg); border: 2px solid var(--ink); cursor: grab; }
  input[type="range"]::-moz-range-thumb { width: 15px; height: 15px; border-radius: 50%; background: var(--bg); border: 2px solid var(--ink); cursor: grab; }
  .fx { display: flex; gap: 8px; }
  .fx button { flex: 1; border: 1px solid var(--line); background: none; color: var(--muted); font-size: 13px; font-weight: 700; padding: 10px 4px; cursor: pointer; transition: all 0.15s ease; }
  .fx button.active { border-color: var(--ink); color: var(--ink); }
  .fx-note { font-size: 11.5px; color: var(--faint); margin-top: 8px; }
  .result { border-top: 1px solid var(--line); padding-top: 24px; }
  .result .r-l { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
  .result .r-v { font-size: clamp(38px, 4.4vw, 54px); font-weight: 700; letter-spacing: -0.03em; margin-top: 8px; font-variant-numeric: tabular-nums; }
  .result .r-r { font-size: 13.5px; color: var(--muted); margin-top: 6px; font-variant-numeric: tabular-nums; }
  .fine { font-size: 11.5px; color: var(--faint); margin-top: 18px; line-height: 1.55; }
  input[type="date"] { width: 100%; border: 1px solid var(--line); background: var(--bg); color: var(--ink); padding: 14px; font-family: inherit; font-size: 15px; }
  input[type="date"]:focus { outline: 2px solid var(--ink); outline-offset: -1px; }
  .frist-out { margin-top: 24px; font-size: 14.5px; color: var(--muted); min-height: 76px; }
  .frist-out .big { font-size: clamp(24px, 2.6vw, 32px); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); display: block; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
  .frist-out .big.late { text-decoration: underline; text-decoration-thickness: 3px; }
  .frist-hinweis { display: block; margin-top: 12px; padding-left: 12px; border-left: 2px solid var(--ink); font-size: 13px; color: var(--muted); line-height: 1.5; }
  .frist-bar { height: 2px; background: var(--line); margin-top: 14px; position: relative; overflow: hidden; }
  .frist-bar i { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--ink); transition: width 0.7s ease; }

  /* ---------- Über mich ---------- */
  .about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
  @media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
  /* Das Portraet ist bereits als Schwarzweiss-Fassung angelegt (Lichter gesenkt,
     Vignette, Korn) - deshalb hier kein zusaetzlicher Kontrast mehr. */
  /* height: auto ist noetig - sonst gewinnt das height-Attribut des img
     gegen aspect-ratio und das Bild wird zu einem hohen Streifen beschnitten. */
  .about-photo .ph { width: 100%; height: auto; aspect-ratio: 4/4.8; object-fit: cover; object-position: top; filter: grayscale(1); }
  .about-copy h2 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 22px; }
  .about-copy p { color: var(--muted); max-width: 54ch; font-size: 16.5px; }
  .about-copy p + p { margin-top: 14px; }
  .about-facts { display: flex; flex-wrap: wrap; gap: 0 36px; margin-top: 30px; border-top: 1px solid var(--line); }
  .af { padding: 18px 0 0; }
  .af b { display: block; font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
  .af span { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

  /* ---------- Statement ---------- */
  .statement { background: #000; color: #fff; }
  .statement .in { padding: clamp(80px, 13vh, 150px) 0; }
  .statement blockquote { margin: 0; font-size: clamp(30px, 4.6vw, 64px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; max-width: 22ch; text-wrap: balance; }
  .statement .who { margin-top: 28px; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

  /* ---------- FAQ ---------- */
  .faq { border-top: 1px solid var(--line); margin-top: clamp(30px, 5vh, 54px); max-width: 860px; }
  .qa { border-bottom: 1px solid var(--line); }
  .qa button {
    width: 100%; background: none; border: none; text-align: left; cursor: pointer; color: var(--ink);
    font-size: clamp(17px, 2vw, 21px); font-weight: 700; letter-spacing: -0.01em;
    padding: 24px 46px 24px 2px; position: relative;
  }
  .qa button::after { content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 300; transition: transform 0.25s ease; }
  .qa.open button::after { transform: translateY(-50%) rotate(45deg); }
  .qa .a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .qa .a p { padding: 0 2px 24px; font-size: 15px; color: var(--muted); max-width: 68ch; }

  /* ---------- Kontakt ---------- */
  .big-link { display: block; text-decoration: none; font-weight: 700; letter-spacing: -0.03em; font-size: clamp(30px, 5vw, 64px); line-height: 1.15; font-variant-numeric: tabular-nums; }
  .big-link:hover { text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 8px; }
  .big-link.small { font-size: clamp(17px, 2.6vw, 30px); margin-top: 12px; letter-spacing: -0.015em; overflow-wrap: anywhere; }
  .addr { margin-top: 30px; font-size: 14.5px; color: var(--muted); line-height: 1.75; }
  .addr b { color: var(--ink); }
  .contact-note { margin-top: 26px; padding: 18px 20px; border: 1px solid var(--line); font-size: 13.5px; color: var(--muted); max-width: 62ch; }

  /* Kontakt-Streifen (Landing) */
  .contact-strip { border-top: 1px solid var(--line); }
  .contact-strip .in { padding: clamp(48px, 8vh, 84px) 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px 48px; }
  .contact-strip .cs-label { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); width: 100%; }
  .contact-strip a.cs-tel { text-decoration: none; font-weight: 700; letter-spacing: -0.02em; font-size: clamp(24px, 3.4vw, 44px); font-variant-numeric: tabular-nums; }
  .contact-strip a.cs-mail { text-decoration: none; font-weight: 700; letter-spacing: -0.01em; font-size: clamp(17px, 2vw, 26px); overflow-wrap: anywhere; }
  .contact-strip a:hover { text-decoration: underline; text-underline-offset: 6px; }

  /* ---------- Footer ---------- */
  footer { background: #000; color: rgba(255,255,255,0.65); }
  .foot { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; justify-content: space-between; padding: 38px 0; font-size: 12.5px; }
  .foot .logo-img { height: 20px; width: auto; filter: none !important; }
  .foot .logo-link::after { background: var(--mhb-hell); bottom: -6px; }
  .foot a { text-decoration: none; color: rgba(255,255,255,0.8); margin-right: 16px; }
  .foot a:hover { color: #fff; }
  .foot .tag { border: 1px dashed rgba(255,255,255,0.3); padding: 5px 10px; letter-spacing: 0.1em; text-transform: uppercase; font-size: 10px; }

  /* ---------- Overlay ---------- */
  .ov { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.65); display: none; align-items: center; justify-content: center; padding: 22px; }
  .ov.open { display: flex; }
  .ov-box { width: 100%; max-width: 640px; max-height: 80vh; overflow-y: auto; background: var(--bg); border: 1px solid var(--line); padding: clamp(24px, 4vw, 44px); }
  .ov-box h2 { font-size: 24px; margin-bottom: 16px; }
  .ov-box h3 { font-size: 15px; margin: 18px 0 4px; }
  .ov-box p { font-size: 13.5px; color: var(--muted); }
  .ov-close { float: right; background: none; border: 1px solid var(--line); color: var(--ink); width: 36px; height: 36px; cursor: pointer; font-size: 15px; }
  .ov-note { border: 1px dashed var(--line); padding: 10px 14px; font-size: 12px; color: var(--faint); margin-bottom: 14px; }
  .ov-box .ov-k { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
  .ov-box ul { margin: 14px 0 0; padding: 0; list-style: none; }
  .ov-box ul li { padding: 10px 0 10px 22px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--muted); position: relative; }
  .ov-box ul li::before { content: '—'; position: absolute; left: 0; color: var(--ink); font-weight: 700; }
  .ov-box ul li b { color: var(--ink); }
  .ov-box .ov-fine { font-size: 11.5px; color: var(--faint); margin-top: 16px; line-height: 1.5; }
  .ov-box .ov-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
  .ov-box .ov-ctas .btn { padding: 13px 22px; font-size: 13px; }

  /* ---------- Expertise (Landing) ---------- */
  .exp { border-top: 1px solid var(--line); }
  .exp .in { padding: clamp(64px, 10vh, 120px) 0; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
  @media (max-width: 860px) { .exp .in { grid-template-columns: 1fr; } }
  .exp h2 { font-size: clamp(28px, 3.8vw, 52px); max-width: 18ch; }
  .exp .exp-p { color: var(--muted); font-size: clamp(16px, 1.8vw, 18px); max-width: 56ch; margin-top: 20px; }
  .exp .pts { margin-top: clamp(24px, 4vh, 36px); }
  .exp .more { display: inline-block; margin-top: 26px; font-size: 14px; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--ink); padding-bottom: 2px; }
  .exp .more:hover { opacity: 0.7; }
  .exp .exp-photo .ph { width: 100%; height: auto; aspect-ratio: 4/4.6; object-fit: cover; object-position: top; filter: grayscale(1); }

  /* ---------- Mobil: engere Vertikalabstaende ----------
     Die vh-basierten Abstaende sind auf dem Desktop richtig, wirken auf dem
     Handy aber auseinandergerissen (Kopfblock -> Inhalt lag bei 85 px). */
  @media (max-width: 700px) {
    section { padding: clamp(52px, 7.5vh, 78px) 0; }
    .page-head { padding: 118px 0 26px; }
    .page-head .sec-label { margin-bottom: 12px; }
    .page-head .sec-sub { margin-top: 14px; }
    .sec-label { margin-bottom: 16px; }
    .sec-sub { margin-top: 14px; }
    .pts { margin-top: 22px; }
    .rows { margin-top: 20px; }
    .sec-ctas { margin-top: 26px; }
    .lex-line { margin-top: 20px; }
    .about-copy h2 { margin-bottom: 14px; }
    .about-facts { margin-top: 22px; }
    .exp .more { margin-top: 20px; }
    .hero-sub { margin-top: 18px; }
    .hero-ctas { margin-top: 24px; }
  }

  /* Auf schmalen Schirmen weicht der dekorative Scroll-Hinweis, damit der
     KI-Pflichthinweis am unteren Bildrand frei steht. */
  @media (max-width: 620px) {
    .scroll-cue { display: none; }
    .ki-note { right: clamp(20px, 4vw, 48px); }
  }

  /* ---------- Statische Fassung: Ergaenzungen ---------- */
  .exp .in { grid-template-columns: 1fr; }
  .exp-p { font-size: 16.5px; line-height: 1.75; max-width: none; text-align: justify; hyphens: auto; -webkit-hyphens: auto; color: var(--muted); }
  .cta-note { margin-top: 12px; font-size: 13px; color: var(--faint); }
  .ag-band .cta-note { color: color-mix(in srgb, var(--inv) 55%, transparent); }
  .notice { display: flex; justify-content: space-between; align-items: center; gap: 12px; border: 1px solid var(--line); padding: 16px 20px; font-weight: 700; text-decoration: none; margin-bottom: 26px; }
  .notice .a { transition: transform 0.2s; }
  .notice:hover .a { transform: translateX(6px); }
  .grau-band { background: var(--grey); padding: clamp(52px, 8vh, 90px) 0; margin-top: clamp(40px, 6vh, 64px); }
  .lauftext p { color: var(--muted); max-width: 74ch; margin-top: 14px; font-size: 16.5px; }
  .lauftext p:first-child { margin-top: 0; }
  .lauftext a { font-weight: 700; color: inherit; }
  /* ---------- Landingpage-Kopf ---------- */
  .lp-hero { position: relative; background: #0C0C0D; color: #fff; overflow: hidden; }
  /* Echte Portraetaufnahme (kein KI-Motiv), rechts angesetzt; links traegt Schwarz den Text. */
  .lp-media { position: absolute; inset: 0; background: #0C0C0D url(/assets/buchta-portrait.jpg) right -2% top / auto 104% no-repeat; }
  .lp-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(96deg, #0C0C0D 0%, rgba(12,12,13,0.96) 46%, rgba(12,12,13,0.55) 74%, rgba(12,12,13,0.22) 100%); }
  @media (max-width: 860px) { .lp-media { background-image: none; } .lp-media::after { background: #0C0C0D; } }
  .lp-in { position: relative; padding: clamp(104px, 15vh, 168px) 0 clamp(48px, 8vh, 82px); }
  .lp-text { max-width: 38ch; }
  @media (max-width: 860px) { .lp-text { max-width: 100%; } }
  .lp-hero .sec-label { color: rgba(255,255,255,0.55); }
  .lp-hero h1 { font-size: clamp(31px, 4.2vw, 52px); margin-bottom: 22px; }
  .lp-sub { color: rgba(255,255,255,0.84); font-size: clamp(16px, 1.8vw, 18.5px); max-width: 52ch; }
  .lp-list { list-style: none; margin: 24px 0 0; padding: 0; }
  .lp-list li { position: relative; padding-left: 26px; margin-top: 10px; font-size: 15.5px; color: rgba(255,255,255,0.92); }
  .lp-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 2px; background: var(--mhb-hell); }
  .lp-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
  .vertrauen { background: var(--ink); color: var(--inv); }
  .vertrauen .in { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 32px; padding: 26px 0; }
  @media (max-width: 760px) { .vertrauen .in { grid-template-columns: 1fr; gap: 14px; } }
  .vertrauen span { font-size: 13px; color: color-mix(in srgb, var(--inv) 62%, transparent); line-height: 1.5; }
  .vertrauen b { display: block; font-size: 15.5px; color: var(--inv); letter-spacing: -0.01em; margin-bottom: 2px; }

  /* ---------- Formular Kuendigungspruefung ---------- */
  .pruef-form { margin-top: clamp(26px, 4vh, 40px); max-width: 760px; }
  .ff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; margin-bottom: 18px; }
  @media (max-width: 640px) { .ff-grid { grid-template-columns: 1fr; } }
  .ff { display: block; margin-bottom: 18px; }
  .ff-grid .ff { margin-bottom: 0; }
  .ff-l { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
  .ff-l em { font-style: normal; color: var(--mhb); }
  .ff-opt { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 12.5px; }
  .ff input[type=text], .ff input[type=tel], .ff input[type=email], .ff input[type=date], .ff select, .ff textarea {
    width: 100%; box-sizing: border-box; font: inherit; font-size: 16px; color: var(--ink);
    background: var(--bg); border: 1px solid var(--line); border-bottom: 2px solid var(--ink);
    padding: 12px 14px; border-radius: 0; -webkit-appearance: none; appearance: none;
  }
  .ff select { background-image: none; }
  .ff textarea { resize: vertical; min-height: 96px; }
  .ff input:focus, .ff select:focus, .ff textarea:focus { outline: 2px solid var(--ink); outline-offset: 2px; }
  .ff input[type=file] { width: 100%; font: inherit; font-size: 14px; padding: 12px 0 0; }
  .ff-h { display: block; margin-top: 6px; font-size: 12.5px; color: var(--faint); }
  .ff-check { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin: 6px 0 22px; font-size: 14px; color: var(--muted); line-height: 1.6; }
  .ff-check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--ink); }
  .ff-check a { color: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
  .ff-sub { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
  .ff-sub button { cursor: pointer; border: none; }
  .ff-alt { font-size: 14px; color: var(--muted); }
  .ff-alt a { color: inherit; font-weight: 700; }
  .ff-fine { margin-top: 18px; font-size: 12.5px; color: var(--faint); max-width: 70ch; line-height: 1.65; }
  .ff-fine em { font-style: normal; color: var(--mhb); }
  .ff-fehler { border: 1px solid var(--mhb); border-left-width: 4px; padding: 14px 18px; margin-bottom: 22px; font-size: 14.5px; }
  .bund-line { display: inline-block; border: 1px solid var(--ink); padding: 9px 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 26px; }
  .r-cta { margin-top: 14px; font-size: 14px; font-weight: 600; }
  .r-cta a { text-decoration: underline; text-underline-offset: 3px; color: inherit; }