:root,
  html,
  body,
  input,
  button,
  select,
  textarea {
    color-scheme: light;
    color-scheme: only light;
    forced-color-adjust: none;
  }

  /* ==========================================================================
     MARKEN-DESIGN-SYSTEM (Die Alltagsgestalter) – Farbcodes lt. Handbuch
     ========================================================================== */
  :root {
    /* Schrift */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;

    /* Hauptfarbe (3 Töne) */
    --color-primary:      #A687C7;   /* Buttons, Button-Outlines, Logo, Menü-Schrift */
    --color-lavender:     #D1BDE5;   /* Trennlinien, Outlines bei Kacheln/Kästen */
    --color-accent-light: #E5E0F0;   /* Kasten „100 % Entlastung", Hintergrund Erstgespräch */
    --color-text-main:    #000000;

    /* Schriftgrößen */
    --font-size-body: 18px;
    --font-size-btn: 14px;
    --font-size-h1: 48px;
    --font-size-h2: 36px;
    --font-size-h3: 24px;
    --font-size-tagline: 12px;

    /* Bereichsfarben – dunkel (Button-Outline / „+")  |  mittel (Kachel-Outline / Icons)  |  hell (Kasten / Trennlinie) */
    --b1-dark: #82A8F7; --b1-mid: #B2CCFA; --b1-light: #D9E5FC;  /* 1  Zuhause & Wohlbefinden  */
    --b2-dark: #FF8F38; --b2-mid: #FFC79E; --b2-light: #FFE3CC;  /* 2  Zeit & Begleitung       */
    --b3-dark: #85D1A6; --b3-mid: #B0E8CC; --b3-light: #D9F0E3;  /* 3  Leben & Aktivität       */
    --b4-dark: #E8B51F; --b4-mid: #FFE08F; --b4-light: #FFF0C7;  /* 4  Genuss & Ernährung      */
  }

  /* ===================================================================
     Interne Aliase – NICHT direkt verwenden. Mappen die im restlichen
     Stylesheet verstreuten Alt-Namen auf die Handbuch-Variablen oben.
     =================================================================== */
  :root {
    --color-ui: var(--color-primary);

    --font-body:     var(--font-family);
    --font-display:  var(--font-family);
    --font-script:   var(--font-family);
    --font-readable: var(--font-family);

    --fs-body:          var(--font-size-body);
    --fs-button:        var(--font-size-btn);
    --fs-heading-lg:    var(--font-size-h1);
    --fs-heading-inner: var(--font-size-h2);
    --fs-heading-sm:    var(--font-size-h3);
    --fs-brand:         var(--font-size-tagline);

    /* "Kartenfarbe" eines Bereichs = mittlerer Ton (Kachel-Outline / Icons) */
    --area-zuhause:      var(--b1-mid);  --area-zuhause-2:    var(--b1-light);
    --area-zeit:         var(--b2-mid);  --area-zeit-2:       var(--b2-light);
    --area-aktivitaet:   var(--b3-mid);  --area-aktivitaet-2: var(--b3-mid);   --area-aktivitaet-3: var(--b3-light);
    --area-genuss:       var(--b4-mid);  --area-genuss-2:     var(--b4-mid);   --area-genuss-3:     var(--b4-light);

    --color-text:      var(--color-text-main);
    --color-kohle:     var(--color-text-main);
    --color-text-soft: #333333;

    --color-lavendel:     var(--color-lavender);
    --color-akzent-hell:  var(--color-accent-light);
    --color-violett:      var(--color-primary);
    --color-violett-card: var(--b1-mid);          /* Icons Kachel 1 */
    --color-orange:       var(--b2-dark);
    --color-orange-card:  var(--b2-mid);          /* Icons Kachel 2 */
    --color-gruen:        var(--b3-dark);
    --color-green:        var(--b3-mid);
    --color-sand:         var(--color-accent-light);
    --color-blau:         #2C3E50;
    --color-secondary:    var(--color-blau);

    --color-bg: #FAFAF8;
    --color-bg-alt: #F5F4F0;
    --color-surface: #FFFFFF;
    --color-border:       var(--color-lavender);   /* Trennlinien */
    --color-tile-bg: #FFFFFF;
    --color-tile-border:  var(--color-lavender);   /* generischer Kachel-/Kastenrahmen */
    --shadow-soft: 0 18px 40px -24px rgba(0, 0, 0, 0.16);
    --radius-lg: 28px;
    --radius-md: 18px;
    --content-width: 1180px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  }

  body {
    margin: 0;
    
    overflow-x: clip;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--fs-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.12;
    text-wrap: balance;
    margin: 0;
    color: var(--color-text);
  }
  /* Ueberschriften-Groessen aus dem Design-System (Desktop = Zielwert,
     darunter fluid, damit Mobil nicht bricht). */
  h1 { font-size: clamp(2rem, 6.5vw, var(--fs-heading-lg)); }
  h2 { font-size: clamp(1.5rem, 4.5vw, var(--fs-heading-inner)); }
  h3 { font-size: var(--fs-heading-sm); }
  h4 { font-size: 1rem; }

  p { margin: 0; }
  ul { margin: 0; padding: 0; list-style: none; }
  a { color: inherit; }
  img, svg { max-width: 100%; display: block; }

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

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  summary:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
    border-radius: 6px;
  }

  .skip-link {
    position: absolute;
    left: 1rem; top: -4rem;
    background: var(--color-text);
    color: var(--color-bg);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    z-index: 200;
    transition: top 0.2s ease;
  }
  .skip-link:focus { top: 1rem; }

  .wrap {
    max-width: var(--content-width);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 3rem);
    position: relative;
    z-index: 5;
  }

  .wm-field {
    position: absolute;
    inset: 0;
    overflow: visible;
    pointer-events: none;
    
    z-index: 3;
  }
  .wm {
    position: absolute;
    height: auto;
    
    opacity: 0.8;
    will-change: transform;
    
    width: var(--wm-w);
    
    max-width: none;
  }

  .wm-topf {
    --wm-w: clamp(380px, 44vw, 628px);
    top: -114px;
    right: calc(var(--wm-w) * -0.66);
  }
  .wm-auto {
    --wm-w: clamp(300px, 38vw, 580px);
    top: -335px;
    left: calc(var(--wm-w) * -0.61);
  }
  .wm-schach {
    --wm-w: clamp(300px, 38vw, 600px);
    top: -415px;
    right: calc(var(--wm-w) * -0.40);
  }
  .wm-besen {
    --wm-w: clamp(380px, 46vw, 700px);
    top: 34px;
    left: calc(var(--wm-w) * -0.44);
  }

  @media (max-width: 780px) {
    .wm {
      --wm-w: 62vw;
      opacity: 0.5;
    }
    .wm-topf   { top: -40px;  right: calc(var(--wm-w) * -0.5); left: auto; }
    /* Ueberlappt auf schmalen Viewports die Ueberschrift "Unsere vier
       Leistungsbereiche" darunter, statt nur dekorativ im Hintergrund zu
       bleiben - deshalb hier komplett ausgeblendet statt nur verschoben. */
    .wm-auto   { display: none; }
    .wm-schach { top: -120px; right: calc(var(--wm-w) * -0.5); left: auto; }
    
    .wm-besen  { --wm-w: 118vw; top: 0; left: calc(var(--wm-w) * -0.5); right: auto; }
  }

  /* Auf schmalen Handy-Breiten reicht die 780px-Stufe allein nicht: der
     Topf/Moehre-Deko im Hero rueckt bei bestimmten Textumbruechen (z. B.
     ~430px) so nah an die Ueberschrift heran, dass er sie beruehrt. Deshalb
     hier zusaetzlich deutlich kleiner, weiter in die Ecke geschoben und
     sehr dezent - reine Deko darf die Lesbarkeit nie gefaehrden. */
  @media (max-width: 640px) {
    .wm-topf {
      --wm-w: 80px;
      top: -10px;
      right: -20px;
      opacity: 0.2;
    }
  }

  .script {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-kohle);
    background: var(--color-violett);
    padding: 0 0.15em;
  }
  .eyebrow {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: var(--font-size-tagline);
    font-weight: 700;
    color: var(--color-text-main);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--fs-button);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.95rem 1.7rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn svg { width: 1.05em; height: 1.05em; flex-shrink: 0; }

  .btn-primary {
    background: var(--color-violett);
    color: #fff;
    box-shadow: var(--shadow-soft);
  }
  .btn-primary:hover { box-shadow: 0 25px 45px -22px color-mix(in srgb, var(--color-violett) 70%, transparent); }

  .btn-dark {
    background: var(--color-violett);
    color: #fff;
  }

  .btn-outline {
    background: var(--color-violett);
    border-color: var(--color-violett);
    color: #fff;
  }

  .btn-ghost {
    background: transparent;
    border-color: var(--color-violett);
    color: var(--color-kohle);
  }
  .btn-ghost:hover,
  .btn-ghost:focus-visible { background: color-mix(in srgb, var(--color-violett) 16%, transparent); }

  header.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--color-bg) 92%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.2rem;
    gap: 1.5rem;
  }

  .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  /* Bild-Logo (Header, Menue-Panel, Footer) – fuegt sich vertikal zentriert
     und ohne Layout-Sprung ins Header-Flexlayout ein. */
  .site-logo {
    display: block;
    width: auto;
    height: auto;
    max-height: 66px;
    max-width: 100%;
  }
  @media (max-width: 768px) {
    .site-logo { max-height: 50px; }
  }

  nav.main-nav ul {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
  }
  nav.main-nav a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--color-ui);
    padding: 0.4rem 0.1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s ease, color 0.15s ease;
  }
  nav.main-nav a:hover,
  nav.main-nav a[aria-current="true"] { border-color: var(--color-ui); }

  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    background: var(--color-violett);
    border: 2px solid var(--color-violett);
    color: var(--color-kohle);
    border-radius: 10px;
    padding: 0.5rem 0.65rem;
    cursor: pointer;
  }
  .nav-toggle svg { width: 1.4rem; height: 1.4rem; }

  /* Alle Navi- und Modal-Trigger: schnelles, zuverlaessiges Antippen auf
     iOS/Android (kein 300ms-Delay, kein Doppeltipp-Zoom) und garantiert
     klickbar, falls ein Elternteil pointer-events umschaltet. */
  .nav-toggle,
  .nav-close,
  .nav-cta,
  nav.main-nav a,
  [data-modal-open],
  [data-modal-close],
  .event-card-signup,
  [data-event-filter] {
    touch-action: manipulation;
    pointer-events: auto;
  }

  /* Panel-Header, Badge, Emoji-Prefixe und Footer-CTA gehoeren nur ins
     geoeffnete Mobile-Panel (siehe Media-Query unten). */
  .nav-panel-header,
  .nav-close,
  .nav-badge,
  .nav-emoji,
  .nav-cta { display: none; }

  @media (max-width: 780px) {
    .nav-toggle { display: inline-flex; }
    nav.main-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100vw;
      height: 100vh;
      height: 100dvh;
      z-index: 200;
      flex-direction: column;
      justify-content: space-between;
      gap: 1.5rem;
      background: #FAF7F2;
      border: 0;
      padding: 1.5rem;
      overflow-y: auto;
      overscroll-behavior: contain;
    }
    nav.main-nav.open { display: flex; }

    .nav-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    /* Logo-Link im Menue-Panel: die generische nav.main-nav a-Regel
       (Padding, Unterstrich) zuruecknehmen. */
    .nav-panel-header .logo { padding: 0; border: 0; }
    .nav-panel-header .site-logo { max-height: 46px; }
    .nav-close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      margin-right: -0.5rem;
      background: transparent;
      border: 0;
      color: var(--color-kohle);
      cursor: pointer;
      pointer-events: auto;
    }
    .nav-close svg { width: 1.75rem; height: 1.75rem; }

    nav.main-nav > ul {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.35rem;
      width: 100%;
    }
    nav.main-nav a {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      min-height: 48px;
      font-size: 1.3rem;
      padding: 0.5rem 0;
      border-bottom: 0;
      pointer-events: auto;
      touch-action: manipulation;
    }
    .nav-emoji { display: inline-block; font-size: 1.1rem; }
    .nav-primary { display: flex; flex-direction: column; align-items: flex-start; }
    .nav-badge {
      display: inline-block;
      margin: 0.15rem 0 0 2.3rem;
      padding: 0.15rem 0.65rem;
      border-radius: 999px;
      background: color-mix(in srgb, var(--color-violett) 22%, transparent);
      color: color-mix(in srgb, var(--color-kohle) 75%, var(--color-violett));
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.02em;
    }
    /* Footer-CTA im Mobile-Panel: weisse Schrift, normale Schreibweise,
       kein Uppercase - ueberschreibt bewusst .btn / .btn-primary und die
       generische nav.main-nav a-Regel (daher die hoehere Spezifitaet). */
    nav.main-nav a.nav-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      min-height: 0;
      padding: 1rem 1.5rem;
      border-radius: 999px;
      background: var(--color-ui);
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: normal;
      text-transform: none;
      box-shadow: 0 4px 6px -1px rgba(30, 22, 15, 0.18), 0 2px 4px -2px rgba(30, 22, 15, 0.18);
    }
    nav.main-nav a.nav-cta:hover,
    nav.main-nav a.nav-cta:focus-visible { background: color-mix(in srgb, var(--color-ui) 88%, #000); }
    nav.main-nav a.nav-cta svg { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
  }

  section { position: relative; }
  .section-pad { padding-block: clamp(3.5rem, 7vw, 6.5rem); }

  /* Dezenter "hier bist du gelandet"-Hinweis nach einem Anker-Sprung
     (siehe markLanding in app.js). Kurzer, weicher Innen-Rahmen, der
     ausblendet - kein Layout-Versatz, respektiert reduzierte Bewegung. */
  .is-landing { animation: landing-hint 2s ease-out; }
  @keyframes landing-hint {
    0%, 12% { box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--color-violett) 50%, transparent); }
    100% { box-shadow: inset 0 0 0 3px transparent; }
  }
  @media (prefers-reduced-motion: reduce) {
    .is-landing { animation: none; }
  }
  .blob-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
  .blob-field svg { position: absolute; }

  .hero {
    overflow: visible;
    
  }
  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
  }

  /* Garantiert unabhaengig von der Kaskade, dass die Headline immer ueber
     der Topf/Moehre-Deko (.wm-field, z-index: 3) liegt - Text darf nie
     hinter dekorativen Grafiken verschwinden. */
  .hero-copy {
    position: relative;
    z-index: 10;
  }

  .hero-tag {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    width: fit-content;
    max-width: 90%;
    margin-top: 0;
    margin-right: auto;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: var(--fs-brand);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-kohle);
    background: color-mix(in srgb, var(--color-primary) 22%, transparent);
    text-wrap: balance;
  }

  /* Auf schmalen Displays reicht der Text (inkl. Mittelpunkten) oft nicht
     auf eine Zeile - kleinere Schrift und normales Letter-Spacing halten
     die Badge kompakt, max-width + pr-Sicherheitsabstand verhindern, dass
     sie unter die Moehren-Deko rechts oben laeuft. */
  @media (max-width: 640px) {
    .hero-tag {
      max-width: calc(100% - 1rem);
      padding-right: 1rem;
      font-size: 11px;
      letter-spacing: normal;
    }
  }

  .hero-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 6.5vw, var(--fs-heading-lg));
    font-weight: 700;
    margin-top: 0.7rem;
    line-height: 1.25;
  }

  /* Hero-H1: Wort-fuer-Wort-Einblendung + handgezeichnete SVG-Unterstreichung */
  .word-group {
    display: inline-block;
    white-space: nowrap;
  }

  .word-fade {
    display: inline-block;
    opacity: 0;
    transform: translateY(6px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--i) * 0.2s);
    will-change: opacity, transform;
    white-space: nowrap;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-title .hero-title-line {
    display: block;
    white-space: normal;
  }

  .hero-title .hero-title-line + .hero-title-line {
    margin-top: 0.15em;
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-title .word-fade {
      animation: none;
      opacity: 1;
      transform: none;
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: 36px;
      line-height: 1.25;
    }
  }

  .hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: #374151;
    margin-top: 1.4rem;
    margin-bottom: 1.5rem;
    max-width: 44ch;
  }

  /* Trust-Badge im Hero: "Abrechenbar ueber alle Pflegekassen ..." */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 1.25rem;
    background: color-mix(in srgb, var(--color-violett) 14%, var(--color-surface));
    border: 1.5px solid color-mix(in srgb, var(--color-violett) 45%, transparent);
    border-radius: 999px;
    padding: 10px 22px 10px 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.3;
  }
  .hero-badge .badge-icon,
  .hero-badge span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: var(--color-violett);
    color: var(--color-kohle);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.6rem;
  }
  .hero-copy .btn {
    margin-top: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
  }

  .hero-figure {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .hero-frame {
    position: relative;
    width: min(420px, 100%);
  }
  /* Lilafarbener Versatz-"Schatten" hinter dem Foto entfernt (Design-Update). */
  .hero-frame::before { content: none; }
  .hero-frame .art-panel {
    position: relative;
    z-index: 1;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    /* Kein Schlagschatten an Bildern (Markenvorgabe). */
    box-shadow: none;
  }
  .hero-frame .art-panel img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.1rem, 2.5vw, 1.75rem);
  }
  @media (max-width: 720px) {
    .services-grid { grid-template-columns: 1fr; }
  }

  .service-card {
    background: var(--color-tile-bg);
    color: var(--color-kohle);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 3vw, 2.4rem);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-height: 340px;
    border: 2px solid var(--color-tile-border);
    scroll-margin-top: 6.5rem;
    outline: 3px solid transparent;
    outline-offset: 6px;
    cursor: pointer;
    transition: outline-color 0.3s ease, box-shadow 0.4s ease-out, transform 0.4s ease-out;
  }

  .service-card details.service-more {
    padding-top: 0.4rem;
  }
  .service-card details.service-more summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
  }
  .service-card details.service-more summary::-webkit-details-marker { display: none; }
  .service-card details.service-more summary .plus {
    flex-shrink: 0;
    width: 1.5rem; height: 1.5rem;
    border-radius: 50%;
    background: var(--color-violett);
    color: var(--color-kohle);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: transform 0.2s ease;
  }
  .service-card details.service-more[open] summary .plus { transform: rotate(45deg); }
  .service-card details.service-more .service-more-body {
    margin-top: 0.75rem;
  }
  .service-card details.service-more ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .service-card details.service-more li {
    position: relative;
    padding-left: 1.3rem;
    font-family: var(--font-readable);
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0;
  }
  .service-card details.service-more li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.4;
    font-weight: 700;
    color: var(--color-kohle);
  }
  
  .service-card details.service-more[open] li {
    animation: service-li-in 0.35s ease-out forwards;
  }
  .service-card details.service-more[open] li:nth-child(1) { animation-delay: 0.08s; }
  .service-card details.service-more[open] li:nth-child(2) { animation-delay: 0.16s; }
  .service-card details.service-more[open] li:nth-child(3) { animation-delay: 0.24s; }
  .service-card details.service-more[open] li:nth-child(4) { animation-delay: 0.32s; }
  .service-card details.service-more[open] li:nth-child(5) { animation-delay: 0.4s; }
  .service-card details.service-more[open] li:nth-child(6) { animation-delay: 0.48s; }
  @keyframes service-li-in {
    from { opacity: 0; transform: translateX(-6px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .service-card details.service-more[open] li { animation-delay: 0s !important; }
  }
  
  .service-card:target,
  .service-card.is-highlighted {
    animation: target-pop 0.6s ease;
  }
  @keyframes target-pop {
    0% { transform: scale(1); }
    35% { transform: scale(1.025); }
    100% { transform: scale(1); }
  }

  .service-card:hover,
  .service-card:focus-visible {
    transform: translateY(-4px);
  }
  .card-violet:hover, .card-violet:focus-visible {
    box-shadow: 0 10px 25px -5px color-mix(in srgb, var(--area-zuhause) 40%, transparent);
  }
  .card-orange:hover, .card-orange:focus-visible {
    box-shadow: 0 10px 25px -5px color-mix(in srgb, var(--area-zeit) 40%, transparent);
  }
  .card-green:hover, .card-green:focus-visible {
    box-shadow: 0 10px 25px -5px color-mix(in srgb, var(--area-aktivitaet) 40%, transparent);
  }
  .card-sand:hover, .card-sand:focus-visible {
    box-shadow: 0 10px 25px -5px color-mix(in srgb, var(--area-genuss) 35%, transparent);
  }
  
  .service-card:focus-visible {
    outline: 3px solid var(--color-kohle);
  }

  /* Icon/Illustration mittig in der Kachel ausrichten (Design-Update). */
  .service-card .art-holder {
    width: 128px; height: 128px; overflow: visible;
    align-self: center;
  }
  .service-card .art-holder img {
    width: 100%; height: 100%; object-fit: contain; object-position: center; display: block;
    transition: transform 0.4s ease-in-out;
  }
  .service-card:hover .art-holder img,
  .service-card:focus-visible .art-holder img {
    transform: translateY(-2px) scale(1.02);
  }

  @media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-card .art-holder img {
      transition: none;
    }
    .service-card:hover,
    .service-card:focus-visible,
    .service-card:hover .art-holder img,
    .service-card:focus-visible .art-holder img {
      transform: none;
    }
  }
  .service-card h3 { font-size: var(--fs-heading-sm); }
  .service-card p {
    font-family: var(--font-readable);
    font-size: 1rem;
    line-height: 1.7;

    min-height: 8.6rem;
  }
  .service-matching {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-top: 0.85rem;
    margin-top: -0.3rem;
    border-top: 1px solid var(--color-tile-border);
  }
  .service-matching-avatars {
    display: flex;
    gap: 0.3rem;
    flex-shrink: 0;
  }
  .service-matching-avatars svg { width: 1.85rem; height: 1.85rem; flex-shrink: 0; }
  .service-matching-text {
    font-family: var(--font-readable);
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--color-text-soft);
  }
  .service-matching-text strong {
    font-family: var(--font-display);
    color: var(--color-kohle);
  }
  .service-card .kicker {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    margin-bottom: -0.2rem;
  }

  /* Kachelrahmen = mittlerer Bereichston (Handbuch: "Outlines bei Kacheln").
     card-violet = Zuhause, card-orange = Zeit, card-green = Aktivitaet,
     card-sand = Genuss. */
  .card-violet { border: 2.5px solid var(--b1-mid); }
  .card-violet .kicker { color: var(--color-kohle); background: color-mix(in srgb, var(--b1-mid) 45%, transparent); }
  .card-orange { border: 2.5px solid var(--b2-mid); }
  .card-orange .kicker { color: var(--color-kohle); background: color-mix(in srgb, var(--b2-mid) 45%, transparent); }
  .card-green { border: 2.5px solid var(--b3-mid); }
  .card-green .kicker { color: var(--color-kohle); background: color-mix(in srgb, var(--b3-mid) 45%, transparent); }
  .card-sand { border: 2.5px solid var(--b4-mid); }
  .card-sand .kicker { color: var(--color-kohle); background: color-mix(in srgb, var(--b4-mid) 45%, transparent); }

  /* "+"-Kreis und Button-Outline je Kachel = dunkler Bereichston
     (Handbuch: "Outlines bei Buttons, +"). .service-card mit dran, damit
     die Regel die generische .service-card .service-more-trigger schlaegt. */
  .service-card.card-violet .service-more-trigger,
  .service-card.card-violet .service-more-trigger:hover { border-color: var(--b1-dark); }
  .service-card.card-violet .service-more-trigger .plus { background: var(--b1-dark); }
  .service-card.card-orange .service-more-trigger,
  .service-card.card-orange .service-more-trigger:hover { border-color: var(--b2-dark); }
  .service-card.card-orange .service-more-trigger .plus { background: var(--b2-dark); }
  .service-card.card-green .service-more-trigger,
  .service-card.card-green .service-more-trigger:hover { border-color: var(--b3-dark); }
  .service-card.card-green .service-more-trigger .plus { background: var(--b3-dark); }
  .service-card.card-sand .service-more-trigger,
  .service-card.card-sand .service-more-trigger:hover { border-color: var(--b4-dark); }
  .service-card.card-sand .service-more-trigger .plus { background: var(--b4-dark); }

  .pflegekasse-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 1.1rem;
    max-width: 66ch;
    background: var(--color-accent-light);
    border: 1.5px solid var(--color-lavender);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
  }
  .pflegekasse-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-top: 0.2rem;
    background-color: var(--color-violett);
    color: var(--color-kohle);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .services-intro-note {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text-soft);
  }
  .services-intro-note a { color: var(--color-blau); font-weight: 600; text-decoration: underline; text-underline-offset: 0.15em; }

  /* Schmalere Variante als finale Kostenuebernahme-Bestaetigung unter den
     Leistungskacheln - weniger Text, weniger Raum als der urspruengliche
     Banner oberhalb der Kacheln. */
  .pflegekasse-highlight-compact {
    align-items: center;
    max-width: 58ch;
    margin: clamp(1.75rem, 3vw, 2.5rem) auto 0;
    padding: 0.75rem 1.1rem;
  }
  .pflegekasse-highlight-compact .pflegekasse-highlight-icon {
    width: 22px;
    height: 22px;
    margin-top: 0;
    font-size: 11px;
  }
  .pflegekasse-highlight-compact .services-intro-note {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .about-grid {
    position: relative; z-index: 1;
    max-width: 62ch;
  }

  .about-copy h2 { font-size: clamp(1.6rem, 4vw, var(--fs-heading-inner)); margin-top: 0.6rem; }
  .about-copy p { margin-top: 1.1rem; color: var(--color-text-soft); }
  .about-copy .btn { margin-top: 1.75rem; }

  .story-section { background: var(--color-bg-alt); scroll-margin-top: 5rem; }
  .story-header { max-width: 62ch; }
  .story-header h2 { font-size: clamp(1.6rem, 4vw, var(--fs-heading-inner)); margin-top: 0.6rem; }

  .story-layout {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
  }
  @media (max-width: 820px) { .story-layout { grid-template-columns: 1fr; } }

  .pull-quote {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    color: var(--color-kohle);
    background: var(--color-surface);
    border: 2px solid var(--color-violett);
    padding: 1.75rem 1.85rem;
    border-radius: var(--radius-md);
    transform: rotate(-1.5deg);
    position: sticky;
    top: 6.5rem;
  }
  
  @media (max-width: 820px) {
    .pull-quote {
      position: static;
      top: auto;
    }
  }
  .pull-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-family: var(--font-display);
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-kohle);
    opacity: 0.72;
  }

  .story-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 65ch;
    color: var(--color-text);
  }
  .story-body p:first-child { font-size: 1.1rem; }

  .story-credentials {
    display: inline-block;
    align-self: flex-start;
    margin-top: 0.25rem;
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    background: color-mix(in srgb, var(--color-violett) 14%, var(--color-surface));
    border: 1.5px solid color-mix(in srgb, var(--color-violett) 40%, transparent);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text);
  }
  .story-credentials strong {
    font-weight: 700;
    color: var(--color-kohle);
    margin-right: 0.35em;
  }

  .newsletter {
    background: color-mix(in srgb, var(--color-violett) 8%, var(--color-surface));
    color: var(--color-kohle);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }
  .newsletter-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
  }
  .newsletter h2 { font-size: clamp(1.6rem, 4vw, var(--fs-heading-inner)); max-width: 20ch; }
  .newsletter p { margin-top: 0.5rem; font-family: var(--font-body); font-size: 1.05rem; }

  .newsletter-signup { width: min(27rem, 100%); }

  form.newsletter-form {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    background: var(--color-surface);
    padding: 0.5rem;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
  }
  form.newsletter-form input[type="email"] {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.7rem 0.5rem 0.7rem 1rem;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    color: var(--color-text);
  }
  form.newsletter-form input[type="email"]:focus { outline: none; }
  form.newsletter-form input[type="email"]::placeholder { color: var(--color-text-soft); }
  form.newsletter-form .btn {
    flex: 0 0 auto;
    padding: 1.05rem 2.3rem;
    border-radius: 999px;
    border-color: var(--color-kohle);
  }
  .newsletter-note { font-size: 0.85rem; margin-top: 0.7rem; padding-left: 1.1rem; color: var(--color-kohle); }
  .newsletter-note:empty { display: none; }

  @media (max-width: 560px) {
    
    form.newsletter-form .btn {
      padding: 0.95rem 1.15rem;
      font-size: 0.82rem;
      letter-spacing: 0.04em;
    }
    form.newsletter-form input[type="email"] { padding-left: 0.85rem; font-size: 0.95rem; }
  }

  /* ============ Kontakt-/Anfrage-Formular ============ */
  .contact-section { background: var(--color-bg-alt); }  /* Designer-Mockup: Creme wie die übrigen Sektionen (nicht #E5E0F0) */
  .contact-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
  .contact-intro h2 {
    margin-top: 0.6rem;
    font-size: clamp(1.6rem, 4vw, var(--fs-heading-inner));
    max-width: 18ch;
  }
  .contact-intro p { margin-top: 1rem; color: var(--color-text-soft); }
  .contact-points {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-points li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 600;
  }
  .contact-points svg {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    color: var(--color-violett);
  }
  .contact-points a { color: var(--color-kohle); text-decoration: none; }
  .contact-points a:hover { text-decoration: underline; }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: clamp(1.5rem, 3vw, 2.25rem);
  }
  .form-field { display: flex; flex-direction: column; gap: 0.35rem; }
  .form-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-soft);
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.7rem 0.9rem;
    width: 100%;
    min-height: 48px;
  }
  .contact-form textarea { min-height: 120px; resize: vertical; }
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--color-violett);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-violett) 22%, transparent);
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .form-field-wide { grid-column: 1 / -1; }
  .form-hint {
    font-size: 0.82rem;
    color: var(--color-text-soft);
    margin-top: -0.25rem;
  }
  .form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--color-text-soft);
  }
  .contact-consent input {
    width: 1.1rem;
    height: 1.1rem;
    min-height: 0;
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: var(--color-violett);
  }
  .contact-consent a { color: var(--color-kohle); }
  .contact-submit {
    align-self: flex-start;
    margin-top: 0.25rem;
  }
  .contact-feedback {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.5;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }
  .contact-feedback.is-pending { background: var(--color-bg-alt); color: var(--color-text-soft); }
  .contact-feedback.is-success {
    background: color-mix(in srgb, var(--color-gruen) 18%, var(--color-surface));
    color: color-mix(in srgb, var(--color-kohle) 82%, var(--color-gruen));
  }
  .contact-feedback.is-error {
    background: color-mix(in srgb, var(--color-orange) 14%, var(--color-surface));
    color: color-mix(in srgb, var(--color-kohle) 80%, var(--color-orange));
  }
  .contact-feedback a { color: inherit; }

  /* Formular im Modal (Event-Anmeldung): kein Karten-Look, da der Dialog
     selbst schon Fläche/Rahmen mitbringt. */
  .event-signup-form {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .event-signup-event {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--color-violett) 12%, var(--color-surface));
    border: 1px solid color-mix(in srgb, var(--color-violett) 30%, transparent);
  }
  .event-signup-event strong {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.3;
    color: var(--color-kohle);
  }

  /* Haupt-Button des Anmelde-Formulars: weisse Schrift, mittlere Staerke,
     normale Schreibweise - ueberschreibt .btn / .btn-primary. */
  .event-signup-submit {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
  }

  /* Erfolgs-Zustand: Formular ausgeblendet, an gleicher Stelle Bestaetigung. */
  .event-signup-success {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
  }
  .event-signup-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--color-gruen) 22%, var(--color-surface));
    color: color-mix(in srgb, var(--color-kohle) 78%, var(--color-gruen));
  }
  .event-signup-success-icon svg { width: 1.4rem; height: 1.4rem; }
  .event-signup-success p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--color-text);
  }
  .event-signup-success .btn { align-self: flex-start; }

  /* Schlichtes, dezentes Schliessen-Icon (nur Event-Anmelde-Modal). */
  #eventSignupModal .modal__close {
    min-width: 44px;
    min-height: 44px;
    padding: 0.4rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: color-mix(in srgb, var(--color-kohle) 55%, transparent);
    box-shadow: none;
    letter-spacing: normal;
  }
  #eventSignupModal .modal__close svg { width: 1.4rem; height: 1.4rem; }
  #eventSignupModal .modal__close:hover,
  #eventSignupModal .modal__close:focus-visible {
    background: color-mix(in srgb, var(--color-kohle) 8%, transparent);
    border: 0;
    color: var(--color-kohle);
  }

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

  /* ---------- "Nach oben"-Button (per JS eingehaengt) ---------- */
  .scroll-top-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #581c87;
    border: 1px solid #e9d5ff;
    box-shadow: 0 4px 6px -1px rgba(30, 22, 15, 0.12), 0 2px 4px -2px rgba(30, 22, 15, 0.12);
    cursor: pointer;
    touch-action: manipulation;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  }
  .scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
  }
  .scroll-top-btn svg { width: 1.25rem; height: 1.25rem; }
  .scroll-top-btn:hover,
  .scroll-top-btn:focus-visible { background: #fff; }
  @media (prefers-reduced-motion: reduce) {
    .scroll-top-btn { transform: none; transition: opacity 0.01s linear, visibility 0.01s linear; }
    .scroll-top-btn.is-visible { transform: none; }
  }

  .area-section { background: var(--color-bg-alt); }
  .area-header { max-width: 62ch; }
  .area-header h2 { font-size: clamp(1.6rem, 4vw, var(--fs-heading-inner)); margin-top: 0.6rem; }
  .area-header p { margin-top: 1rem; color: var(--color-text-soft); }

  .area-grid {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 900px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .area-grid { grid-template-columns: 1fr; } }

  .area-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
  }
  .area-card .plz {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-kohle);
    background: var(--color-orange);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
  }
  .area-card h3 {
    font-size: 1.1rem;
    margin-top: 0.4rem;
  }
  .area-card p {
    margin-top: 0.55rem;
    font-size: 0.95rem;
    color: var(--color-text-soft);
  }

  .persona-section { background: var(--color-bg-alt); }
  .persona-groups {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
  @media (max-width: 720px) { .persona-groups { grid-template-columns: 1fr; gap: 2rem; } }

  .persona-group-title {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0;
  }
  .persona-group-title a {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
  }
  .persona-group-title a:hover,
  .persona-group-title a:focus-visible {
    border-color: currentColor;
  }
  .persona-group-kicker {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-soft);
    margin: 0.35rem 0 1rem;
  }
  .persona-group-kicker a {
    display: inline-flex;
    align-items: center;
    margin-left: 0.35rem;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    color: var(--color-kohle);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .persona-group-kicker a:hover,
  .persona-group-kicker a:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px -8px rgba(30, 22, 15, 0.4);
  }
  .persona-group-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    display: inline-block;
    flex: none;
  }
  .persona-group[data-cat="zuhause"] .persona-group-dot { background: var(--color-violett-card); }
  .persona-group[data-cat="zuhause"] .persona-group-kicker a { background: var(--color-violett-card); }
  .persona-group[data-cat="zeit"] .persona-group-dot { background: var(--color-orange-card); }
  .persona-group[data-cat="zeit"] .persona-group-kicker a { background: var(--color-orange-card); }
  .persona-group[data-cat="leben"] .persona-group-dot { background: var(--color-gruen); }
  .persona-group[data-cat="leben"] .persona-group-kicker a { background: var(--color-gruen); }
  .persona-group[data-cat="genuss"] .persona-group-dot { background: var(--color-sand); border: 1px solid var(--color-text); }
  .persona-group[data-cat="genuss"] .persona-group-kicker a { background: var(--color-sand); border: 1px solid var(--color-text); }

  .persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
  }

  .persona-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.35rem 1rem;
    text-align: center;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  }
  .persona-card:hover, .persona-card:focus-within {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
  }
  .persona-icon {
    display: block;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 0.85rem;
  }
  .persona-icon svg { width: 100%; height: 100%; }
  .persona-card h3 {
    font-size: 1.02rem;
    margin: 0;
  }
  .persona-card p {
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: var(--color-text-soft);
  }

  .entlastung-section { background: var(--color-bg-alt); }
  .entlastung-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
  @media (max-width: 900px) { .entlastung-grid { grid-template-columns: 1fr; } }
  .entlastung-pitch h2 { font-size: clamp(1.6rem, 4vw, var(--fs-heading-inner)); margin-top: 0.7rem; }
  .entlastung-pitch > p { margin-top: 1rem; color: var(--color-text-soft); max-width: 46ch; }
  .entlastung-pitch .btn { margin-top: 1.75rem; }
  .entlastung-faq .faq-list { margin-top: 0; max-width: none; }

  .faq-section { padding-top: 0; }
  .faq-list {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 820px;
  }
  details.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
  }
  details.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
  }
  details.faq-item summary::-webkit-details-marker { display: none; }
  details.faq-item summary .plus {
    flex-shrink: 0;
    width: 1.6rem; height: 1.6rem;
    border-radius: 50%;
    background: var(--color-violett);
    color: var(--color-kohle);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
  }
  details.faq-item[open] summary .plus { transform: rotate(45deg); }
  details.faq-item .faq-body {
    padding: 0 1.5rem 1.4rem;
    color: var(--color-text-soft);
    font-size: 0.98rem;
    max-width: 68ch;
  }

  .erbe-section { background: var(--color-bg-alt); }
  .erbe-header { max-width: 64ch; }
  .erbe-header h2 { font-size: clamp(1.6rem, 4vw, var(--fs-heading-inner)); margin-top: 0.6rem; }
  .erbe-header .erbe-sub { margin-top: 1rem; color: var(--color-text-soft); font-family: var(--font-body); font-size: 1.05rem; }

  .erbe-grid {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 640px) { .erbe-grid { grid-template-columns: 1fr; } }

  .recipe-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    background: var(--color-surface);
    color: var(--color-kohle);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 2.5vw, 1.9rem);
    box-shadow: var(--shadow-soft);
  }
  .recipe-card .recipe-icon { width: 84px; height: 84px; }
  .recipe-card h3 { font-size: 1.2rem; }

  .recipe-hero {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.75rem;
    align-items: start;
    background: var(--color-surface);
    color: var(--color-kohle);
    border: 2px solid var(--color-blau);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 3vw, 2.4rem);
    box-shadow: var(--shadow-soft);
  }
  @media (max-width: 640px) { .recipe-hero { grid-template-columns: 1fr; } }
  .recipe-hero .recipe-icon-lg { width: 100%; height: auto; max-width: 150px; justify-self: center; }
  .recipe-hero .recipe-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .recipe-hero h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-top: 0.65rem; }
  .recipe-ingredients {
    margin: 0.75rem 0 0;
    font-size: 0.92rem;
    color: color-mix(in srgb, var(--color-kohle) 78%, transparent);
  }
  .recipe-ingredients strong { color: var(--color-kohle); }
  .recipe-card .recipe-quote,
  .recipe-hero .recipe-quote {
    margin: 0;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.98rem;
    color: color-mix(in srgb, var(--color-kohle) 82%, transparent);
    border-left: 3px solid var(--color-blau);
    padding-left: 0.85rem;
  }
  .recipe-hero .recipe-quote { margin-top: 0.75rem; }
  .recipe-card .recipe-meta,
  .recipe-hero .recipe-meta {
    margin-top: auto;
    padding-top: 0.3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--color-kohle) 75%, transparent);
  }
  .recipe-card .recipe-meta .sep,
  .recipe-hero .recipe-meta .sep { opacity: 0.5; }
  .recipe-card details.recipe-more summary,
  .recipe-hero details.recipe-more summary {
    cursor: pointer;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    color: var(--color-sand);
    background: var(--color-blau);
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    width: fit-content;
  }
  .recipe-card details.recipe-more summary::-webkit-details-marker,
  .recipe-hero details.recipe-more summary::-webkit-details-marker { display: none; }
  .recipe-card details.recipe-more summary svg,
  .recipe-hero details.recipe-more summary svg { width: 1em; height: 1em; flex-shrink: 0; transition: transform 0.2s ease; }
  .recipe-card details.recipe-more[open] summary svg,
  .recipe-hero details.recipe-more[open] summary svg { transform: translateX(3px); }
  .recipe-card details.recipe-more .recipe-story,
  .recipe-hero details.recipe-more .recipe-story {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--color-kohle) 82%, transparent);
  }

  .erbe-cta {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    background: var(--color-blau);
    color: var(--color-sand);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
  }
  .erbe-cta h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
  .erbe-cta p { margin-top: 0.85rem; color: color-mix(in srgb, var(--color-sand) 88%, transparent); }
  .erbe-cta .btn { margin-top: 1.6rem; background: var(--color-violett); color: var(--color-kohle); }

  .ratgeber-header { max-width: 62ch; }
  .ratgeber-header h2 { font-size: clamp(1.6rem, 4vw, var(--fs-heading-inner)); margin-top: 0.6rem; }
  .ratgeber-header p { margin-top: 1rem; color: var(--color-text-soft); }

  .ratgeber-grid {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 900px) { .ratgeber-grid { grid-template-columns: 1fr; } }

  .ratgeber-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    scroll-margin-top: 6.5rem;
  }
  .ratgeber-card h3 { font-size: 1.15rem; }
  .ratgeber-card > p { color: var(--color-text-soft); font-size: 0.98rem; }

  .pill {
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
  }
  .pill-beratung { background: var(--color-blau); color: var(--color-sand); }
  .pill-gesundheit { background: var(--color-gruen); color: var(--color-kohle); }
  .pill-teilhabe { background: var(--color-orange); color: var(--color-kohle); }

  .ratgeber-card .card-meta {
    margin-top: auto;
    padding-top: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.85rem;
  }
  .ratgeber-card .read-time { color: var(--color-text-soft); }
  .ratgeber-card .read-link {
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
  .ratgeber-card .read-link svg { width: 1em; height: 1em; }

  .ratgeber-articles {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
  }
  .ratgeber-article {
    padding-block: clamp(2.25rem, 4vw, 3rem);
    border-top: 1px solid var(--color-border);
    scroll-margin-top: 6.5rem;
  }
  .ratgeber-article .pill { margin-bottom: 0.9rem; }
  .ratgeber-article h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); max-width: 34ch; }
  .ratgeber-article .article-body {
    margin-top: 1.25rem;
    max-width: 68ch;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--color-text-soft);
  }
  .ratgeber-article .article-body h4 {
    font-size: 1.02rem;
    color: var(--color-text);
    margin-top: 0.4rem;
  }
  .ratgeber-article .article-photo {
    margin: 0.25rem 0;
    max-width: 26rem;
  }
  .ratgeber-article .article-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: none;
  }
  .ratgeber-article .article-photo figcaption {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: var(--color-text-soft);
    font-style: italic;
  }
  .ratgeber-article .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    color: var(--color-text);
  }

  .jobs-section { background: var(--color-bg-alt); color: var(--color-kohle); }
  .jobs-inner { max-width: 46rem; }
  .jobs-inner .eyebrow { color: var(--color-text-main); }
  .jobs-inner h2 { margin-top: 0.6rem; font-size: clamp(1.6rem, 4vw, var(--fs-heading-inner)); }
  .jobs-inner .jobs-pitch {
    margin-top: 1.1rem;
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: 1.6;
  }
  .jobs-inner .jobs-note {
    margin-top: 0.9rem;
    font-size: var(--font-size-body);
    color: var(--color-text-main);
  }

  .jobs-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
    max-width: 100%;
  }
  .jobs-badge {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: var(--color-accent-light);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--font-size-tagline);
    line-height: 1.3;
  }
  .jobs-inner .btn {
    margin-top: 1.8rem;
    background: var(--color-violett);
    color: #fff;
    box-shadow: var(--shadow-soft);
  }
  .jobs-inner .btn:hover, .jobs-inner .btn:focus-visible {
    box-shadow: 0 20px 40px -20px rgba(30, 30, 30, 0.45);
  }

  footer.site-footer {
    background: var(--color-text);
    color: var(--color-bg);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
    padding-block: clamp(2rem, 4vw, 2.5rem);
  }
  @media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

  /* Footer-Logo: Negativ-Variante (Marke lila, Schriftzug weiss) auf dunklem Grund. */
  .footer-brand .logo { display: inline-flex; }
  .footer-brand .site-logo { max-height: 44px; }
  .footer-brand p { margin-top: 0.9rem; color: color-mix(in srgb, var(--color-bg) 70%, transparent); max-width: 32ch; font-size: 0.95rem; }

  .footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--color-bg) 78%, transparent);
    margin-bottom: 1rem;
  }
  .footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
  .footer-col a { text-decoration: none; font-size: 0.95rem; }
  .footer-col a:hover { text-decoration: underline; }

  .footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
  .footer-social a {
    width: 2.4rem; height: 2.4rem;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--color-bg) 35%, transparent);
    display: flex; align-items: center; justify-content: center;
  }
  .footer-social svg { width: 1.1rem; height: 1.1rem; }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
  }
  .footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    color: var(--color-bg);
  }
  .footer-contact a:hover { text-decoration: underline; }
  .footer-contact svg {
    width: 1.15rem; height: 1.15rem;
    flex-shrink: 0;
    color: color-mix(in srgb, var(--color-bg) 75%, transparent);
  }

  .footer-person {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
  }
  .footer-person img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid color-mix(in srgb, var(--color-bg) 30%, transparent);
  }
  .footer-person-label {
    display: block;
    font-size: 0.78rem;
    color: color-mix(in srgb, var(--color-bg) 65%, transparent);
  }
  .footer-person strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.02rem;
    color: var(--color-bg);
  }

  .footer-bottom {
    border-top: 1px solid color-mix(in srgb, var(--color-bg) 20%, transparent);
    padding-block: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: space-between;
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--color-bg) 80%, transparent);
  }
  .footer-bottom ul { display: flex; gap: 1.25rem; flex-wrap: wrap; }
  .footer-bottom a { text-decoration: none; }
  .footer-bottom a:hover { text-decoration: underline; }

  .wrap,
  .hero-grid,
  .services-grid,
  .about-grid { z-index: 5; }

  [hidden] { display: none !important; }

  #dc-root, .sc-host { height: auto !important; min-height: 100%; }

  /* ============ Leistungskacheln: Trigger "Im Detail enthalten +" fuer das Pop-up ============ */
  /* Ersetzt das fruehere <summary> und rendert exakt gleich: fetter Text + lila
     Kreis-Icon mit weissem Plus. Der <button> bekommt hier bewusst KEINE
     Button-Optik (appearance:none entfernt den grauen System-Rahmen). */
  .service-card .service-more-trigger {
    -webkit-appearance: none;
    appearance: none;
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.1rem 0.5rem 0.5rem;
    background: var(--color-surface);
    border: 1.5px solid var(--color-violett);
    border-radius: 999px;
    box-shadow: 0 2px 8px -4px rgba(30, 22, 15, 0.18);
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: left;
    color: var(--color-kohle);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .service-card .service-more-trigger:hover,
  .service-card .service-more-trigger:focus-visible {
    background: var(--color-bg-alt);
    border-color: var(--color-violett);
    transform: translateY(-1px);
  }
  .service-card .service-more-trigger .plus {
    flex-shrink: 0;
    width: 1.5rem; height: 1.5rem;
    border-radius: 50%;
    background: var(--color-violett);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.2s ease;
  }
  .service-card .service-more-trigger:hover .plus,
  .service-card .service-more-trigger:focus-visible .plus { transform: scale(1.08); }

  /* ============ Modal / Pop-up-Overlay ============ */
  body.modal-open,
  body.nav-open { overflow: hidden; }

  .modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2.5rem);
  }

  .modal__backdrop {
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--color-kohle) 58%, transparent);
    animation: modal-fade 0.25s ease-out;
  }

  .modal__dialog {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: min(88vh, 900px);
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px -30px rgba(30, 22, 15, 0.55);
    overflow: hidden;
    animation: modal-rise 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  @keyframes modal-fade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes modal-rise {
    from { opacity: 0; transform: translateY(16px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @media (prefers-reduced-motion: reduce) {
    .modal__backdrop, .modal__dialog { animation: none; }
  }

  .modal__header {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2rem) 1rem;
    border-bottom: 1px solid var(--color-border);
  }
  .modal__title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    line-height: 1.2;
  }
  /* Schliessen-Button: klar beschriftet, lila Rahmen, Klickflaeche >= 48x48px */
  .modal__close {
    -webkit-appearance: none;
    appearance: none;
    flex-shrink: 0;
    margin-left: auto;
    min-width: 48px;
    min-height: 48px;
    padding: 0.55rem 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    border: 2px solid var(--color-violett);
    background: var(--color-surface);
    color: var(--color-kohle);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  }
  .modal__close svg { width: 0.95rem; height: 0.95rem; flex-shrink: 0; }
  .modal__close:hover,
  .modal__close:focus-visible {
    background: color-mix(in srgb, var(--color-violett) 16%, var(--color-surface));
    border-color: var(--color-kohle);
    color: var(--color-kohle);
  }

  .modal__body {
    flex: 1 1 auto;
    min-height: 0;
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.35rem, 3vw, 2rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .modal__intro {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-soft);
  }

  .modal__blocks {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    counter-reset: modal-block;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
  }
  .modal__block {
    counter-increment: modal-block;
    position: relative;
    padding-left: 3rem;
  }
  .modal__block::before {
    content: counter(modal-block);
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 2rem; height: 2rem;
    border-radius: 50%;
    background: var(--color-violett);
    color: var(--color-kohle);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
  }
  .modal__block h3 {
    font-size: 1.05rem;
    margin: 0 0 0.3rem;
  }
  .modal__block p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--color-text-soft);
  }

  .modal__note {
    margin-top: 1.5rem;
    padding: 0.9rem 1.1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text-soft);
  }

  .modal__footer {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1rem clamp(1.35rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid var(--color-border);
  }
  .modal__footer .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  /* "Zurueck zur Uebersicht": zentriert, gut lesbar, schliesst das Modal */
  .modal__back {
    -webkit-appearance: none;
    appearance: none;
    min-height: 48px;
    padding: 0.5rem 0.9rem;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-soft);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transition: color 0.18s ease;
  }
  .modal__back:hover,
  .modal__back:focus-visible { color: var(--color-kohle); }

  /* ---- Kachel-Detail-Modals exakt auf die jeweilige Kachel abgestimmt ----
     mid  = Kachel-Outline (Handbuch "Outlines bei Kacheln")
     dark = "+"-Kreis / Button-Outline der Kachel ("Outlines bei Buttons, +") */
  .modal--violet { --modal-mid: var(--b1-mid); --modal-dark: var(--b1-dark); }
  .modal--orange { --modal-mid: var(--b2-mid); --modal-dark: var(--b2-dark); }
  .modal--green  { --modal-mid: var(--b3-mid); --modal-dark: var(--b3-dark); }
  .modal--sand   { --modal-mid: var(--b4-mid); --modal-dark: var(--b4-dark); }

  .modal--tinted .modal__dialog {
    border: 2.5px solid var(--modal-mid);   /* = Kachelrahmen */
  }
  .modal--tinted .modal__header,
  .modal--tinted .modal__footer { border-color: var(--modal-mid); }

  .modal--tinted .modal__block::before {   /* Zahlen = "+"-Kreis der Kachel */
    background: var(--modal-dark);
    color: #fff;
  }
  .modal--tinted .modal__footer .btn-primary {   /* Button = Bereichston */
    background: var(--modal-dark);
    color: #fff;
    box-shadow: none;
  }
  .modal--tinted .modal__footer .btn-primary:hover {
    box-shadow: 0 22px 40px -22px color-mix(in srgb, var(--modal-dark) 70%, transparent);
  }
  .modal--tinted .modal__close { border-color: var(--modal-dark); }   /* = Trigger-Outline */
  .modal--tinted .modal__close:hover,
  .modal--tinted .modal__close:focus-visible {
    background: color-mix(in srgb, var(--modal-dark) 16%, var(--color-surface));
    border-color: var(--modal-dark);
  }
  .modal--tinted .modal__note {
    background: color-mix(in srgb, var(--modal-mid) 22%, var(--color-surface));
    border-color: var(--modal-mid);
  }

  @media (max-width: 768px) {
    .modal { padding: 0; align-items: stretch; }
    .modal__dialog {
      width: 100%;
      max-height: 100dvh;
      max-height: 100vh;
      border-radius: 0;
      border: 0;
    }
    .modal__title { font-size: 1.15rem; }
    .modal__header { gap: 0.6rem; }
    .modal__close { padding: 0.5rem 0.7rem; font-size: 0.75rem; letter-spacing: 0.04em; }
  }

  /* ---------- Alltagsprofil-Widget ---------- */
  .profile-widget-wrap {
    max-width: 560px;
    margin: 1.5rem auto 0;
  }

  .profile-widget-eyebrow {
    margin: 0 0 0.6rem;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-soft);
  }

  .profile-widget-intro {
    margin: 0 0 1rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--color-text-main);
  }

  /* Hinweis: die Online-Auswahl ist nur eine erste Orientierung – Details
     klaeren wir im Erstgespraech. Nimmt Druck aus der Auswahl. */
  .matching-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin: 0 0 1.25rem;
    padding: clamp(0.95rem, 2.5vw, 1.3rem) clamp(1rem, 3vw, 1.4rem);
    background: var(--color-accent-light);
    border: 1px solid var(--color-lavender);
    border-radius: var(--radius-md);
    color: var(--color-text-main);
    font-size: 0.96rem;
    line-height: 1.6;
  }
  .matching-disclaimer svg {
    flex-shrink: 0;
    width: 1.4rem;
    height: 1.4rem;
    margin-top: 0.15rem;
    color: var(--color-primary);
  }
  .matching-disclaimer p { margin: 0; }

  @media (max-width: 768px) {
    .profile-widget-intro { font-size: 1rem; }
    .matching-disclaimer {
      gap: 0.65rem;
      padding: 0.9rem 1rem;
      font-size: 0.92rem;
    }
    .matching-disclaimer svg { width: 1.25rem; height: 1.25rem; }
  }

  .profile-widget {
    width: 100%;
    max-width: 100%;
    padding: clamp(1rem, 4vw, 1.5rem);
    background: var(--color-surface);
    border: 1px solid var(--color-tile-border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }

  .profile-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .profile-step-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--color-tile-border);
    background: var(--color-surface);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--color-text-soft);
  }
  .profile-step-dot.is-active {
    background: var(--color-violett);
    border-color: var(--color-violett);
    color: var(--color-kohle);
  }
  .profile-step-dot.is-done {
    background: color-mix(in srgb, var(--color-violett) 30%, var(--color-surface));
    color: var(--color-kohle);
  }

  .profile-panel { display: none; }
  .profile-panel.is-active { display: block; animation: fadeInUp 0.35s ease-out; }

  .profile-question {
    margin: 0 0 1rem;
    text-align: center;
    font-size: var(--fs-heading-sm);
  }

  .profile-back {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    color: var(--color-text-soft);
    cursor: pointer;
  }
  .profile-back:hover,
  .profile-back:focus-visible { color: var(--color-kohle); }

  .profile-options { display: flex; flex-wrap: wrap; gap: 0.6rem; }

  /* Schritt 1: zwei volle Breite Buttons untereinander - grosszuegige
     Touch-Flaeche statt zweier schmaler Spalten bei 375px Breite. */
  .profile-options-stack { flex-direction: column; }
  .profile-option-wide {
    width: 100%;
    text-align: center;
    text-transform: none;
    font-size: 0.95rem;
  }

  .profile-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .profile-options-grid .profile-option-span { grid-column: 1 / -1; }

  .profile-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 64px;
    padding: 0.9rem 0.75rem;
    border-radius: 14px;
    border: 1.5px solid var(--color-tile-border);
    background: var(--color-surface);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    color: var(--color-kohle);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .profile-option:hover,
  .profile-option:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px -16px rgba(30, 22, 15, 0.4);
    border-color: var(--color-violett);
  }
  .profile-option-emoji {
    font-size: 1.6rem;
    line-height: 1;
  }

  .profile-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }
  .profile-result-kicker {
    max-width: 32ch;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-kohle);
  }
  .profile-result-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }
  .profile-result-avatar svg { width: 60px; height: 60px; }
  .profile-result-main strong {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-kohle);
  }
  .profile-result-facets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .profile-facet-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--color-violett) 14%, var(--color-surface));
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--color-kohle);
  }
  .profile-facet-chip svg { width: 20px; height: 20px; flex-shrink: 0; }
  .profile-result-text {
    max-width: 42ch;
    font-size: 0.92rem;
    color: var(--color-text-soft);
  }
  .profile-restart {
    margin-top: 0.1rem;
    padding: 0;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    color: var(--color-text-soft);
    cursor: pointer;
  }
  .profile-restart:hover,
  .profile-restart:focus-visible { color: var(--color-kohle); }

  /* ---------- Prozess-Sektion: "Vom Erstgespraech zur Entlastung" ---------- */
  .process-section {
    background: var(--color-accent-light);  /* Designer: Lavendel-Band (#E5E0F0) */
  }

  .process-heading {
    margin-top: 0.6rem;
    font-size: clamp(1.6rem, 4vw, var(--fs-heading-inner));
    max-width: 32ch;
  }

  .process-sub {
    margin-top: 0.6rem;
    max-width: 58ch;
    font-size: var(--font-size-body);
    color: var(--color-text-main);
  }

  /* Mobil (Basis): nummerierte Karten untereinander, dezenter Pfeil dazwischen */
  .process-timeline {
    list-style: none;
    margin: clamp(2rem, 4vw, 3rem) 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 100%;
  }
  /* Auf Mobil soll die Nummer immer links stehen; die up/down-Klassen
     bestimmen erst ab Desktop (dort per grid-row) Ober-/Unterhalb-Position. */
  .process-step-up { flex-direction: row-reverse; }

  .process-step:not(:last-child) { padding-bottom: 1.5rem; }
  .process-step:not(:last-child)::after {
    content: '↓';
    position: absolute;
    left: 20px;
    bottom: -0.1rem;
    transform: translateX(-50%);
    color: var(--color-primary);
    font-size: 1.1rem;
    line-height: 1;
  }

  /* Zahlen-Badges: mittig, sitzen zentriert auf der Ablauf-Linie. */
  .process-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    z-index: 1;
  }

  .process-step-card {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    background: var(--color-surface);
    border: 1px solid var(--color-tile-border);
    border-radius: 14px;
    padding: 0.9rem 1rem;
  }
  .process-step-card h3 {
    font-size: 1rem;
    line-height: 1.3;
    color: var(--color-text-main);
  }
  .process-step-card p {
    margin-top: 0.4rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-text-main);
  }

  /* Desktop: horizontale Zeitleiste mit zarter Verbindungslinie, Karten
     wechseln zwischen oberhalb/unterhalb der Linie fuer den geschwungenen
     Ablauf-Charakter. */
  @media (min-width: 900px) {
    .process-timeline {
      flex-direction: row;
      align-items: stretch;
      gap: 0.75rem;
      position: relative;
      padding: 3rem 0;
    }
    .process-timeline::before {
      content: '';
      position: absolute;
      left: 20px;
      right: 20px;
      top: 50%;
      height: 2px;
      transform: translateY(-50%);
      background: color-mix(in srgb, var(--color-primary) 55%, transparent);
      z-index: 0;
    }

    /* Jede Karte wird absolut mit gleichem Abstand ober- bzw. unterhalb der
       Linie (= 50 % des Schritts) platziert -> Ober-/Unterkante immer exakt
       symmetrisch zur Mittellinie, unabhaengig von der Kartenhoehe. */
    .process-step {
      flex: 1;
      min-width: 0;
      min-height: 24rem;
      text-align: center;
      padding-bottom: 0;
      position: relative;
    }
    .process-step:not(:last-child)::after { content: none; }

    /* Zahl exakt auf der senkrechten Schritt-Mitte = auf der Ablauf-Linie. */
    .process-badge {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .process-step-card {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 210px;
      max-width: none;
    }
    .process-step-up .process-step-card { bottom: calc(50% + 2.75rem); }
    .process-step-down .process-step-card { top: calc(50% + 2.75rem); }
  }

  /* ---------- Naechste Veranstaltung (Startseiten-Teaser) ---------- */
  .event-teaser-section {
    background: color-mix(in srgb, var(--color-sand) 30%, var(--color-surface));
  }

  .event-teaser { max-width: 760px; }

  .event-teaser-head {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-top: 0.75rem;
  }

  .event-card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--color-violett);
    color: var(--color-kohle);
  }
  .event-card-day {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.1;
  }
  .event-card-month {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .event-teaser-title {
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    max-width: 32ch;
  }
  .event-teaser-highlight {
    margin-top: 0.3rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-kohle);
  }

  .event-teaser-meta {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-soft);
  }

  .event-teaser-text {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 65ch;
    color: var(--color-text);
  }

  .event-teaser-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
  }

  /* ---------- Veranstaltungen-Panel (Slide-Over / Bottom-Sheet) ---------- */
  .events-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .events-filter-tab {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    border: 1.5px solid var(--color-tile-border);
    background: var(--color-surface);
    color: var(--color-kohle);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
  }
  .events-filter-tab:hover,
  .events-filter-tab:focus-visible { border-color: var(--color-violett); }
  .events-filter-tab.is-active {
    background: var(--color-violett);
    border-color: var(--color-violett);
  }

  .events-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }
  .events-empty {
    color: var(--color-text-soft);
    font-size: 0.95rem;
  }

  .event-card {
    display: flex;
    gap: 1rem;
    padding: 1.1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-tile-border);
    border-radius: 16px;
  }
  .event-card .event-card-date { width: 56px; height: 56px; border-radius: 14px; }
  .event-card .event-card-day { font-size: 1.2rem; }
  .event-card-body { flex: 1; min-width: 0; }
  .event-card-title {
    font-size: 1.05rem;
    line-height: 1.3;
  }
  .event-card-highlight {
    margin-top: 0.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-kohle);
  }
  .event-card-summary {
    margin-top: 0.4rem;
    font-size: 0.92rem;
    color: var(--color-text-soft);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .event-card-meta {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--color-text-soft);
  }
  .event-card-more { margin-top: 0.6rem; }
  .event-card-more summary {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--color-blau);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    cursor: pointer;
    list-style: none;
  }
  .event-card-more summary::-webkit-details-marker { display: none; }
  .event-card-description {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--color-text);
  }
  .event-card-signup {
    margin-top: 0.85rem;
    min-height: 48px;
    padding: 0.7rem 1.4rem;
    font-size: 0.82rem;
  }

  /* #eventsPanel ist ein normales .modal (siehe Modal/Pop-up-Overlay weiter
     oben) - hier nur die Position/Animation ueberschrieben: Slide-Over von
     rechts auf Desktop, Bottom-Sheet auf Mobil. Oeffnen/Schliessen, Fokus-
     Falle, ESC und Backdrop-Klick laufen ueber die bestehende Modal-Logik. */
  #eventsPanel {
    justify-content: flex-end;
    padding: 0;
  }
  #eventsPanel .modal__dialog {
    width: min(460px, 100%);
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    animation: events-panel-slide-in-right 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  #eventsPanel .modal__close {
    min-width: 48px;
    min-height: 48px;
  }
  @keyframes events-panel-slide-in-right {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    #eventsPanel .modal__dialog { animation: none; }
  }

  @media (max-width: 768px) {
    #eventsPanel {
      align-items: flex-end;
    }
    #eventsPanel .modal__dialog {
      width: 100%;
      height: auto;
      max-height: 86dvh;
      max-height: 86vh;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      animation: events-panel-slide-in-up 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
    }
    @keyframes events-panel-slide-in-up {
      from { transform: translateY(100%); }
      to { transform: translateY(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      #eventsPanel .modal__dialog { animation: none; }
    }
  }

  /* ---------- Chemie-Check-Teaser (unter dem Alltagsprofil-Widget) ---------- */
  .chemie-teaser {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--color-tile-border);
    text-align: center;
  }
  .chemie-teaser-title { font-size: var(--fs-heading-sm); }
  .chemie-teaser-sub {
    margin: 0.5rem auto 0;
    max-width: 52ch;
    color: var(--color-text-soft);
  }

  .chemie-teaser-cards {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem auto 0;
    max-width: 620px;
  }
  .chemie-teaser-card {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.9rem 0.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-tile-border);
    border-radius: 14px;
  }
  .chemie-teaser-icon {
    display: flex;
    justify-content: center;
  }
  .chemie-teaser-icon svg { width: 36px; height: 36px; }
  .chemie-teaser-card h4 {
    margin-top: 0.55rem;
    font-size: 0.9rem;
  }
  .chemie-teaser-card p {
    margin-top: 0.3rem;
    font-size: 0.8rem;
    line-height: 1.35;
    color: var(--color-text-soft);
  }

  .chemie-teaser-cta { margin-top: 1.5rem; }
