/* ============================================================
   Osteopathie am Stadtpark · components.css
   Stand: 2026-05-14 · zentralisiert aus inline-style-Blöcken
   ============================================================

   Sektions-spezifische Klassen. Lädt NACH base.css.
   Default-Werte werden hier definiert; reduced-motion-Overrides
   bleiben pro Komponente lokal (nach den Default-Transitions).
   ============================================================ */

  /* ============================================================
     Hero · Variante B · Vollbild-Bild mit Park-Moss-Overlay
     ============================================================ */
  .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    --hero-webp: url('/img/osteopathie-praxis-luebeck-behandlungsraum.webp');
    --hero-jpg: url('/img/osteopathie-praxis-luebeck-behandlungsraum.jpg');
    background-image:
      linear-gradient(180deg, rgba(31, 42, 38, 0.62) 0%, rgba(31, 42, 38, 0.48) 38%, rgba(63, 91, 71, 0.72) 100%),
      image-set(var(--hero-webp) type('image/webp'), var(--hero-jpg) type('image/jpeg'));
    background-size: cover;
    background-position: center 40%;
    color: var(--bg);
    display: grid;
    place-items: center;
    padding: clamp(96px, 12vw, 144px) var(--gutter);
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 50% 35%, transparent 30%, rgba(31, 42, 38, 0.22) 100%);
    pointer-events: none;
    z-index: 0;
  }
  .hero > * { position: relative; z-index: 1; }

  /* Scroll-Indikator: editoriale Linie mit fließendem Dot */
  .hero__scroll {
    position: absolute;
    bottom: clamp(20px, 4vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--bg);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.88;
    padding: 12px 16px;
    min-height: 44px;
    transition: opacity 220ms ease;
    z-index: 2;
  }
  .hero__scroll:hover, .hero__scroll:focus-visible { opacity: 1; }
  .hero__scroll-text { white-space: nowrap; text-shadow: 0 1px 2px rgba(31, 42, 38, 0.4); }
  .hero__scroll-line {
    width: 1.5px;
    height: 64px;
    background: rgba(250, 247, 242, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 6px rgba(31, 42, 38, 0.18);
  }
  .hero__scroll-line::after {
    content: "";
    position: absolute;
    top: -14px;
    left: -2px;
    width: 5.5px;
    height: 14px;
    background: var(--bg);
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(250, 247, 242, 0.45);
    animation: scroll-flow 2.6s cubic-bezier(.65, .05, .36, 1) infinite;
  }
  @keyframes scroll-flow {
    0%   { top: -14px; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 64px; opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero__scroll-line::after {
      animation: none;
      top: 24px;
      opacity: 0.6;
    }
  }
  .hero__text {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative; z-index: 1;
  }
  .hero .eyebrow {
    color: rgba(250, 247, 242, 0.85);
    display: block;
    line-height: 1.6;
    max-width: none;
    margin: 0 auto 18px;
  }
  .hero .eyebrow > span { display: block; }
  .hero__h1 {
    font-size: clamp(2.4rem, 5.6vw, 4.6rem);
    line-height: 1.05; letter-spacing: -0.025em;
    font-weight: 500;
    color: var(--bg);
    margin: 0 0 24px;
    text-wrap: balance;
  }
  .hero__h1 em {
    font-style: italic;
    color: rgba(250, 247, 242, 0.85);
    font-weight: 500;
  }
  .hero__lead {
    font-family: var(--serif);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.55;
    color: rgba(250, 247, 242, 0.92);
    max-width: 58ch;
    margin: 0 auto 28px;
  }
  .hero__ctas {
    display: flex; gap: 12px; flex-wrap: wrap;
    align-items: center; justify-content: center;
  }
  .hero__ctas .btn--primary {
    background: var(--bg); color: var(--primary);
    border-color: var(--bg);
  }
  .hero__ctas .btn--primary:hover {
    background: var(--surface); color: var(--primary-hover);
    border-color: var(--surface);
  }
  .hero__ctas .tel-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 8px; min-height: 44px;
    color: var(--bg); text-decoration: none; font-weight: 500; font-size: 15px;
  }
  .hero__ctas .tel-cta:hover { color: rgba(250, 247, 242, 0.8); }
  .hero__ctas .tel-cta svg { width: 18px; height: 18px; }
  .hero__ctas .tel-cta small {
    display: block; font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.78);
    font-weight: 500; margin-bottom: 2px;
  }
  .figure-label {
    position: absolute; top: -32px; left: 0;
    font-family: var(--sans); font-size: 11px;
    letter-spacing: 0.2em; color: var(--text-tertiary);
    text-transform: uppercase;
  }
  .figure-caption {
    margin-top: 14px;
    font-family: var(--serif); font-style: italic; font-size: 14px;
    color: var(--text-secondary); line-height: 1.5; max-width: 36ch;
  }

  /* ============================================================
     Patient-Profiles
     ============================================================ */
  /* Patient-Profile · Editorial-Inhaltsverzeichnis (Variante D) */
  .profiles-section { padding-block: var(--section-gap); }
  .profiles-section .wrap { max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter); }
  .profiles-intro { max-width: 760px; margin-bottom: clamp(48px, 6vw, 72px); }
  .profiles-intro h2 { margin: 8px 0 20px; }
  .profiles-intro p { color: var(--text); font-size: 16px; line-height: 1.65; max-width: 56ch; }

  ul.profiles-list {
    list-style: none; padding: 0; margin: 0;
    border-top: 1px solid var(--border);
  }

  .profile {
    display: grid;
    grid-template-columns: clamp(56px, 6vw, 80px) 1fr auto;
    gap: clamp(20px, 3vw, 48px);
    padding: clamp(28px, 3vw, 40px) 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: padding-left 220ms ease, background-color 220ms ease;
  }
  @media (prefers-reduced-motion: no-preference) {
    .profile:hover {
      padding-left: 16px;
    }
  }

  .profile__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.03em;
    margin: 0;
    display: block;
  }

  .profile__content { display: block; }
  .profile__content h3 {
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1.5vw, 1.3rem);
    font-weight: 500;
    margin: 0 0 6px;
    line-height: 1.3;
    color: var(--text);
  }
  .profile__content p {
    font-size: 14.5px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
    max-width: 64ch;
  }

  .profile__icon {
    width: 56px;
    height: 56px;
    color: var(--primary);
    opacity: 1;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
  }
  .profile__icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.6;
  }
  @media (prefers-reduced-motion: no-preference) {
    .profile:hover .profile__icon {
      background: var(--primary);
      color: var(--bg);
      border-color: var(--primary);
      transform: rotate(-6deg);
    }
  }
  @media (max-width: 720px) {
    .profile { grid-template-columns: 48px 1fr; }
    .profile__icon { display: none; }
  }

  /* ============================================================
     3 Etagen
     ============================================================ */
  .etagen {
    background: var(--surface);
    margin-block: var(--section-gap);
    padding-block: var(--section-gap);
  }
  section.etagen + section { padding-top: var(--section-gap); }
  .etagen__grid {
    max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter);
    display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(40px, 6vw, 80px);
  }
  @media (max-width: 880px) { .etagen__grid { grid-template-columns: 1fr; } }
  .etagen__intro h2 { margin-bottom: 16px; }
  .etagen__intro p { font-family: var(--serif); font-size: 1.05rem; line-height: 1.55; color: var(--text); }
  .etagen__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
  .etagen__item {
    display: grid; grid-template-columns: 80px 1fr;
    gap: 24px; padding-block: 28px;
    border-bottom: 1px solid var(--border);
  }
  .etagen__item:last-child { border-bottom: 0; }
  .etagen__abbr {
    font-family: var(--serif); font-size: 24px;
    color: var(--primary); letter-spacing: 0.04em;
    line-height: 1; padding-top: 4px;
  }
  .etagen__item h3 { margin-bottom: 8px; font-size: 1.2rem; font-weight: 500; }
  .etagen__item p { margin: 0; font-size: 15.5px; color: var(--text-secondary); line-height: 1.6; }

  /* ============================================================
     Pull-Quote
     ============================================================ */
  .pullquote {
    text-align: center;
    padding-block: var(--section-gap);
    padding-inline: var(--gutter);
    margin: 0 auto; max-width: 1080px;
  }
  .pullquote blockquote {
    margin: 0; font-family: var(--serif); font-style: italic; font-weight: 400;
    font-size: clamp(1.4rem, 3.2vw, 2.1rem); line-height: 1.32;
    letter-spacing: -0.012em; color: var(--text);
    position: relative; padding-top: 24px;
  }
  .pullquote blockquote::before {
    content: "\201C"; font-family: var(--serif);
    font-size: 80px; line-height: 0.8; color: var(--accent);
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  }
  .pullquote cite {
    display: block; margin-top: 24px; font-style: normal;
    font-family: var(--sans); font-size: 12px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--text-tertiary);
  }

  /* ============================================================
     Vorgehen
     ============================================================ */
  .steps__intro { max-width: 760px; margin-bottom: 56px; }
  .steps__list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0; border-top: 1px solid var(--border);
  }
  @media (max-width: 880px) { .steps__list { grid-template-columns: 1fr; } }
  .step { padding: 40px 32px 40px 0; border-bottom: 1px solid var(--border); }
  .step + .step { padding-left: 32px; border-left: 1px solid var(--border); }
  @media (max-width: 880px) { .step + .step { border-left: 0; padding-left: 0; } }
  .step__num {
    font-family: var(--serif); font-size: clamp(3rem, 5vw, 4.25rem);
    line-height: 0.9; color: var(--primary); font-weight: 400;
    display: block; margin-bottom: 24px; letter-spacing: -0.04em;
  }
  .step h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 12px; }
  .step p { font-size: 15.5px; color: var(--text-secondary); margin: 0; line-height: 1.6; }

  /* ============================================================
     Mid-Page CTA Box (Conversion)
     ============================================================ */
  .mid-cta {
    background: var(--primary);
    color: var(--bg);
    padding-block: clamp(48px, 7vw, 72px);
    margin-block: var(--section-gap) 0;
  }
  .mid-cta__inner {
    max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter);
    display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 48px); align-items: center;
  }
  @media (max-width: 880px) {
    .mid-cta__inner { grid-template-columns: 1fr; align-items: start; }
  }
  .mid-cta h2, .mid-cta h3 {
    color: var(--bg); font-family: var(--serif); font-weight: 400;
    font-size: clamp(1.4rem, 3vw, 1.85rem); line-height: 1.2;
    margin: 0 0 12px; letter-spacing: -0.014em;
  }
  .mid-cta p { color: rgba(250,247,242, 0.8); margin: 0; font-size: 15.5px; max-width: 50ch; }
  .mid-cta__actions { display: flex; flex-direction: column; gap: 10px; }
  .mid-cta__actions .btn--primary { background: var(--bg); color: var(--primary); border-color: var(--bg); }
  .mid-cta__actions .btn--primary:hover { background: var(--surface); color: var(--primary-hover); border-color: var(--surface); }
  .mid-cta__tel {
    display: inline-flex; align-items: center; gap: 10px;
    color: rgba(250,247,242, 0.92); text-decoration: none;
    font-size: 14px; padding: 10px 0; min-height: 44px;
  }
  .mid-cta__tel:hover { color: var(--bg); text-decoration: underline; }
  .mid-cta__tel svg { width: 16px; height: 16px; opacity: 0.8; }

  /* ============================================================
     Editorial-Anker
     ============================================================ */
  .anchor {
    background: var(--surface-deep);
    margin-block: 0 var(--section-gap);
    padding-block: var(--section-gap);
  }
  .anchor__grid {
    max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter);
    display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: clamp(40px, 6vw, 80px); align-items: center;
  }
  @media (max-width: 880px) { .anchor__grid { grid-template-columns: 1fr; } .anchor__media { order: -1; } }
  .anchor__media figure { margin: 0; position: relative; }
  .anchor__media img {
    width: 100%; height: auto; display: block; aspect-ratio: 1066 / 1600;
    object-fit: cover; object-position: 50% 0%;
    border-radius: var(--radius); filter: saturate(0.9) brightness(1.02);
  }
  .anchor__intro h2 { margin-bottom: 16px; max-width: 18ch; }
  .anchor__intro p { font-size: 16.5px; color: var(--text); line-height: 1.7; max-width: 50ch; }

  /* ============================================================
     "Wann nicht das Richtige", HWG-Section
     ============================================================ */
  /* Kontraindikationen, Editorial-2-Spalten mit Lineart-Icons */
  .contra { max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter); }
  .contra__head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 56px); }
  .contra__head h2 {
    margin: 14px 0 18px;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    line-height: 1.1; letter-spacing: -0.02em;
  }
  .contra__head h2 em {
    font-style: italic; color: var(--accent); font-weight: 500;
  }
  .contra__lead {
    font-family: var(--serif);
    font-size: 16.5px; line-height: 1.65; color: var(--text);
    margin: 0; max-width: 720px;
  }
  .contra__list, .contra__grid {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
  }
  @media (max-width: 720px) {
    .contra__list, .contra__grid { grid-template-columns: 1fr; }
  }
  .contra__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 22px;
    row-gap: 0;
    padding: 32px 28px 32px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }
  .contra__grid .contra__item > h3,
  .contra__grid .contra__item > p {
    grid-column: 2;
  }
  .contra__grid .contra__item > h3 {
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.3;
  }
  .contra__grid .contra__item > p {
    margin: 0;
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: none;
  }
  .contra__item:nth-child(odd) { border-right: 1px solid var(--border); }
  .contra__item:nth-child(even) { padding-left: 32px; padding-right: 0; }
  @media (max-width: 720px) {
    .contra__item:nth-child(odd) { border-right: 0; padding-right: 0; }
    .contra__item:nth-child(even) { padding-left: 0; }
  }
  .contra__icon {
    width: 48px; height: 48px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--accent);
    flex-shrink: 0;
  }
  .contra__icon svg { width: 24px; height: 24px; }
  .contra__body dt {
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--text);
    margin: 0 0 6px;
    line-height: 1.3;
  }
  .contra__body dd {
    margin: 0 0 10px;
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.55;
  }
  .contra__action {
    margin: 0;
    font-family: var(--sans);
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .contra__action::before {
    content: "→";
    display: inline-block;
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1;
  }
  .contra__foot {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 18px;
    align-items: start;
    margin-top: clamp(36px, 5vw, 56px);
    padding: 22px 28px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    max-width: 1080px;
  }
  .contra__foot svg {
    width: 22px; height: 22px;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
  }
  .contra__foot p {
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    max-width: none;
  }
  .contra__foot a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-style: normal;
    font-weight: 500;
  }
  .contra__foot a:hover { color: var(--accent); }


  /* ============================================================
     Story
     ============================================================ */
  .story {
    max-width: 760px; margin: 0 auto; padding-inline: var(--gutter);
    border-left: 2px solid var(--primary);
    padding-left: clamp(24px, 4vw, 40px);
  }
  .story__tag {
    font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--accent);
    margin: 0 0 12px; font-weight: 500;
  }
  .story h2 {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    margin-bottom: 16px;
  }
  .story p {
    font-family: var(--serif); font-size: 1.05rem;
    color: var(--text); line-height: 1.65;
  }
  .story__note {
    margin-top: 20px; font-size: 13px;
    color: var(--text-tertiary); font-style: italic;
    font-family: var(--sans);
  }

  /* ============================================================
     Trust-Bullets
     ============================================================ */
  .trust { margin-block: var(--section-gap) 0; padding-block: clamp(48px, 7vw, 80px); }
  .trust__inner { max-width: 1080px; margin: 0 auto; padding-inline: var(--gutter); }
  .trust__head { margin-bottom: 32px; }
  .trust__list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .trust__item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 4px 0;
  }
  .trust__icon {
    width: 32px; height: 32px; flex-shrink: 0;
    color: var(--primary); padding-top: 2px;
  }
  .trust__item strong { display: block; font-weight: 500; color: var(--text); margin-bottom: 4px; font-size: 15.5px; }
  .trust__item span { color: var(--text-secondary); font-size: 14.5px; line-height: 1.55; }

  /* ============================================================
     FAQ, Editorial 2-Col: Sticky Intro + Accordion-Stack
     ============================================================ */
  .faq { padding-block: var(--section-gap); background: var(--surface); }
  .faq__grid {
    max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
  }
  @media (max-width: 880px) {
    .faq__grid { grid-template-columns: 1fr; gap: 32px; }
  }
  .faq__intro {
    align-self: start;
    max-width: 38ch;
  }
  @media (min-width: 881px) {
    .faq__intro { position: sticky; top: 96px; }
  }
  .faq__intro .eyebrow { margin-bottom: 14px; }
  .faq__intro h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
  }
  .faq__intro-lead {
    color: var(--text-secondary);
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 36ch;
  }
  .faq__cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
    min-height: 32px;
    transition: gap var(--transition), color var(--transition);
  }
  .faq__cta svg { width: 14px; height: 14px; transition: transform var(--transition); }
  @media (hover: hover) and (pointer: fine) {
    .faq__cta:hover { color: var(--primary-hover); gap: 12px; }
    .faq__cta:hover svg { transform: translateX(2px); }
  }
  .faq__cta:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; border-radius: 4px; }

  .faq__list {
    border-top: 1px solid var(--border);
  }
  .faq__item {
    border-bottom: 1px solid var(--border);
  }
  .faq__item > summary {
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 26px 4px;
    align-items: baseline;
    min-height: 44px;
    transition: color var(--transition);
  }
  .faq__item > summary::-webkit-details-marker { display: none; }
  .faq__item > summary::after {
    content: ""; align-self: center;
    width: 12px; height: 12px;
    border-right: 1.5px solid var(--primary);
    border-bottom: 1.5px solid var(--primary);
    transform: rotate(45deg);
    transition: transform 220ms var(--ease-out-quart);
  }
  .faq__item[open] > summary::after {
    transform: rotate(-135deg);
  }
  .faq__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.03em;
  }
  .faq__q {
    font-family: var(--serif);
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    transition: color var(--transition);
  }
  @media (hover: hover) and (pointer: fine) {
    .faq__item > summary:hover .faq__q { color: var(--primary); }
  }
  .faq__item > summary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
  }
  .faq__body {
    padding: 4px 0 28px 44px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    max-width: 60ch;
  }
  .faq__body p { margin: 0; }
  .faq__body p + p { margin-top: 12px; }
  @media (max-width: 480px) {
    .faq__body { padding-left: 0; }
  }

  /* ============================================================
     Inquiry Form
     ============================================================ */
  .form-section {
    background: var(--surface);
    margin-block: var(--section-gap) 0;
    padding-block: var(--section-gap);
  }
  .form-grid {
    max-width: 1080px; margin: 0 auto; padding-inline: var(--gutter);
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(32px, 5vw, 64px);
  }
  @media (max-width: 880px) { .form-grid { grid-template-columns: 1fr; } }
  .form-intro h2 { margin-bottom: 16px; }
  .form-intro p { color: var(--text); line-height: 1.65; max-width: 38ch; }
  .form-intro .small {
    margin-top: 24px; padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px; color: var(--text-secondary);
    font-style: italic;
  }
  form.inquiry { display: grid; gap: 18px; }
  .field { display: grid; gap: 6px; }
  .field label {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.04em; color: var(--text);
  }
  .field label .req { color: var(--accent); margin-left: 2px; }
  .field input, .field textarea {
    width: 100%; padding: 14px 16px;
    font-family: var(--sans); font-size: 16px;
    background: var(--bg); color: var(--text);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
    min-height: 48px;
  }
  .field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
  .field input:focus, .field textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 1px; border-color: var(--primary);
  }
  .field input[aria-invalid="true"], .field textarea[aria-invalid="true"] {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
  }
  .field__help { font-size: 13px; color: var(--text-secondary); }
  .field__error {
    font-size: 13px; color: var(--accent);
    display: flex; align-items: center; gap: 6px;
    min-height: 18px;
  }
  .field__error svg { width: 14px; height: 14px; flex-shrink: 0; }
  .counter { font-size: 12px; color: var(--text-tertiary); text-align: right; }
  .checkbox-field {
    display: grid; grid-template-columns: auto 1fr;
    gap: 12px; align-items: start;
    padding: 16px; border: 1px solid var(--border);
    border-radius: var(--radius); background: var(--bg);
  }
  .checkbox-field input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 3px;
    accent-color: var(--primary);
  }
  .checkbox-field label {
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.5; font-weight: 400; letter-spacing: 0;
  }
  .checkbox-field a { color: var(--primary); }
  .form-actions {
    display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
    margin-top: 8px;
  }
  .form-disclaimer {
    font-size: 12px; color: var(--text-tertiary);
    line-height: 1.5; max-width: 50ch;
  }
  .form-status {
    display: none; padding: 16px; border-radius: var(--radius);
    margin-top: 16px; font-size: 14px;
  }
  .form-status[data-state="success"] {
    display: block; background: var(--primary-soft);
    color: var(--primary-hover); border: 1px solid var(--primary);
  }
  .mailto-warn {
    margin-top: 12px; font-size: 12px;
    color: var(--text-tertiary); font-style: italic;
    display: flex; align-items: center; gap: 6px;
  }

  /* ============================================================
     Final CTA
     ============================================================ */
  .cta {
    background: var(--primary); color: var(--bg);
    padding-block: clamp(64px, 10vw, 112px);
    margin-top: 0;
  }
  .cta__inner {
    max-width: 1080px; margin: 0 auto; padding-inline: var(--gutter);
    display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(32px, 5vw, 64px); align-items: end;
  }
  @media (max-width: 880px) { .cta__inner { grid-template-columns: 1fr; align-items: start; } }
  .cta h2 {
    color: var(--bg); font-size: clamp(2rem, 4.4vw, 3rem);
    font-weight: 400; margin-bottom: 16px;
    line-height: 1.1; letter-spacing: -0.022em;
  }
  .cta h2 em { font-style: italic; color: rgba(250, 247, 242, 0.85); }
  .cta p { color: rgba(250, 247, 242, 0.78); margin: 0; font-size: 16.5px; max-width: 48ch; }
  .cta__price {
    margin-top: 18px; padding: 12px 16px;
    background: rgba(250, 247, 242, 0.08);
    border-radius: var(--radius);
    font-size: 13px; color: rgba(250, 247, 242, 0.82);
    display: inline-block;
  }
  .cta__actions { display: grid; gap: 14px; }
  .cta__actions .btn--primary {
    background: var(--bg); color: var(--primary); border-color: var(--bg);
  }
  .cta__actions .btn--primary:hover {
    background: var(--surface); color: var(--primary-hover); border-color: var(--surface);
  }
  .cta__tel {
    display: inline-flex; align-items: center; gap: 12px;
    color: rgba(250, 247, 242, 0.92); text-decoration: none;
    font-size: 15px; padding: 12px 0; min-height: 44px;
  }
  .cta__tel:hover { color: var(--bg); text-decoration: underline; }
  .cta__tel svg { width: 16px; height: 16px; opacity: 0.8; }
  .cta__tel small {
    display: block; font-size: 12px; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(250, 247, 242, 0.78);
    margin-bottom: 2px;
  }

  /* ============================================================
     Verwandte Indikationen
     ============================================================ */
  .related { padding-block: var(--section-gap); }
  .related__head { margin-bottom: 40px; max-width: 720px; }
  .related__list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
  .related__card {
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--bg);
    transition: border-color var(--transition), transform var(--transition);
  }
  .related__card a {
    display: block; padding: 28px 28px 24px;
    text-decoration: none; color: var(--text); height: 100%;
  }
  @media (hover: hover) and (pointer: fine) {
    .related__card:hover { border-color: var(--primary); }
    @media (prefers-reduced-motion: no-preference) {
      .related__card:hover { transform: translateY(-2px); }
    }
  }
  .related__num {
    font-family: var(--serif); font-size: 13px;
    color: var(--text-tertiary); letter-spacing: 0.05em;
    margin-bottom: 14px; display: block;
  }
  .related__card h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 8px; }
  .related__card p { margin: 0; font-size: 14.5px; color: var(--text-secondary); line-height: 1.55; }
  .related__card .arrow {
    margin-top: 20px; display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--primary); font-weight: 500;
  }
  @media (prefers-reduced-motion: no-preference) {
    .related__card .arrow { transition: gap var(--transition); }
  }
  @media (hover: hover) and (pointer: fine) {
    .related__card:hover .arrow { gap: 12px; }
  }


/* ============================================================
   NAP-Block (Local SEO)
   (war Z. 1124-1158 im Master-Inline-Block)
   ============================================================ */
  /* ============================================================
     NAP-Block (Local SEO)
     ============================================================ */


/* ============================================================
   EDITORIAL REWORK · Untere Hälfte
   Stories · FAQ · Trust · Form · Final-CTA · Related · NAP
   (war Z. 1420-2020 im Master-Inline-Block)
   ============================================================ */
  /* ============================================================
     ════════ EDITORIAL REWORK, Untere Hälfte ════════
     Stories · FAQ · Trust · Form · Final-CTA · Related · NAP
     ============================================================ */

  /* ---------- Stories ---------- */
  .stories { padding-block: var(--section-gap); }
  .stories__inner { max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter); }
  .stories__intro { max-width: 720px; margin-bottom: clamp(48px, 6vw, 72px); }
  .stories__intro h2 { margin-bottom: 16px; }
  .stories__intro p { font-size: 16.5px; line-height: 1.65; color: var(--text); }
  .stories__list {
    list-style: none; padding: 0; margin: 0;
    border-top: 1px solid var(--border);
  }
  .story-card {
    display: grid;
    grid-template-columns: minmax(0, 90px) minmax(0, 1fr) minmax(140px, 200px);
    gap: clamp(28px, 4.5vw, 56px);
    padding: clamp(36px, 5vw, 56px) 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }
  @media (max-width: 1080px) {
    .story-card { grid-template-columns: minmax(0, 90px) minmax(0, 1fr); }
    .story-card__svg { display: none; }
  }
  @media (max-width: 600px) {
    .story-card { grid-template-columns: 1fr; gap: 16px; padding-block: 36px; }
  }
  .story-card__svg {
    align-self: center;
    color: var(--primary);
    opacity: 0.55;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .story-card__svg svg {
    width: 100%;
    max-width: 170px;
    height: auto;
    display: block;
  }
  .story-card__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    color: var(--accent);
    line-height: 0.9;
    letter-spacing: -0.02em;
    padding-top: 6px;
  }
  .story-card__body { max-width: 60ch; }
  .story-card__meta {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 0 14px;
    font-weight: 500;
  }
  .story-card__body h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    line-height: 1.22;
    letter-spacing: -0.012em;
    color: var(--text);
    margin: 0 0 18px;
  }
  .story-card__body > p {
    font-family: var(--serif);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 24px;
  }
  .story-card__detail {
    display: flex; flex-wrap: wrap; gap: 28px 40px;
    margin: 0; padding-top: 18px;
    border-top: 1px solid var(--border);
  }
  .story-card__detail > div { display: grid; gap: 4px; }
  .story-card__detail dt {
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    font-weight: 500;
  }
  .story-card__detail dd {
    margin: 0;
    font-family: var(--serif);
    font-size: 14.5px;
    color: var(--text);
    font-style: italic;
  }
  .stories__note {
    margin: 32px 0 0;
    text-align: right;
    font-size: 12.5px;
    color: var(--text-tertiary);
    font-style: italic;
    letter-spacing: 0.02em;
  }


  /* ---------- Trust, 3-Spalten Editorial ---------- */
  .trust { padding-block: var(--section-gap); }
  .trust__inner { max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter); }
  .trust__head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 72px); }
  .trust__head h2 { margin-bottom: 0; }
  ol.trust__list {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--border);
  }
  @media (max-width: 880px) { ol.trust__list { grid-template-columns: 1fr; } }
  .trust__item {
    padding: 36px 28px 36px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 24px;
  }
  .trust__item + .trust__item { border-left: 1px solid var(--border); padding-left: 28px; }
  @media (max-width: 880px) {
    .trust__item + .trust__item { border-left: 0; padding-left: 0; }
  }
  .trust__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.4rem, 4vw, 3rem);
    line-height: 0.9;
    color: var(--primary);
    letter-spacing: -0.02em;
  }
  .trust__body { display: grid; gap: 14px; align-content: start; }
  .trust__body h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.25;
    margin: 0;
    max-width: 22ch;
  }
  .trust__body p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    max-width: 30ch;
  }
  .trust__tag {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-family: var(--sans);
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
  }

  /* ---------- Form-Section überarbeitet ---------- */
  .form-section { background: var(--surface); padding-block: var(--section-gap); }
  .form-grid {
    max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(32px, 5vw, 80px);
  }
  @media (max-width: 880px) { .form-grid { grid-template-columns: 1fr; } }
  .form-intro h2 { margin-bottom: 18px; }
  .form-intro > p {
    color: var(--text);
    line-height: 1.65;
    max-width: 38ch;
    margin-bottom: 28px;
  }
  .form-trust {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: grid; gap: 12px;
  }
  .form-trust li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14.5px; color: var(--text);
    font-family: var(--sans);
  }
  .form-trust svg {
    width: 16px; height: 16px;
    color: var(--primary);
    flex-shrink: 0;
  }
  .form-intro__small {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 36ch;
  }
  .form-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 44px);
    position: relative;
  }
  .form-card__heading {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 0 24px;
    font-weight: 500;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  /* ---------- Final CTA, asymmetrisch mit Panel ---------- */
  .cta { padding-block: clamp(72px, 10vw, 120px) clamp(72px, 10vw, 120px); margin-top: 0; }
  .cta__inner {
    max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
  }
  @media (max-width: 880px) {
    .cta__inner { grid-template-columns: 1fr; }
  }
  .cta__main { padding-top: 8px; }
  .cta__eyebrow { color: rgba(250, 247, 242, 0.78) !important; }
  .cta h2 {
    color: var(--bg);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 24px;
  }
  .cta h2 em { font-style: italic; color: rgba(250, 247, 242, 0.78); font-weight: 400; }
  .cta__lead {
    color: rgba(250, 247, 242, 0.8);
    margin: 0 0 32px;
    font-size: 16.5px;
    max-width: 46ch;
    line-height: 1.6;
  }
  .cta__main .cta__tel {
    display: inline-flex;
    align-items: center; gap: 14px;
    color: rgba(250, 247, 242, 0.92);
    text-decoration: none;
    font-size: 15px;
    padding: 14px 0;
    min-height: 44px;
    border-top: 1px solid rgba(250, 247, 242, 0.18);
    padding-top: 22px;
    margin-top: 8px;
  }
  .cta__main .cta__tel:hover { color: var(--bg); }
  .cta__main .cta__tel svg { width: 18px; height: 18px; opacity: 0.7; }
  .cta__main .cta__tel small {
    display: block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.78);
    margin-bottom: 4px;
    font-weight: 500;
  }
  .cta__panel {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 40px);
    color: var(--text);
    border: 1px solid rgba(225, 219, 206, 0.4);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.3);
    position: relative;
  }
  .cta__panel-meta {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 0 14px;
    font-weight: 500;
  }
  .cta__panel-h {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--text);
    margin: 0 0 28px;
    letter-spacing: -0.01em;
  }
  .cta__panel-list {
    margin: 0 0 28px;
    padding: 0;
    border-top: 1px solid var(--border);
  }
  .cta__panel-list > div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
  }
  .cta__panel-list dt {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text-secondary);
  }
  .cta__panel-list dd {
    margin: 0;
    font-family: var(--serif);
    font-size: 15.5px;
    color: var(--text);
    font-weight: 500;
    text-align: right;
  }
  .cta__panel .btn--primary {
    background: var(--primary); color: var(--bg);
    border-color: var(--primary);
  }
  .cta__panel .btn--primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
  }
  .cta__panel-note {
    margin: 14px 0 0;
    font-size: 12.5px;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
  }

  /* ---------- Related, Editorial-Inhaltsverzeichnis ---------- */
  .related { padding-block: var(--section-gap); }
  .related__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
  .related__head h2 { margin-bottom: 14px; }
  .related__head p { color: var(--text); font-size: 16px; line-height: 1.65; max-width: 50ch; margin: 0; }
  ol.related__list {
    list-style: none; padding: 0; margin: 0;
    display: block;
    border-top: 1px solid var(--border);
  }
  .related__item { border-bottom: 1px solid var(--border); }
  .related__item a {
    display: grid;
    grid-template-columns: minmax(70px, 90px) minmax(0, 1fr) minmax(40px, auto);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding: clamp(24px, 3vw, 36px) 0 clamp(24px, 3vw, 36px) 0;
    text-decoration: none;
    color: var(--text);
    transition: padding var(--transition), color var(--transition);
  }
  @media (max-width: 600px) {
    .related__item a {
      grid-template-columns: minmax(50px, 60px) minmax(0, 1fr) auto;
      gap: 20px;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    .related__item a:hover { color: var(--primary); }
    @media (prefers-reduced-motion: no-preference) {
      .related__item a:hover { padding-left: 16px; }
    }
  }
  .related__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.025em;
  }
  .related__body { display: grid; gap: 6px; }
  .related__tag {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    font-weight: 500;
    margin: 0;
  }
  .related__body h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    margin: 0;
    line-height: 1.2;
  }
  .related__body p {
    margin: 6px 0 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.55;
    max-width: 56ch;
  }
  .related__arrow {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    color: var(--primary);
    transition: transform var(--transition);
    line-height: 1;
  }
  @media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .related__item a:hover .related__arrow { transform: translateX(8px); }
  }

  /* ---------- NAP, mit drittem Bild ---------- */
  .nap {
    background: var(--bg);
    padding-block: clamp(64px, 9vw, 112px);
  }
  .nap__grid {
    max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: stretch;
  }
  @media (max-width: 880px) { .nap__grid { grid-template-columns: 1fr; gap: 40px; } }
  .nap__media figure { margin: 0; position: relative; }
  .nap__media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    filter: saturate(0.92) brightness(1.02);
  }
  .nap__media figure { height: 100%; }

  /* Collage-Variante: Praxisraum oben + Portrait unten */
  .nap__media--collage {
    display: grid;
    grid-template-rows: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 14px;
    height: 100%;
    min-height: 540px;
  }
  .nap__media--collage figure { height: 100%; min-height: 0; }
  .nap__media--collage img { min-height: 0; }
  .nap__media-cap {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 7px 12px 8px;
    background: rgba(31, 42, 38, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--bg);
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1;
    border-radius: 2px;
  }
  @media (max-width: 880px) {
    .nap__media--collage { grid-template-rows: minmax(280px, auto) minmax(280px, auto); min-height: 0; }
  }
  .nap__content h2 {
    margin: 14px 0 18px;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .nap__lead {
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.65;
    margin: 0 0 36px;
    max-width: 50ch;
  }
  .nap__details {
    margin: 0;
    border-top: 1px solid var(--border);
    padding-top: 28px;
  }
  .nap__detail {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) minmax(0, 3fr);
    gap: clamp(16px, 3vw, 40px);
    padding-block: 18px;
    align-items: baseline;
    border-bottom: 1px solid var(--border);
  }
  .nap__detail:last-of-type { border-bottom: none; }
  @media (max-width: 540px) {
    .nap__detail {
      grid-template-columns: 1fr;
      gap: 6px;
      padding-block: 16px;
    }
  }
  .nap__detail > dt {
    display: block !important;
    margin: 0 0 8px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
  }
  .nap__detail > dd {
    display: block !important;
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
  }
  .nap__detail dd address { font-style: normal; }
  .nap__detail a { color: var(--text); text-decoration: none; }
  .nap__detail a:hover { color: var(--primary); text-decoration: underline; }
  .nap__sub {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--text-secondary);
  }



/* ============================================================
   ════════ PAGE-SPECIFIC SECTIONS ════════
   Klassen die nur auf bestimmten Seiten verwendet werden.
   Lädt mit allen Seiten, Browser-Cache amortisiert.
   ============================================================ */

/* ============================================================
   PRICING · /preise-ablauf/
   (war Z. 2080-2251 in preise-ablauf.html)
   ============================================================ */
  }

  /* Stories und FAQ als normale Sections, kein doppeltes
     Margin/Padding zum vorhergehenden hr */
  .stories,
  .faq {
    padding-top: 0;
  }
  .stories { padding-bottom: clamp(48px, 6vw, 80px); }

  /* ============================================================
     Preistabelle · Preise-Ablauf-Seite
     ============================================================ */
  .pricing-section { padding-block: var(--section-gap); }
  .pricing-section .wrap { max-width: 1240px; margin: 0 auto; padding-inline: var(--gutter); }
  .pricing-intro { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
  .pricing-intro h2 { margin: 8px 0 16px; }
  .pricing-intro p { color: var(--text); font-size: 16px; line-height: 1.65; max-width: 56ch; }
  .pricing-table {
    width: 100%; max-width: 1080px;
    border-collapse: collapse;
    border-top: 1px solid var(--border);
  }
  .pricing-table caption {
    text-align: left;
    font-family: var(--sans);
    font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--text-tertiary);
    font-weight: 500; padding: 0 0 14px;
    caption-side: top;
  }
  .pricing-table thead th {
    text-align: left;
    padding: 14px 8px;
    font-family: var(--sans); font-size: 10.5px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--text-tertiary); font-weight: 500;
    border-bottom: 1px solid var(--border);
  }
  .pricing-table thead th.col-price { text-align: right; }
  .pricing-table tbody th {
    text-align: left;
    padding: clamp(18px, 2.2vw, 24px) 8px;
    font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
    color: var(--text); border-bottom: 1px solid var(--border);
    vertical-align: top;
  }
  .pricing-table tbody td {
    padding: clamp(18px, 2.2vw, 24px) 8px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }
  .pricing-table .duration {
    font-family: var(--sans); font-size: 14.5px;
    color: var(--text-secondary); white-space: nowrap;
  }
  .pricing-table .price {
    font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
    color: var(--text); text-align: right; white-space: nowrap;
  }
  /* Mobile-Stack-Pattern (data-label-driven, semantik-erhaltend) */
  @media (max-width: 540px) {
    .pricing-table { border-collapse: separate; border-spacing: 0; }
    .pricing-table caption { text-align: left; }
    .pricing-table thead { position: absolute; clip: rect(0 0 0 0); clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; white-space: nowrap; }
    .pricing-table tr {
      display: block;
      padding: 16px 18px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface);
      margin-bottom: 12px;
    }
    .pricing-table tbody th[scope="row"] {
      display: block;
      font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
      margin: 0 0 8px;
      color: var(--text);
    }
    .pricing-table tbody td {
      display: flex; justify-content: space-between; align-items: baseline;
      padding: 4px 0;
      text-align: left;
      white-space: normal;
    }
    .pricing-table tbody td::before {
      content: attr(data-label);
      font-family: var(--sans); font-size: 11px;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--text-secondary); font-weight: 500;
    }
    .pricing-table .price { text-align: right; }
  }
  .pricing-notes {
    margin-top: clamp(28px, 4vw, 40px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(16px, 2vw, 24px);
    max-width: 1080px;
  }
  .pricing-note {
    padding: 22px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
  }
  .pricing-note h3 {
    font-family: var(--sans); font-size: 10.5px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); margin: 0 0 10px;
    font-weight: 600;
  }
  .pricing-note p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text); }
  .pricing-note p + p { margin-top: 6px; }
  .pricing-note a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }


  /* ============================================================
     Cookie-Banner · technisch-notwendige Cookies, kein Modal
     ============================================================ */
  .cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(31, 42, 38, 0.12), 0 2px 4px rgba(31, 42, 38, 0.06);
    padding: 18px 20px;
    z-index: 9999;
    display: none;
    max-width: 720px;
    margin-inline: auto;
  }
  .cookie-banner.is-open { display: block; }
  .cookie-banner__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
  }
  .cookie-banner__text {
    flex: 1 1 320px;
    font-size: 14px;
    color: var(--text);
    margin: 0;
    line-height: 1.55;
  }
  .cookie-banner__text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .cookie-banner__btn {
    appearance: none;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--bg);
    padding: 10px 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    min-height: 40px;
    transition: var(--transition);
  }
  .cookie-banner__btn:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
  .cookie-banner__btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
  }
  @media (max-width: 480px) {
    .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 14px 16px; }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__btn { flex: 1; }
  }
  /* Footer Cookie-Einstellungen als Button (sieht aus wie Link) */
  .footer-link-btn {
    appearance: none;
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .footer-link-btn:hover,
  .footer-link-btn:focus-visible {
    color: var(--primary);
  }
  .footer-link-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
  }


/* ============================================================
   ROUTE-MAP · /anfahrt/
   (war Z. 2157-2410 in anfahrt.html)
   ============================================================ */
  /* Straßen, kontrastreich für Karten-Optik */
  .route-map .rm-road {
    fill: none;
    stroke: #D7D0BC;
    stroke-width: 4;
    stroke-linecap: round;
  }
  .route-map .rm-road--main {
    fill: none;
    stroke: var(--bg);
    stroke-width: 14;
    stroke-linecap: round;
    filter: drop-shadow(0 0 0.6px #A89D80);
  }
  /* Häuserblöcke besser sichtbar gegen den dunkleren Karten-Hintergrund */
  .route-map .rm-blocks rect {
    fill: rgba(250, 247, 242, 0.78);
    stroke: rgba(143, 148, 138, 0.35);
    stroke-width: 0.8;
  }

  /* Beschriftungen */
  .route-map .rm-label {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 13px;
    font-style: italic;
    fill: #6B7568;
  }
  .route-map .rm-label--street {
    font-size: 12px;
    font-weight: 500;
    fill: #1F2A26;
    font-style: italic;
    letter-spacing: 0.02em;
  }
  .route-map .rm-label--park {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 18px;
    font-style: italic;
    fill: #3F5B47;
    font-weight: 500;
  }
  .route-map .rm-label--water {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 14px;
    font-style: italic;
    fill: #4A6478;
    font-weight: 500;
    letter-spacing: 0.08em;
  }
  .route-map .rm-label--sub {
    font-family: var(--sans);
    font-size: 11px;
    font-style: normal;
    fill: #6B7568;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .route-map .rm-label--lines { font-size: 10.5px; fill: #6B7568; }
  .route-map .rm-label--pill {
    font-family: var(--sans);
    font-size: 10.5px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    fill: #FAF7F2;
  }
  .route-map .rm-label--route {
    font-family: var(--sans);
    font-size: 10.5px;
    font-style: normal;
    font-weight: 600;
    fill: #B85842;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .route-map .rm-label--praxis {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    fill: #1F2A26;
  }
  .route-map .rm-label--praxis-sub {
    font-family: var(--sans);
    font-size: 11px;
    font-style: italic;
    fill: #6B7568;
  }
  .route-map .rm-label--n {
    font-family: var(--sans);
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    fill: #1F2A26;
  }

  /* Bushaltestelle, Pille mit Bus-Icon */
  .route-map .rm-bus-pill {
    fill: #3F5B47;
    stroke: #FAF7F2;
    stroke-width: 1.4;
  }

  /* Animierte Route Bus → Praxis */
  .route-map .rm-route {
    fill: none;
    stroke: #B85842;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: rm-draw 3.6s ease-in-out 0.3s infinite;
  }
  @keyframes rm-draw {
    0%   { stroke-dashoffset: 100; opacity: 0; }
    12%  { opacity: 1; }
    65%  { stroke-dashoffset: 0; opacity: 1; }
    85%  { stroke-dashoffset: 0; opacity: 0.7; }
    100% { stroke-dashoffset: 100; opacity: 0; }
  }

  /* Praxis-Marker */
  .route-map .rm-praxis-pin {
    fill: #B85842;
    stroke: #FAF7F2;
    stroke-width: 1.8;
    filter: drop-shadow(0 3px 6px rgba(184, 88, 66, 0.35));
  }
  .route-map .rm-praxis-house path {
    fill: none;
    stroke: #FAF7F2;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .route-map .rm-praxis-house line {
    stroke: #FAF7F2;
    stroke-width: 1.6;
    stroke-linecap: round;
  }
  .route-map .rm-praxis-ring {
    fill: none;
    stroke: #B85842;
    stroke-width: 1.6;
    transform-origin: 640px 290px;
    animation: rm-ring 2.6s ease-out infinite;
  }
  @keyframes rm-ring {
    0%   { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(2.4); opacity: 0; }
  }
  .route-map .rm-praxis-label rect {
    fill: #FAF7F2;
    stroke: #E1DBCE;
    stroke-width: 1.2;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.06));
  }

  @media (prefers-reduced-motion: reduce) {
    .route-map .rm-route { animation: none; stroke-dashoffset: 0; opacity: 0.85; }
    .route-map .rm-praxis-ring { animation: none; opacity: 0; }
  }


  /* ============================================================
     Cookie-Banner · technisch-notwendige Cookies, kein Modal
     ============================================================ */
  .cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(31, 42, 38, 0.12), 0 2px 4px rgba(31, 42, 38, 0.06);
    padding: 18px 20px;
    z-index: 9999;
    display: none;
    max-width: 720px;
    margin-inline: auto;
  }
  .cookie-banner.is-open { display: block; }
  .cookie-banner__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
  }
  .cookie-banner__text {
    flex: 1 1 320px;
    font-size: 14px;
    color: var(--text);
    margin: 0;
    line-height: 1.55;
  }
  .cookie-banner__text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .cookie-banner__btn {
    appearance: none;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--bg);
    padding: 10px 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    min-height: 40px;
    transition: var(--transition);
  }
  .cookie-banner__btn:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
  .cookie-banner__btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
  }
  @media (max-width: 480px) {
    .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 14px 16px; }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__btn { flex: 1; }
  }
  /* Footer Cookie-Einstellungen als Button (sieht aus wie Link) */
  .footer-link-btn {
    appearance: none;
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .footer-link-btn:hover,
  .footer-link-btn:focus-visible {
    color: var(--primary);
  }
  .footer-link-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
  }


/* ============================================================
   LEGAL-LAYOUT · /impressum/ + /datenschutz/
   (war Z. 2091-2333 in impressum.html)
   .toc, .legal, .legal__dl, .dsgvo-table, .hero--legal, .mail-link
   ============================================================ */
  /* ============================================================
     Rechtliche Seiten · Impressum / Datenschutz / Kontakt
     Audit-konform: WCAG 2.2 AA, Rot-Grün-sicher (Joseph-Sehschwäche)
     ============================================================ */
  /* Legal-Page-Layout: TOC sticky sidebar + Content */
  @media (min-width: 960px) {
    article:has(> .toc) {
      display: grid;
      grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
      column-gap: clamp(48px, 6vw, 88px);
      max-width: 1240px;
      margin: 0 auto;
      padding-inline: var(--gutter);
      align-items: start;
    }
    article:has(> .toc) > .hero,
    article:has(> .toc) > .mid-cta,
    article:has(> .toc) > .cta {
      grid-column: 1 / -1;
      margin-inline: calc(var(--gutter) * -1);
    }
    article:has(> .toc) > .toc {
      grid-column: 1;
      position: sticky;
      top: 96px;
      align-self: start;
      max-width: none;
      margin: clamp(48px, 6vw, 72px) 0 0;
      padding: 0;
      border: 0;
      max-height: calc(100vh - 120px);
      overflow-y: auto;
    }
    article:has(> .toc) > .toc::-webkit-scrollbar { width: 6px; }
    article:has(> .toc) > .toc::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 3px;
    }
    article:has(> .toc) > .legal {
      grid-column: 2;
      max-width: 720px;
      margin: 0;
      padding-inline: 0;
    }
    article:has(> .toc) > .toc + .legal {
      margin-top: clamp(48px, 6vw, 72px);
    }
  }

  .toc {
    max-width: 760px;
    margin: 32px auto 0;
    padding: 28px var(--gutter) 28px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .toc__h {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 0 18px 0;
  }
  .toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px 24px;
  }
  /* Sticky-sidebar mode: single column list */
  @media (min-width: 960px) {
    article:has(> .toc) > .toc .toc__list {
      grid-template-columns: 1fr;
      gap: 4px;
    }
    article:has(> .toc) > .toc .toc__list li {
      padding: 6px 0;
    }
    article:has(> .toc) > .toc .toc__list a {
      display: block;
      padding: 4px 0 4px 4px;
      border-left: 2px solid transparent;
      border-bottom: 0;
      transition: color var(--transition), border-color var(--transition), padding var(--transition);
    }
    article:has(> .toc) > .toc .toc__list a[aria-current="true"],
    article:has(> .toc) > .toc .toc__list a.is-current {
      color: var(--primary);
      border-left-color: var(--primary);
      padding-left: 10px;
    }
    @media (hover: hover) and (pointer: fine) {
      article:has(> .toc) > .toc .toc__list a:hover {
        color: var(--primary);
        padding-left: 8px;
      }
    }
  }
  .toc__list li { counter-increment: toc; }
  .toc__list li::before {
    content: counter(toc, decimal-leading-zero) " · ";
    color: var(--text-tertiary);
    font-family: var(--serif);
    font-size: 13px;
  }
  .toc__list { counter-reset: toc; }
  .toc__list a {
    color: var(--text);
    text-decoration: none;
    font-size: 14.5px;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
  }
  .toc__list a:hover,
  .toc__list a:focus-visible {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  .toc__list a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
  }

  .legal {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px var(--gutter) 0;
    scroll-margin-top: 88px;
  }
  .legal:last-of-type { padding-bottom: 80px; }
  .legal h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    margin: 0 0 16px 0;
  }
  .legal p {
    max-width: 64ch;
    margin: 0 0 14px 0;
    color: var(--text);
  }
  .legal a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .legal a:hover,
  .legal a:focus-visible {
    color: var(--primary-hover);
  }

  .legal__dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 8px 28px;
    margin: 0 0 14px 0;
    max-width: 64ch;
  }
  .legal__dl dt {
    font-weight: 500;
    color: var(--text-secondary);
  }
  .legal__dl dd {
    margin: 0;
    color: var(--text);
  }
  @media (max-width: 600px) {
    .legal__dl {
      grid-template-columns: 1fr;
      gap: 4px 0;
    }
    .legal__dl dt { margin-top: 14px; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
    .legal__dl dt:first-of-type { margin-top: 0; }
  }

  /* DSGVO-Tabelle */
  .dsgvo-table {
    width: 100%;
    max-width: 64ch;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 14.5px;
  }
  .dsgvo-table caption {
    text-align: left;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .dsgvo-table th,
  .dsgvo-table td {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }
  .dsgvo-table thead th {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 1px solid var(--text);
  }
  .dsgvo-table tbody th {
    font-weight: 500;
    color: var(--text);
  }
  @media (max-width: 640px) {
    .dsgvo-table thead { display: none; }
    .dsgvo-table tr {
      display: block;
      border-bottom: 1px solid var(--text);
      padding: 12px 0;
    }
    .dsgvo-table th,
    .dsgvo-table td {
      display: block;
      padding: 4px 0;
      border: none;
    }
    .dsgvo-table td::before {
      content: attr(data-label) " · ";
      font-size: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-secondary);
      font-weight: 500;
      display: inline;
      margin-right: 6px;
    }
  }

  /* Mail-Link (JS-aktiviert) */
  .mail-link {
    word-break: break-all;
  }

  /* Cookie-Banner */
  .cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(31, 42, 38, 0.12), 0 2px 4px rgba(31, 42, 38, 0.06);
    padding: 18px 20px;
    z-index: 9999;
    display: none;
    max-width: 720px;
    margin-inline: auto;
  }
  .cookie-banner.is-open { display: block; }
  .cookie-banner__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
  }
  .cookie-banner__text {
    flex: 1 1 320px;
    font-size: 14px;
    color: var(--text);
    margin: 0;
    line-height: 1.55;
  }
  .cookie-banner__text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .cookie-banner__btn {
    appearance: none;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--bg);
    padding: 10px 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    min-height: 40px;
    transition: var(--transition);
  }
  .cookie-banner__btn:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
  .cookie-banner__btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
  }
  @media (max-width: 480px) {
    .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 14px 16px; }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__btn { flex: 1; }
  }

  /* Hero schlanker bei rechtlichen Seiten (kein Bild-Bedarf) */
  .hero--legal {
    min-height: auto;
    padding: 80px var(--gutter) 60px;
    background: var(--surface);
  }
  .hero--legal::before { display: none; }


/* ============================================================
   FAQ-LAYOUT · /faq/
   (war Z. 2335-2666 in faq.html)
   .faq-layout, .faq-sidebar, .faq-category, .faq-item-ed, .sb-*
   ============================================================ */
  /* === FAQ-Seite · Kategorien-Sektionen + Editorial-Akkordeon === */
  .faq-category {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px var(--gutter) 0;
    scroll-margin-top: 88px;
  }
  .faq-category:last-of-type { padding-bottom: 96px; }
  .faq-category h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.6vw, 1.95rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    margin: 0 0 28px;
    line-height: 1.18;
  }
  .faq-list {
    border-top: 1px solid var(--border);
  }
  .faq-item-ed {
    border-bottom: 1px solid var(--border);
    transition: border-color var(--transition);
  }
  .faq-item-ed[open] {
    border-bottom-width: 2px;
    border-bottom-color: var(--primary);
  }
  @media (prefers-reduced-motion: reduce) {
    .faq-item-ed { transition: none !important; }
  }
  .faq-item-ed summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 4px;
    cursor: pointer;
    font-family: var(--serif);
    font-weight: 400;
    color: var(--text);
    font-size: clamp(15.5px, 1.1vw, 17.5px);
    line-height: 1.4;
    letter-spacing: -0.005em;
    user-select: none;
    min-height: 44px;
    transition: color var(--transition);
  }
  .faq-item-ed summary::-webkit-details-marker { display: none; }
  .faq-item-ed summary::marker { display: none; content: ""; }
  .faq-item-ed summary::before { content: none; }
  .faq-item-ed summary::after { content: none; }
  .faq-item-ed summary:hover { color: var(--primary); }
  .faq-item-ed[open] summary {
    color: var(--primary);
    font-weight: 500;
  }
  .faq-item-ed summary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 2px;
  }
  .faq-item-ed__chevron {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-left: auto;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 1.5;
    transition: transform var(--transition), stroke var(--transition);
  }
  .faq-item-ed summary:hover .faq-item-ed__chevron,
  .faq-item-ed[open] .faq-item-ed__chevron {
    stroke: var(--primary);
  }
  .faq-item-ed[open] .faq-item-ed__chevron {
    transform: rotate(180deg);
  }
  @media (prefers-reduced-motion: reduce) {
    .faq-item-ed__chevron { transition: none !important; }
  }
  .faq-item-ed__body {
    padding: 0 4px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14.5px;
    max-width: 60ch;
  }
  .faq-item-ed__body p { margin: 0 0 12px; }
  .faq-item-ed__body p:last-child { margin: 0; }
  .faq-item-ed__body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
  }


  /* === FAQ-Layout mit Sticky-Sidebar === */
  :root {
    --doctolib: #107E94;
    --doctolib-hover: #0D6C7F;
  }

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

  .faq-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 64px;
    max-width: 1240px;
    margin: clamp(72px, 9vw, 128px) auto 0;
    padding: 0 var(--gutter);
    align-items: start;
  }
  @media (max-width: 960px) {
    .faq-layout {
      grid-template-columns: 1fr;
      gap: 40px;
      max-width: 760px;
    }
  }

  .faq-content {
    min-width: 0;
  }

  /* Kategorie-Sektionen: Reset overrides für Layout */
  .faq-content .faq-category {
    max-width: none;
    margin: 0 0 64px;
    padding: 0;
    scroll-margin-top: 96px;
  }
  .faq-content .faq-category:last-child { margin-bottom: 96px; }
  .faq-content .faq-category h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.6vw, 1.95rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    margin: 0 0 28px;
    line-height: 1.18;
  }

  /* Sticky Sidebar */
  .faq-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
    display: grid;
    gap: 18px;
  }
  @media (max-width: 960px) {
    .faq-sidebar {
      position: static;
      top: auto;
    }
  }

  .sb-block {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 22px 22px;
  }
  .sb-block__h {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 14px;
    font-weight: 500;
  }

  /* Mini-TOC */
  .sb-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: sbtoc;
    display: grid;
    gap: 4px;
  }
  .sb-toc-list li {
    counter-increment: sbtoc;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: baseline;
    gap: 6px;
  }
  .sb-toc-list li::before {
    content: counter(sbtoc, decimal-leading-zero);
    color: var(--text-tertiary);
    font-family: var(--serif);
    font-style: italic;
    font-size: 12px;
  }
  .sb-toc-list a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    padding: 6px 0;
    border-left: 2px solid transparent;
    padding-left: 8px;
    margin-left: -8px;
    transition: var(--transition);
  }
  .sb-toc-list a:hover {
    color: var(--primary);
  }
  .sb-toc-list a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
  }
  .sb-toc-list a[aria-current="true"] {
    color: var(--primary);
    font-weight: 500;
    border-left-color: var(--primary);
  }

  /* Schnellkontakt + Praxis */
  .sb-contact {
    display: grid;
    gap: 12px;
    margin: 0 0 14px;
  }
  .sb-contact > div { display: grid; gap: 2px; }
  .sb-contact dt {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    font-weight: 500;
    margin: 0;
  }
  .sb-contact dd {
    margin: 0;
    font-size: 14px;
    color: var(--text);
    line-height: 1.45;
  }
  .sb-contact dd a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .sb-contact dd a:hover { color: var(--primary-hover); }

  /* Doctolib-CTA in Sidebar · Park-Moss-harmonisiert */
  .sb-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--bg);
    padding: 12px 14px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    margin-top: 4px;
    min-height: 44px;
    transition: var(--transition);
  }
  .sb-cta svg { width: 18px; height: 18px; stroke: var(--bg); fill: none; }
  .sb-cta:hover { background: var(--primary-hover); }
  .sb-cta:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
  }
  .sb-cta__sub {
    margin: 8px 0 0;
    font-size: 11.5px;
    color: var(--text-tertiary);
    text-align: center;
    font-style: italic;
    line-height: 1.4;
  }

  .sb-question {
    margin: 0 0 clamp(56px, 7vw, 96px);
    padding: 0 22px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
    font-style: italic;
  }
  .sb-question a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-style: normal;
    font-weight: 500;
  }

  @media (max-width: 960px) {
    .faq-sidebar {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .faq-sidebar .sb-block--toc {
      grid-column: span 2;
    }
    .faq-sidebar .sb-question {
      grid-column: span 2;
    }
  }
  @media (max-width: 600px) {
    .faq-sidebar {
      grid-template-columns: 1fr;
    }
    .faq-sidebar .sb-block--toc,
    .faq-sidebar .sb-question {
      grid-column: span 1;
    }
  }


  /* ============================================================
     Hero-Background-Variation pro Seite
     Body-Class-Override der CSS-Variablen aus .hero
     ============================================================ */
  body.page-osteopathie .hero {
    --hero-webp: url('/img/osteopathie-praxis-luebeck-wohnatmosphaere.webp');
    --hero-jpg: url('/img/osteopathie-praxis-luebeck-wohnatmosphaere.jpg');
  }
  body.page-leistungen .hero {
    --hero-webp: url('/img/osteopathie-praxis-luebeck-empfang-tageslicht.webp');
    --hero-jpg: url('/img/osteopathie-praxis-luebeck-empfang-tageslicht.jpg');
  }
  body.page-ruecken-nacken .hero {
    --hero-webp: url('/img/osteopathie-praxis-luebeck-behandlungsraum-erker.webp');
    --hero-jpg: url('/img/osteopathie-praxis-luebeck-behandlungsraum-erker.jpg');
  }
  body.page-migraene .hero {
    --hero-webp: url('/img/osteopathie-praxis-luebeck-behandlungsraum-abend.webp');
    --hero-jpg: url('/img/osteopathie-praxis-luebeck-behandlungsraum-abend.jpg');
  }
  body.page-bewegungsapparat-gelenke .hero {
    --hero-webp: url('/img/osteopathie-praxis-luebeck-behandlungsraum.webp');
    --hero-jpg: url('/img/osteopathie-praxis-luebeck-behandlungsraum.jpg');
  }
  body.page-preise .hero {
    --hero-webp: url('/img/osteopathie-praxis-luebeck-schreibtisch.webp');
    --hero-jpg: url('/img/osteopathie-praxis-luebeck-schreibtisch.jpg');
  }
  body.page-anfahrt .hero {
    --hero-webp: url('/img/osteopathie-praxis-luebeck-schrankraum.webp');
    --hero-jpg: url('/img/osteopathie-praxis-luebeck-schrankraum.jpg');
  }
  body.page-faq .hero {
    --hero-webp: url('/img/luebeck-tuerme-marienkirche.webp');
    --hero-jpg: url('/img/luebeck-tuerme-marienkirche.jpg');
    background-position: center 30%;
  }
  body.page-ueber-mich .hero {
    --hero-webp: url('/img/osteopathie-praxis-luebeck-detail.webp');
    --hero-jpg: url('/img/osteopathie-praxis-luebeck-detail.jpg');
  }

  /* ============================================================
     Mikrointeraktionen · Wow-Effekte für Desktop
     ============================================================ */

  /* Doctolib-CTA Arrow + Subtle Lift */
  @media (hover: hover) and (pointer: fine) {
    .bento-card--doctolib { transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease; }
    .bento-card--doctolib:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 48px -20px rgba(31, 42, 38, 0.32);
    }
    .bento-card--doctolib .bento-card__cta { transition: letter-spacing 240ms ease; }
    .bento-card--doctolib:hover .bento-card__cta { letter-spacing: 0.04em; }

    /* NAP-Adresse Pin-Pulse on hover */
    .nap__detail a:has(address):hover address::before,
    .nap__detail a:focus-visible address::before {
      animation: napPinPulse 1.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    }

    /* Indikations-Liste Arrow + Number Shift */
    .related__item a { transition: padding-left 280ms cubic-bezier(0.22, 1, 0.36, 1), color 200ms ease; }
    .related__item a:hover .related__num,
    .related__item a:focus-visible .related__num {
      color: var(--primary);
      transform: translateX(-2px);
      transition: color 200ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
    }
    .related__item a:hover .related__arrow,
    .related__item a:focus-visible .related__arrow {
      transform: translateX(8px);
    }

    /* FAQ-Items Subtle Hover (Editorial-Akkordeon) */
    .faq-item-ed summary { transition: color 200ms ease, padding-left 280ms cubic-bezier(0.22, 1, 0.36, 1); }
    .faq-item-ed summary:hover { color: var(--primary); padding-left: 8px; }

    /* Story-Cards Lift */
    .story-card { transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1); }
    .story-card:hover { transform: translateY(-2px); }
  }

  /* Pin-Pulse Keyframes */
  @keyframes napPinPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
  }

  /* ============================================================
     Sticky-Termin-Pille · Persistente CTA beim Scrollen
     Erscheint nach 240px Scroll, rechts unten, kompakt
     ============================================================ */
  .floating-cta {
    position: fixed;
    bottom: clamp(20px, 3vw, 32px);
    right: clamp(20px, 3vw, 32px);
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--bg);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 12px 32px -12px rgba(31, 42, 38, 0.45);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 380ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), background 240ms ease;
  }
  .floating-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .floating-cta svg {
    width: 14px; height: 14px;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  @media (hover: hover) and (pointer: fine) {
    .floating-cta:hover {
      background: var(--primary-hover, var(--primary));
      color: var(--bg);
      transform: translateY(-2px);
    }
    .floating-cta:hover svg { transform: translate(2px, -2px); }
  }
  .floating-cta:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
  }
  /* Auf der Kontakt-Seite und mobile sticky-bar nicht zeigen */
  body.page-kontakt .floating-cta,
  body:has(.sticky-mobile-bar) .floating-cta { display: none; }
  @media (max-width: 720px) {
    .floating-cta { display: none; }
  }

  /* ============================================================
     Reading-Progress-Linie · oben am Viewport-Rand
     Dünn, brand-grün, scroll-getrieben via JS
     ============================================================ */
  .reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--primary);
    z-index: 100;
    transition: width 120ms linear;
    pointer-events: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .reading-progress { transition: none; }
  }

  /* ============================================================
     Hero-Hierarchie · Tier-1 (Full) vs Tier-2 (Compact)
     Tier-1 (Wow-Pages): default 100vh, Startseite + Indikationen + Methode
     Tier-2 (Sub-Pages): kompakter Hero, Content direkt darunter sichtbar
     ============================================================ */
  body.page-anfahrt .hero,
  body.page-preise .hero,
  body.page-faq .hero,
  body.page-leistungen .hero {
    min-height: 55vh;
    min-height: 55svh;
    padding: clamp(72px, 9vw, 112px) var(--gutter);
  }
  /* Scroll-Indikator auf Compact-Hero ausblenden (passt nicht zur kürzeren Höhe) */
  body.page-anfahrt .hero__scroll,
  body.page-preise .hero__scroll,
  body.page-faq .hero__scroll,
  body.page-leistungen .hero__scroll {
    display: none;
  }
  /* Compact-Hero: H1 leicht kleiner damit Hierarchie klar bleibt */
  body.page-anfahrt .hero__h1,
  body.page-preise .hero__h1,
  body.page-faq .hero__h1,
  body.page-leistungen .hero__h1 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
  }
