    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* Skip-to-Content Link für Screenreader/Tastatur-Nutzer. Standardmäßig
       visually hidden, springt bei :focus sichtbar in den Viewport. */
    .skip-link {
      position: absolute; top: -40px; left: 8px; z-index: 9999;
      background: var(--bg-dark); color: var(--text-light);
      padding: 10px 18px; border-radius: var(--radius-sm);
      font: 600 0.9rem 'Inter', sans-serif; text-decoration: none;
      transition: top 0.15s ease;
    }
    .skip-link:focus { top: 8px; outline: 2px solid var(--accent); outline-offset: 2px; }

    :root {
      --bg-dark:    oklch(11% 0.018 258);
      --bg-mid:     oklch(16% 0.018 258);
      --bg-light:   oklch(97% 0.008 80);
      --bg-warm:    oklch(94% 0.012 70);
      --text-dark:  oklch(13% 0.015 258);
      --text-light: oklch(97% 0.005 80);
      --text-muted: oklch(55% 0.015 258);
      --accent:     oklch(72% 0.19 48);
      --accent-dim: oklch(60% 0.19 48);
      --border:     oklch(88% 0.01 258);
      --border-dark: oklch(22% 0.018 258);
      --radius-sm:  6px;
      --radius-md:  12px;
      --radius-lg:  20px;
      --max-w:      1200px;
      --gap:        clamp(48px, 8vw, 96px);
    }

    /* Fallback palette for browsers without oklch() support (older mobile
       Safari < 15.4 / Chrome < 111). Without this the core colours would be
       dropped and the page would render unstyled. Inline oklch() shades
       degrade gracefully on top of these. */
    @supports not (color: oklch(0% 0 0)) {
      :root {
        --bg-dark:    #0d0f17;
        --bg-mid:     #181a22;
        --bg-light:   #f7f5f1;
        --bg-warm:    #efebe3;
        --text-dark:  #14151f;
        --text-light: #f7f6f3;
        --text-muted: #71757f;
        --accent:     #ec7635;
        --accent-dim: #c25c22;
        --border:     #dcdee2;
        --border-dark: #2b2e38;
      }
    }

    /* Kein `scroll-behavior: smooth` auf <html>: das kämpft mit dem
       scroll-gesteuerten (gepinnten) Hero von GSAP ScrollTrigger.
       Sanftes Scrollen für Anker-Links übernimmt main.js gezielt. */

    html {
      overscroll-behavior-y: none;
      color-scheme: light;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      -webkit-font-smoothing: antialiased;
      /* `clip` statt `hidden`: verhindert horizontales Scrollen, ohne den
         Body zum Scroll-Container zu machen (sonst bricht das ScrollTrigger-Pin). */
      overflow-x: clip;
      overscroll-behavior-y: none;
    }

    /* Fixed nav verdeckt sonst Anchor-Ziele beim Sprung. 96px = nav-Höhe
       inkl. Puffer; auf Mobile etwas knapper. */
    :where(section[id], div[id]) { scroll-margin-top: 96px; }
    @media (max-width: 900px) {
      :where(section[id], div[id]) { scroll-margin-top: 80px; }
    }

    /* Sichtbarer Tastatur-Fokus auf allen interaktiven Elementen.
       :focus-visible statt :focus → Mausklicks lösen Ring nicht aus. */
    :where(a, button, [role="button"], input, select, textarea, summary):focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: var(--radius-sm);
    }

    /* Überschriften brechen sonst kurz/unausgewogen */
    h1, h2, h3, h4 { text-wrap: balance; }
    p { text-wrap: pretty; }

    /* ── NAV ───────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 40px;
      transition: background 0.4s, padding 0.4s, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    }
    nav.scrolled {
      background: rgba(255, 255, 255, 0.94);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      padding: 12px 40px;
      box-shadow: 0 8px 30px -16px rgba(0, 0, 0, 0.18);
    }
    nav.nav-hidden {
      transform: translateY(-115%);
      box-shadow: none;
    }
    /* Subpages: Nav bekommt VON ANFANG AN einen dunklen, blurred Background,
       damit nichts vom Page-Hero (Breadcrumb, Headline) dahinter durchscheint.
       Gilt auf Desktop UND Mobile. Homepage (body.is-home) hat den Hero-Effekt
       und behält die transparente Top-Nav. */
    body:not(.is-home) nav#nav:not(.scrolled) {
      background: oklch(11% 0.018 258 / 0.94);
      -webkit-backdrop-filter: blur(22px);
      backdrop-filter: blur(22px);
      box-shadow: 0 8px 30px -20px rgba(0, 0, 0, 0.35);
    }
    .nav-logo {
      font-family: 'Fraunces', serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--text-light);
      letter-spacing: -0.02em;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }
    .nav-logo span { color: var(--accent); }
    .nav-logo img {
      height: 58px;
      width: auto;
      display: block;
      transition: filter 0.35s ease, height 0.35s ease;
      filter:
        drop-shadow(0 0 6px rgba(255, 255, 255, 0.85))
        drop-shadow(0 0 14px rgba(255, 255, 255, 0.55))
        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
    }
    nav.scrolled .nav-logo img {
      height: 46px;
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.10));
    }
    nav.scrolled .nav-links a { color: oklch(28% 0.018 258); }
    nav.scrolled .nav-links a:hover { color: var(--accent); }
    nav.scrolled .nav-links a.is-active { color: var(--accent); }
    nav.scrolled .nav-cta {
      color: #fff !important;
    }
    nav.scrolled .nav-toggle {
      background: oklch(96% 0.005 258 / 0.85);
      border-color: oklch(85% 0.005 258);
    }
    nav.scrolled .nav-toggle span { background: var(--text-dark); }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.85rem;
      font-weight: 500;
      color: oklch(75% 0.01 258);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text-light); }
    .nav-cta {
      position: relative;
      z-index: 70;
      background: var(--accent);
      color: var(--bg-dark);
      padding: 9px 20px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      transition: opacity 0.2s;
    }
    .nav-cta:hover { opacity: 0.85; color: var(--bg-dark); }

    /* ── HAMBURGER + MOBILE MENU ───────────────────────────── */
    .nav-toggle {
      display: none;
      width: 44px; height: 44px;
      background: oklch(20% 0.018 258 / 0.6);
      border: 1px solid oklch(28% 0.018 258);
      border-radius: 12px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: background 0.25s;
    }
    .nav-toggle:active { background: oklch(25% 0.018 258 / 0.8); }
    .nav-toggle span {
      width: 18px;
      height: 1.5px;
      background: var(--text-light);
      border-radius: 1px;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
      transform-origin: center;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 999;
      background: oklch(11% 0.018 258 / 0.97);
      -webkit-backdrop-filter: blur(28px);
      backdrop-filter: blur(28px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
      padding: max(80px, env(safe-area-inset-top, 80px) + 20px) 24px max(80px, env(safe-area-inset-bottom, 60px) + 20px);
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
    }
    .mobile-menu.open { opacity: 1; visibility: visible; }
    .mobile-menu-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      text-align: center;
    }
    .mobile-menu-nav a {
      font-family: 'Fraunces', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--text-light);
      text-decoration: none;
      letter-spacing: -0.02em;
      padding: 9px 16px;
      width: auto;
      max-width: 100%;
      text-align: center;
      transition: color 0.2s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
      transform: translateY(20px);
      opacity: 0;
    }
    .mobile-menu.open .mobile-menu-nav a {
      transform: translateY(0);
      opacity: 1;
    }
    .mobile-menu.open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.08s; }
    .mobile-menu.open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.14s; }
    .mobile-menu.open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.20s; }
    .mobile-menu.open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.26s; }
    .mobile-menu.open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.32s; }
    .mobile-menu-nav a:active { color: var(--accent); }
    .mobile-menu-nav a.cta-link {
      margin-top: 18px;
      padding: 14px 28px;
      background: var(--accent);
      color: var(--bg-dark);
      border-radius: 100px;
      font-size: 0.95rem;
      letter-spacing: 0;
      width: auto;
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .mobile-menu-meta {
      position: absolute;
      bottom: max(20px, env(safe-area-inset-bottom, 20px));
      left: 0; right: 0;
      text-align: center;
      font-size: 0.74rem;
      color: oklch(50% 0.01 258);
      letter-spacing: 0.05em;
      pointer-events: none;
    }
    .mobile-menu-meta strong { color: var(--accent); font-weight: 600; }
    body.menu-open { overflow: hidden; }
    body.menu-open .floating-cta { opacity: 0; pointer-events: none; transform: translateY(40px); }

    /* ── HERO ───────────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100vh;
      height: 100lvh;
      min-height: 560px;
      background: var(--bg-dark);
      overflow: hidden;
      contain: layout paint;
    }
    /* Hero reveal stage: 3 before/after image pairs with heal-line wipe */
    .hero-stage {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: var(--bg-dark);
      overflow: hidden;
      opacity: 0;
      transition: opacity 0.6s ease;
    }
    .hero-stage.loaded { opacity: 1; }
    .hero-pair {
      position: absolute;
      inset: 0;
      visibility: hidden;
      opacity: 0;
    }
    .hero-pair.is-active {
      visibility: visible;
      opacity: 1;
    }
    .hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      user-select: none;
      -webkit-user-drag: none;
      pointer-events: none;
      transform: translateZ(0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }
    .hero-img-clean {
      clip-path: inset(0 100% 0 0);
      will-change: clip-path, transform;
    }
    .hero-pair { will-change: opacity; }
    .heal-line { will-change: left, opacity; }
    .heal-line {
      position: absolute;
      top: -5%;
      bottom: -5%;
      width: 2px;
      left: -3%;
      transform: translateX(-50%);
      background: linear-gradient(180deg,
        transparent 0%,
        var(--accent) 15%,
        oklch(85% 0.16 60) 50%,
        var(--accent) 85%,
        transparent 100%);
      box-shadow:
        0 0 22px var(--accent),
        0 0 60px oklch(72% 0.19 48 / 0.55),
        0 0 140px oklch(72% 0.19 48 / 0.25);
      opacity: 0;
      z-index: 3;
      pointer-events: none;
      will-change: left, opacity;
    }
    .hero-phase-label {
      position: absolute;
      top: clamp(80px, 11vh, 116px);
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Fraunces', serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      color: var(--accent);
      padding: 9px 18px;
      background: oklch(11% 0.018 258 / 0.72);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
      border: 1px solid oklch(72% 0.19 48 / 0.28);
      border-radius: 100px;
      z-index: 5;
      opacity: 0;
      white-space: nowrap;
      pointer-events: none;
      will-change: opacity;
    }
    @media (max-width: 600px) {
      .hero-phase-label { font-size: 0.65rem; padding: 7px 14px; }
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 90% 75% at 50% 50%, transparent 0%, oklch(11% 0.018 258 / 0.45) 80%, oklch(11% 0.018 258 / 0.7) 100%),
        linear-gradient(180deg, oklch(11% 0.018 258 / 0.55) 0%, oklch(11% 0.018 258 / 0.15) 35%, oklch(11% 0.018 258 / 0.85) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(80px, 10vw, 120px) 40px clamp(60px, 8vw, 96px);
      will-change: transform, opacity;
    }
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image:
        linear-gradient(oklch(25% 0.02 258 / 0.25) 1px, transparent 1px),
        linear-gradient(90deg, oklch(25% 0.02 258 / 0.25) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 100%, black 30%, transparent 100%);
      pointer-events: none;
    }
    .hero-glow {
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, oklch(72% 0.19 48 / 0.15), transparent 70%);
      top: -100px; right: -100px;
      pointer-events: none;
    }
    .hero-glow-2 {
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, oklch(60% 0.15 220 / 0.1), transparent 70%);
      bottom: 100px; left: -80px;
      pointer-events: none;
    }
    .hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      opacity: 0;
    }
    .hero-headline {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.2rem, 4.6vw, 3.9rem);
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: -0.015em;
      color: var(--text-light);
      max-width: 22ch;
      margin-bottom: 32px;
      hyphens: none;
      -webkit-hyphens: none;
      overflow-wrap: normal;
    }
    .hero-headline .accent-word { font-weight: 700; }
    /* padding-bottom + negativer margin gibt Descendern (g, j, p, q, y)
       Platz, ohne den vertikalen Rhythmus zu verschieben. Ohne das wird
       das „g" in „Beseitigt" durch overflow:hidden am unteren Rand
       abgeschnitten. */
    .hero-headline .line { display: block; overflow: hidden; padding-bottom: 0.25em; margin-bottom: -0.25em; }
    .hero-headline .word {
      display: inline-block;
      transform: translateY(110%);
    }
    .hero-headline .accent-word { color: var(--accent); }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: oklch(65% 0.01 258);
      max-width: 480px;
      line-height: 1.65;
      margin-bottom: 48px;
      opacity: 0;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      opacity: 0;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: var(--bg-dark);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 15px 28px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, opacity 0.2s;
      white-space: nowrap;
    }
    .btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: oklch(70% 0.01 258);
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s;
    }
    .btn-ghost:hover { color: var(--text-light); }
    .btn-ghost svg { transition: transform 0.2s; }
    .btn-ghost:hover svg { transform: translateX(4px); }
    /* Klar erkennbarer Anruf-Button (Icon + Label + Nummer) */
    .btn-call {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 9px 22px 9px 11px; border-radius: var(--radius-sm);
      text-decoration: none; cursor: pointer;
      background: color-mix(in oklch, var(--text-light) 7%, transparent);
      border: 1px solid color-mix(in oklch, var(--text-light) 22%, transparent);
      color: var(--text-light);
      transition: background 0.25s ease, border-color 0.25s ease;
    }
    .btn-call:hover {
      background: color-mix(in oklch, var(--accent) 16%, transparent);
      border-color: color-mix(in oklch, var(--accent) 55%, transparent);
    }
    .btn-call:hover .btn-call-ic { background: oklch(82% 0.17 70); }
    .btn-call-ic {
      width: 38px; height: 38px; flex-shrink: 0; display: grid; place-items: center;
      border-radius: 50%; background: var(--accent); color: var(--bg-dark);
    }
    .btn-call-ic svg { width: 18px; height: 18px; }
    .btn-call-txt { display: flex; flex-direction: column; line-height: 1.14; text-align: left; }
    .btn-call-txt small { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: oklch(73% 0.02 258); }
    .btn-call-txt strong { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.01em; }
    .hero-scroll-hint {
      position: absolute;
      bottom: 36px; right: 40px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: oklch(40% 0.01 258);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 40px; height: 1px;
      background: oklch(40% 0.01 258);
      position: relative;
      overflow: hidden;
    }
    .scroll-line::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--accent);
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* ── TRUST STRIP ─────────────────────────────────────────── */
    .trust-strip {
      background: var(--bg-mid);
      border-top: 1px solid var(--border-dark);
      border-bottom: 1px solid var(--border-dark);
      padding: 40px clamp(20px, 4vw, 40px);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(16px, 3vw, 48px);
      max-width: 1280px;
      margin: 0 auto;
    }
    .trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 14px;
      color: oklch(70% 0.01 258);
      font-size: 0.85rem;
      font-weight: 500;
    }
    .trust-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: oklch(20% 0.018 258);
      border: 1px solid oklch(25% 0.018 258);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trust-icon svg { width: 22px; height: 22px; color: var(--accent); }
    .trust-label { line-height: 1.45; }
    .trust-label strong {
      display: block;
      color: var(--text-light);
      font-size: 0.92rem;
      font-weight: 600;
      margin-bottom: 2px;
    }
    @media (max-width: 720px) {
      .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; padding: 32px 20px; }
    }

    /* ── SECTION BASE ────────────────────────────────────────── */
    section { padding: var(--gap) 40px; }
    .container { max-width: var(--max-w); margin: 0 auto; }
    .section-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 3.2vw, 2.4rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--text-dark);
      max-width: 11ch;
    }
    .section-title.light { color: var(--text-light); }

    /* ── SERVICES ────────────────────────────────────────────── */
    .services { background: var(--bg-light); }
    .services-cta {
      display: flex;
      justify-content: center;
      margin-top: 56px;
    }
    .services-cta .btn-primary svg { transition: transform 0.2s; }
    .services-cta .btn-primary:hover svg { transform: translateX(4px); }
    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 72px;
      gap: 24px;
      flex-wrap: wrap;
    }
    .services-desc {
      max-width: 400px;
      color: var(--text-muted);
      line-height: 1.7;
      font-size: 1rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .service-card {
      position: relative;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 0 0 32px;
      overflow: hidden;
      cursor: default;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                  border-color 0.4s, box-shadow 0.4s;
      display: flex;
      flex-direction: column;
      min-height: 580px;
    }
    .service-card-img {
      position: relative;
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--bg-warm);
      flex-shrink: 0;
    }
    .service-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
      display: block;
    }
    .service-card:hover .service-card-img img { transform: scale(1.06); }
    .service-card-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, oklch(11% 0.018 258 / 0.25) 100%);
      pointer-events: none;
    }
    .service-card-inner {
      padding: 28px 32px 0;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      position: relative;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), oklch(82% 0.16 60));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .service-card:hover {
      transform: translateY(-6px);
      border-color: oklch(85% 0.02 70);
      box-shadow: 0 24px 60px -20px oklch(40% 0.05 258 / 0.18);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card-watermark {
      position: absolute;
      bottom: -8px; right: 4px;
      font-family: 'Fraunces', serif;
      font-size: 8rem;
      font-weight: 800;
      line-height: 0.8;
      color: oklch(95% 0.012 70);
      pointer-events: none;
      user-select: none;
      letter-spacing: -0.06em;
      transition: color 0.4s;
      z-index: 0;
    }
    .service-card:hover .service-card-watermark {
      color: oklch(96% 0.04 60);
    }
    .service-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }
    .service-num-chip {
      font-family: 'Fraunces', serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--accent);
      padding: 6px 12px;
      border: 1px solid oklch(72% 0.19 48 / 0.35);
      border-radius: 100px;
      background: oklch(72% 0.19 48 / 0.06);
    }
    .service-icon-wrap {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: var(--bg-warm);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.35s, transform 0.4s;
    }
    .service-card:hover .service-icon-wrap {
      background: oklch(72% 0.19 48 / 0.15);
      transform: rotate(-6deg);
    }
    .service-icon-wrap svg {
      width: 26px; height: 26px;
      color: var(--text-dark);
      transition: color 0.35s;
    }
    .service-card:hover .service-icon-wrap svg { color: var(--accent); }
    .service-card h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.55rem;
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.15;
      margin-bottom: 14px;
      color: var(--text-dark);
      position: relative;
      z-index: 1;
    }
    .service-card p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.7;
      position: relative;
      z-index: 1;
      flex-grow: 1;
    }
    .service-features {
      list-style: none;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 9px;
      position: relative;
      z-index: 1;
    }
    .service-features li {
      font-size: 0.82rem;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
    }
    .service-features li::before {
      content: '';
      width: 14px; height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-dark);
      text-decoration: none;
      position: relative;
      z-index: 1;
      transition: color 0.25s, gap 0.25s;
    }
    .service-link::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 100%;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .service-card:hover .service-link { color: var(--accent); gap: 14px; }
    .service-card:hover .service-link::after { transform: scaleX(1); }
    .service-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
    .service-card:hover .service-link svg { transform: translateX(2px); }
    @media (max-width: 900px) {
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .service-card { min-height: auto; padding: 0 0 28px; }
      .service-card-inner { padding: 24px 26px 0; }
      .service-card-watermark { font-size: 6rem; }
    }

    /* ── PROCESS / LACKDOKTOR ────────────────────────────────── */
    .process { background: var(--bg-dark); }
    .process-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .process-left .section-eyebrow { color: var(--accent); }
    .process-left .section-title { color: var(--text-light); margin-bottom: 24px; }
    .process-lead {
      color: oklch(60% 0.012 258);
      line-height: 1.75;
      margin-bottom: 40px;
      font-size: 1rem;
    }
    .process-steps { list-style: none; display: flex; flex-direction: column; gap: 0; }
    .process-step {
      display: flex;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border-dark);
    }
    .process-step:first-child { border-top: 1px solid var(--border-dark); }
    .step-num {
      font-family: 'Fraunces', serif;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--accent);
      min-width: 28px;
      padding-top: 2px;
    }
    .step-body h4 {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--text-light);
      margin-bottom: 6px;
    }
    .step-body p { font-size: 0.88rem; color: oklch(55% 0.01 258); line-height: 1.65; }

    .process-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .stat-card {
      background: var(--bg-mid);
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-md);
      padding: 28px 24px;
    }
    .stat-card:first-child {
      grid-column: span 2;
      display: flex;
      align-items: center;
      gap: 24px;
      background: oklch(72% 0.19 48 / 0.08);
      border-color: oklch(72% 0.19 48 / 0.25);
    }
    .stat-num {
      font-family: 'Fraunces', serif;
      font-size: 3rem;
      font-weight: 800;
      color: var(--accent);
      letter-spacing: -0.04em;
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }
    .stat-label {
      font-size: 0.85rem;
      color: oklch(55% 0.01 258);
      line-height: 1.5;
    }
    .stat-label strong { display: block; color: var(--text-light); font-size: 1rem; margin-bottom: 4px; }
    .stat-icon {
      width: 48px; height: 48px;
      border-radius: 10px;
      background: oklch(72% 0.19 48 / 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .stat-icon svg { width: 22px; height: 22px; color: var(--accent); }

    /* ── WEITERE LEISTUNGEN ──────────────────────────────────── */
    .weitere {
      background: var(--bg-light);
      padding-left: 0;
      padding-right: 0;
      overflow: hidden;
    }
    .weitere .container { padding: 0 40px; }
    .weitere-title-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
      gap: 16px;
      flex-wrap: wrap;
    }
    .weitere-marquee-wrap {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
    }
    .marquee {
      display: flex;
      overflow: hidden;
      width: 100%;
    }
    .marquee-track {
      display: flex;
      gap: 14px;
      flex-shrink: 0;
      padding-right: 14px;
      animation: marquee-scroll-l 50s linear infinite;
      will-change: transform;
    }
    .marquee-right .marquee-track { animation-name: marquee-scroll-r; }
    .marquee:hover .marquee-track,
    .marquee:focus-within .marquee-track { animation-play-state: paused; }
    @keyframes marquee-scroll-l {
      from { transform: translate3d(0, 0, 0); }
      to   { transform: translate3d(-50%, 0, 0); }
    }
    @keyframes marquee-scroll-r {
      from { transform: translate3d(-50%, 0, 0); }
      to   { transform: translate3d(0, 0, 0); }
    }
    .marquee-pill {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 26px;
      background: white;
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-dark);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
      cursor: default;
      position: relative;
    }
    .marquee-pill:hover {
      background: var(--bg-dark);
      color: var(--text-light);
      border-color: var(--bg-dark);
    }
    .marquee-pill-icon {
      width: 14px; height: 14px;
      color: var(--accent);
      flex-shrink: 0;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .marquee-pill:hover .marquee-pill-icon {
      transform: rotate(135deg);
    }
    .marquee-pill-num {
      font-family: 'Fraunces', serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: oklch(70% 0.012 258);
      transition: color 0.35s ease;
    }
    .marquee-pill:hover .marquee-pill-num { color: oklch(72% 0.19 48); }
    /* Marquee läuft IMMER — auch bei prefers-reduced-motion (Markenversprechen).
       Fallback für Reduced-Motion: User kann horizontal touch-scrollen. */
    @media (prefers-reduced-motion: reduce) {
      .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .marquee-track { animation-duration: 80s; }
    }
    /* PageSpeed: Marquee-Wrap nicht hinter .reveal verstecken, da JS-Start
       auf Mobile spürbar verzögert ist. Stattdessen Container sofort sichtbar. */
    .weitere-marquee-wrap { opacity: 1; transform: none; }
    @media (max-width: 900px) {
      .weitere .container { padding: 0 24px; }
      .marquee-track { animation-duration: 35s; gap: 10px; padding-right: 10px; }
      .marquee-pill { padding: 12px 18px; font-size: 0.85rem; }
    }

    /* ── REFERENZEN / GOOGLE REVIEWS ──────────────────────── */
    .testimonial { background: var(--bg-warm); }
    .reviews-header {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 40px;
      align-items: flex-end;
      margin-bottom: 48px;
    }
    .reviews-header .section-eyebrow { margin-bottom: 12px; }
    .reviews-google-badge {
      display: flex;
      align-items: center;
      gap: 20px;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px 24px;
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    .reviews-google-badge:hover {
      transform: translateY(-2px);
      border-color: oklch(82% 0.02 70);
      box-shadow: 0 12px 36px -16px oklch(40% 0.05 258 / 0.18);
    }
    .reviews-google-badge .g-logo {
      width: 38px; height: 38px;
      flex-shrink: 0;
    }
    .reviews-badge-info { flex-grow: 1; min-width: 0; }
    .reviews-badge-rating {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Fraunces', serif;
      font-weight: 800;
      font-size: 1.6rem;
      letter-spacing: -0.02em;
      color: var(--text-dark);
      line-height: 1;
    }
    .reviews-stars {
      display: inline-flex;
      gap: 1px;
      color: #FBBC04;
    }
    .reviews-stars svg { width: 18px; height: 18px; }
    .reviews-badge-meta {
      margin-top: 4px;
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .reviews-badge-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-dark);
      white-space: nowrap;
      padding-left: 16px;
      border-left: 1px solid var(--border);
    }
    .reviews-badge-cta svg { width: 14px; height: 14px; transition: transform 0.3s; }
    .reviews-google-badge:hover .reviews-badge-cta svg { transform: translateX(3px); }

    /* Carousel: horizontale Endlos-Schleife, langsam nach links scrollend.
       JS rendert alle Reviews 2x → translateX(-50%) ergibt nahtlosen Loop. */
    .reviews-grid {
      position: relative;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    }
    .reviews-grid::before,
    .reviews-grid::after { content: none; }
    .reviews-track {
      display: flex;
      align-items: stretch;
      gap: 18px;
      width: max-content;
      animation: reviews-scroll 60s linear infinite;
      will-change: transform;
    }
    .reviews-grid:hover .reviews-track,
    .reviews-grid:focus-within .reviews-track { animation-play-state: paused; }
    @keyframes reviews-scroll {
      from { transform: translate3d(0, 0, 0); }
      to   { transform: translate3d(-50%, 0, 0); }
    }
    /* Carousel läuft IMMER — auch bei prefers-reduced-motion. Reviews sind
       Trust-Signal, müssen sich bewegen. Reduced-Motion: nur langsamer. */
    @media (prefers-reduced-motion: reduce) {
      .reviews-track { animation-duration: 120s; }
    }
    .review-card {
      flex: 0 0 320px;
      height: 280px;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 22px 22px 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
      position: relative;
      overflow: hidden;
    }
    .review-text-wrap { flex: 1 1 auto; overflow: hidden; position: relative; }
    .review-text-wrap .review-text {
      display: -webkit-box;
      -webkit-line-clamp: 5;
      line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .review-more {
      display: inline-block;
      margin-top: 8px;
      font-size: 0.8rem;
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
    }
    .review-more::after {
      content: " →";
      transition: transform 0.2s;
      display: inline-block;
    }
    .review-more:hover { color: oklch(60% 0.19 48); }
    .review-more:hover::after { transform: translateX(3px); }
    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 50px -18px oklch(40% 0.05 258 / 0.18);
      border-color: oklch(82% 0.02 70);
    }
    .review-head {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .review-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--avatar-bg, var(--accent));
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1rem;
      flex-shrink: 0;
      letter-spacing: -0.02em;
    }
    .review-avatar-photo { background: var(--border); padding: 0; overflow: hidden; }
    .review-avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .review-card-link {
      text-decoration: none; color: inherit; cursor: pointer;
    }
    .review-card-link:hover { border-color: color-mix(in oklch, var(--accent) 50%, var(--border)); }
    .review-who { flex-grow: 1; min-width: 0; line-height: 1.3; }
    .review-who strong {
      display: block;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-dark);
      letter-spacing: -0.01em;
    }
    .review-who span {
      display: block;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 2px;
    }
    .review-card .g-logo-sm {
      width: 18px; height: 18px;
      opacity: 0.6;
      flex-shrink: 0;
    }
    .review-rating-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .review-rating-row .reviews-stars svg { width: 15px; height: 15px; }
    .review-text {
      font-size: 0.92rem;
      color: var(--text-dark);
      line-height: 1.65;
      margin: 0;
    }
    .review-text::before { content: '\201E'; }
    .review-text::after { content: '\201C'; }
    @media (max-width: 900px) {
      .reviews-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
      .reviews-track { gap: 12px; animation-duration: 45s; }
      .review-card { flex-basis: 260px; height: 260px; padding: 18px 18px 18px; }
      .review-card .review-text { font-size: 0.86rem; line-height: 1.55; -webkit-line-clamp: 5; line-clamp: 5; }
    }
    @media (max-width: 600px) {
      .reviews-google-badge { padding: 14px 16px; gap: 14px; }
      .reviews-badge-rating { font-size: 1.25rem; }
      .reviews-badge-cta {
        padding-left: 0;
        border-left: none;
        padding-top: 10px;
        margin-top: 10px;
        border-top: 1px solid var(--border);
        width: 100%;
        justify-content: space-between;
        font-size: 0.85rem;
      }
      .reviews-google-badge { flex-wrap: wrap; }
      .review-card {
        flex-basis: 240px;
        height: 250px;
        padding: 16px 16px 16px;
      }
      .review-card .review-text { -webkit-line-clamp: 4; line-clamp: 4; }
      .reviews-track { gap: 10px; animation-duration: 38s; }
      .reviews-grid {
        mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
      }
    }

    /* ── SHORTS ──────────────────────────────────────────────── */
    .shorts { background: var(--bg-light); }
    .shorts-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
      gap: 24px;
      flex-wrap: wrap;
    }
    .shorts-yt-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-dark);
      text-decoration: none;
      padding-bottom: 3px;
      border-bottom: 1px solid var(--text-dark);
      transition: color 0.2s, gap 0.2s, border-color 0.2s;
    }
    .shorts-yt-link:hover { color: var(--accent); border-color: var(--accent); gap: 12px; }
    .shorts-yt-link .yt-mark { width: 18px; height: 18px; color: #FF0033; }
    .shorts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      max-width: 900px;
      margin: 0 auto;
    }
    .short-card {
      position: relative;
      aspect-ratio: 9 / 16;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: oklch(20% 0.018 258);
      cursor: pointer;
      border: 1px solid var(--border);
      padding: 0;
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s, border-color 0.45s;
      -webkit-tap-highlight-color: transparent;
    }
    .short-card:hover {
      transform: translateY(-4px);
      border-color: oklch(82% 0.02 70);
      box-shadow: 0 24px 60px -22px oklch(40% 0.05 258 / 0.28);
    }
    .short-card img,
    .short-card iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      border: 0;
    }
    .short-card img {
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .short-card:hover img { transform: scale(1.05); }
    .short-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, oklch(11% 0.018 258 / 0.7) 100%);
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .short-card.is-playing::after,
    .short-card.is-playing .short-play,
    .short-card.is-playing .short-title { opacity: 0; pointer-events: none; }
    .short-play {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 60px; height: 60px;
      border-radius: 50%;
      background: oklch(11% 0.018 258 / 0.78);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid oklch(80% 0.01 258 / 0.3);
      transition: background 0.3s, transform 0.3s, opacity 0.3s;
      z-index: 2;
    }
    .short-card:hover .short-play {
      background: var(--accent);
      transform: translate(-50%, -50%) scale(1.08);
      border-color: var(--accent);
    }
    .short-play svg { width: 22px; height: 22px; color: white; margin-left: 3px; transition: color 0.3s; }
    .short-card:hover .short-play svg { color: var(--bg-dark); }
    .short-title {
      position: absolute;
      left: 14px; right: 14px; bottom: 14px;
      color: var(--text-light);
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.35;
      z-index: 2;
      transition: opacity 0.3s;
      text-shadow: 0 1px 10px oklch(11% 0 0 / 0.55);
    }
    @media (max-width: 900px) {
      .shorts-grid { gap: 10px; max-width: 100%; }
      .short-play { width: 48px; height: 48px; }
      .short-play svg { width: 18px; height: 18px; }
      .short-title { font-size: 0.74rem; left: 10px; right: 10px; bottom: 10px; }
    }
    @media (max-width: 380px) {
      .short-title { display: none; }
    }

    /* ── ABOUT ───────────────────────────────────────────────── */
    .about { background: var(--bg-dark); }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-frame {
      aspect-ratio: 4/5;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border-dark);
      position: relative;
      background: linear-gradient(160deg, oklch(20% 0.02 258), oklch(15% 0.02 258));
    }
    .about-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @media (hover: hover) {
      .about-img-wrap:hover .about-img-frame img { transform: scale(1.04); }
    }
    .about-img-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, oklch(11% 0.018 258 / 0.35) 100%);
      pointer-events: none;
    }
    .about-badge {
      position: absolute;
      bottom: -20px; right: -20px;
      background: var(--accent);
      color: var(--bg-dark);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      font-family: 'Fraunces', serif;
      font-weight: 800;
      font-size: 0.9rem;
      line-height: 1.3;
      box-shadow: 0 8px 32px oklch(72% 0.19 48 / 0.3);
    }
    .about-badge span { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 0.78rem; opacity: 0.8; }
    .about-content .section-eyebrow { color: var(--accent); }
    .about-content .section-title { color: var(--text-light); margin-bottom: 24px; }
    .about-text { color: oklch(58% 0.012 258); line-height: 1.8; font-size: 1rem; margin-bottom: 32px; }
    .about-highlights {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 40px;
    }
    .highlight-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.9rem;
      color: oklch(68% 0.01 258);
    }
    .highlight-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

    /* ── CONTACT CTA ─────────────────────────────────────────── */
    .contact-cta {
      background: var(--accent);
      padding: clamp(64px, 10vw, 100px) 40px;
    }
    .contact-cta-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
    }
    .contact-cta h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 3.2vw, 2.4rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--bg-dark);
      max-width: 11ch;
    }
    .contact-cta p {
      margin-top: 12px;
      color: oklch(25% 0.04 48);
      font-size: 1rem;
    }
    .contact-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
    /* Footer-CTA: Anfrage muss optisch dominieren, Telefon dezent zweitrangig.
       Anfrage = tiefschwarzer Solid-Button, Telefon = Outline. */
    .contact-actions .btn-primary {
      background: #0d0f17;
      color: #fff;
      font-size: 1.02rem;
      padding: 18px 32px;
      box-shadow: 0 14px 36px -12px rgba(0,0,0,0.55);
    }
    .contact-actions .btn-primary:hover {
      background: #000;
      box-shadow: 0 18px 42px -10px rgba(0,0,0,0.7);
      opacity: 1;
    }
    .contact-actions .btn-dark {
      background: transparent;
      color: var(--text-light);
      border: 1px solid color-mix(in oklch, var(--text-light) 22%, transparent);
      font-weight: 500;
      padding: 14px 26px;
      font-size: 0.92rem;
    }
    .contact-actions .btn-dark:hover {
      background: color-mix(in oklch, var(--text-light) 8%, transparent);
      border-color: color-mix(in oklch, var(--text-light) 40%, transparent);
    }
    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--bg-dark);
      color: var(--text-light);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 15px 28px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, opacity 0.2s;
      white-space: nowrap;
    }
    .btn-dark:hover { transform: translateY(-2px); }
    .contact-tel {
      font-size: 0.9rem;
      color: oklch(25% 0.04 48);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .contact-tel strong { color: var(--bg-dark); font-size: 1rem; }

    /* ── PARTNERS ────────────────────────────────────────────── */
    .partners {
      background: var(--bg-light);
      padding-top: calc(var(--gap) * 0.75);
      padding-bottom: calc(var(--gap) * 0.75);
      padding-left: 0;
      padding-right: 0;
      overflow: hidden;
    }
    .partners .container { padding: 0 40px; margin-bottom: 40px; }
    .partners-title {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-align: center;
    }
    .partners-marquee-wrap {
      width: 100%;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
    }
    .partners-track {
      animation-duration: 75s;
      align-items: center;
      gap: clamp(40px, 6vw, 80px);
      padding-right: clamp(40px, 6vw, 80px);
    }
    .partner-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 56px;
      width: clamp(120px, 14vw, 180px);
      padding: 4px 8px;
      flex-shrink: 0;
      filter: grayscale(100%);
      opacity: 0.55;
      transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
    }
    .partner-logo:hover {
      opacity: 1;
      filter: grayscale(0%);
      transform: translateY(-2px);
    }
    .partner-logo img {
      max-height: 100%;
      max-width: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      mix-blend-mode: multiply;
    }
    @media (max-width: 900px) {
      .partners .container { padding: 0 24px; margin-bottom: 28px; }
      .partners-track { animation-duration: 55s; gap: clamp(32px, 8vw, 56px); padding-right: clamp(32px, 8vw, 56px); }
      .partner-logo { height: 44px; width: clamp(100px, 28vw, 140px); }
    }

    /* ── FOOTER ──────────────────────────────────────────────── */
    footer {
      background: var(--bg-dark);
      border-top: 1px solid var(--border-dark);
      padding: 48px 40px;
    }
    .footer-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-brand {
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--text-light);
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .footer-brand span { color: var(--accent); }
    .footer-brand img {
      height: 44px;
      width: auto;
      display: block;
      filter:
        drop-shadow(0 0 6px rgba(255, 255, 255, 0.7))
        drop-shadow(0 0 14px rgba(255, 255, 255, 0.4));
    }
    .footer-socials {
      display: flex;
      gap: 10px;
      list-style: none;
    }
    .footer-socials a {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: oklch(20% 0.018 258);
      border: 1px solid oklch(28% 0.018 258);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: oklch(70% 0.01 258);
      text-decoration: none;
      transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
    }
    .footer-socials a:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--bg-dark);
      transform: translateY(-2px);
    }
    .footer-socials svg { width: 18px; height: 18px; }
    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .footer-links a {
      font-size: 0.82rem;
      color: oklch(45% 0.01 258);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text-light); }
    .footer-legal {
      display: flex;
      gap: 22px;
      list-style: none;
      margin-top: -6px;
    }
    .footer-legal a {
      font-size: 0.78rem;
      color: oklch(52% 0.01 258);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-legal a:hover { color: var(--accent); }
    .footer-copy {
      font-size: 0.78rem;
      color: oklch(38% 0.01 258);
    }

    /* ── SCROLL REVEAL ───────────────────────────────────────────
       Progressive Enhancement: opacity:0 nur wenn JS aktiv ist
       (html.js wird von main.js früh gesetzt). Fällt JS aus oder
       IntersectionObserver greift nicht → Inhalte bleiben sichtbar
       statt komplett weißer Seite. */
    .reveal {
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    html.js .reveal {
      opacity: 0;
      transform: translateY(32px);
    }
    html.js .reveal.visible,
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    @media (prefers-reduced-motion: reduce) {
      html.js .reveal { opacity: 1; transform: none; transition: none; }
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── FLOATING CTA ────────────────────────────────────────── */
    .floating-cta {
      position: fixed;
      bottom: 32px; right: 32px;
      z-index: 90;
      background: var(--accent);
      color: var(--bg-dark);
      font-weight: 700;
      font-size: 0.88rem;
      padding: 14px 22px;
      border-radius: 100px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 8px 32px oklch(72% 0.19 48 / 0.4);
      transform: translateY(80px);
      opacity: 0;
      transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.2s;
    }
    .floating-cta.show { transform: translateY(0); opacity: 1; }
    .floating-cta:hover { box-shadow: 0 12px 40px oklch(72% 0.19 48 / 0.55); }
    .floating-cta .pulse {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--bg-dark);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    /* ── HOVER ISOLATION (no stuck-hover on touch) ──────────── */
    @media (hover: none) {
      .service-card:hover { transform: none; box-shadow: none; }
      .service-card:hover::before { transform: scaleX(0); }
      .service-card:hover .service-num { color: oklch(88% 0.02 70); }
      .service-card:hover .service-card-img img { transform: none; }
      .partner-logo:hover { opacity: 0.55; filter: grayscale(100%); transform: none; }
    }

    /* ── RESPONSIVE ──────────────────────────────────────────── */
    /* TABLET — 900px and below */
    @media (max-width: 900px) {
      :root { --gap: clamp(56px, 12vw, 88px); }

      /* Nav */
      nav {
        padding: 14px 20px;
        padding-top: max(14px, env(safe-area-inset-top));
      }
      nav.scrolled {
        padding: 10px 20px;
        padding-top: max(10px, env(safe-area-inset-top));
      }
      .nav-links { display: none !important; }
      .nav-toggle { display: flex; }
      /* Logo-Glow auf Mobile reduzieren — sieht sonst aus wie ein "Lichthof" */
      .nav-logo img {
        filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4)) !important;
        height: 44px !important;
      }
      /* Breadcrumb auf Mobile dezenter + kleiner Abstand zur Nav */
      .page-hero .breadcrumb { font-size: 0.78rem; opacity: 0.7; }

      /* Sections */
      section { padding: var(--gap) 20px; }

      /* Hero */
      .hero-content { padding: 90px 24px 90px; }
      .hero-eyebrow { font-size: 0.7rem; margin-bottom: 18px; letter-spacing: 0.12em; }
      .hero-sub { font-size: 0.95rem; margin-bottom: 32px; }
      .hero-scroll-hint { display: none; }
      .hero-glow, .hero-glow-2 { width: 320px; height: 320px; }
      .hero-phase-label { top: max(80px, env(safe-area-inset-top, 80px) + 18px); }

      /* Section titles */
      .section-title { font-size: clamp(1.7rem, 6.5vw, 2.5rem); max-width: none; }
      .contact-cta h2 { max-width: none; }
      .hero-headline { max-width: none; }

      /* Services */
      .services-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; gap: 16px; }
      .services-desc { max-width: 100%; }

      /* Process: stats now visible on mobile, 2-column grid below the steps */
      .process-inner { grid-template-columns: 1fr; gap: 48px; }
      .process-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .stat-card { padding: 22px 18px; }
      .stat-card:first-child {
        grid-column: span 2;
        flex-direction: row;
        gap: 18px;
        padding: 22px 20px;
      }
      .stat-card:first-child .stat-num { font-size: 2.4rem; }
      .stat-num { font-size: 2.2rem; }

      /* Weitere title row */
      .weitere-title-row { flex-direction: column; align-items: flex-start; margin-bottom: 32px; }

      /* Testimonial */
      .testimonial-inner { grid-template-columns: 1fr; gap: 32px; }
      .testimonial-quote-wrap { padding: 32px 24px; }
      .quote-mark { font-size: 5rem; top: 12px; left: 18px; }

      /* About */
      .about-inner { grid-template-columns: 1fr; gap: 32px; }
      .about-img-wrap { max-width: min(320px, 70vw); margin: 0 auto; }
      .about-badge { right: 0; bottom: -16px; font-size: 0.82rem; padding: 13px 16px; }

      /* Contact CTA */
      .contact-cta-inner { grid-template-columns: 1fr; gap: 28px; }
      .contact-actions { align-items: flex-start; width: 100%; }

      /* Floating CTA: bigger tap target, safe-area aware */
      .floating-cta {
        bottom: max(20px, env(safe-area-inset-bottom, 20px));
        right: max(16px, env(safe-area-inset-right, 16px));
        font-size: 0.84rem;
        padding: 13px 20px;
        min-height: 44px;
      }

      /* Footer */
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; padding-bottom: env(safe-area-inset-bottom, 0); }
      .footer-links { gap: 20px; flex-wrap: wrap; }
    }

    /* PHONE — 600px and below */
    @media (max-width: 600px) {
      section { padding: var(--gap) 18px; }
      .hero-content { padding: 80px 20px 76px; }
      .hero-headline { font-size: clamp(2.4rem, 11vw, 4rem); }
      .hero-actions { flex-direction: column; align-items: stretch; gap: 16px; width: 100%; }
      .btn-primary, .btn-ghost, .btn-call { width: 100%; justify-content: center; min-height: 48px; }
      .btn-primary, .btn-call { align-items: center; }
      .btn-ghost { padding: 14px 0; }
      .btn-call { justify-content: flex-start; padding-block: 10px; }
      .contact-actions { gap: 16px; }
      .map-embed { aspect-ratio: 4/3; }
      .map-embed .map-link { padding: 12px 18px; font-size: 0.85rem; min-height: 44px; }

      .services-grid { gap: 14px; }
      .services-cta { margin-top: 32px; }
      .services-cta .btn-primary { width: 100%; justify-content: center; }
      .service-card { padding: 0 0 24px; min-height: auto; }
      .service-card-img { aspect-ratio: 16/9; }
      .service-card-inner { padding: 24px 22px 0; }
      .service-card-watermark { font-size: 5.5rem; bottom: -6px; }
      .service-card h3 { font-size: 1.35rem; }
      .service-features li { font-size: 0.8rem; }

      .contact-cta h2 { font-size: clamp(1.8rem, 8.5vw, 2.4rem); }
      .btn-dark { width: 100%; justify-content: center; min-height: 48px; }
      .contact-tel { font-size: 0.86rem; flex-wrap: wrap; }

      .testimonial-text { font-size: 1rem; line-height: 1.7; }
      .author-avatar { width: 40px; height: 40px; }

      .process-step { gap: 14px; padding: 18px 0; }
      .step-body h4 { font-size: 0.95rem; }
      .step-body p { font-size: 0.84rem; }

      .partners-logos { grid-template-columns: repeat(3, 1fr); gap: 18px 14px; }
      .partner-logo { height: 44px; }

      footer { padding: 36px 20px; }
      .footer-brand { font-size: 1rem; }
      .footer-links a { font-size: 0.85rem; }
    }

    /* SMALL PHONE — 380px and below */
    @media (max-width: 380px) {
      .hero-headline { font-size: clamp(2.1rem, 10.5vw, 3rem); }
      .nav-logo { font-size: 1.05rem; }
      .nav-logo img { height: 42px; }
      .footer-brand img { height: 32px; }
      .partners-logos { grid-template-columns: repeat(2, 1fr); }
      .service-card-img { aspect-ratio: 4/3; }
      .marquee-pill { padding: 12px 18px; font-size: 0.82rem; }
    }

    /* LANDSCAPE PHONE — keep hero usable */
    @media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
      .hero { height: auto; min-height: 100svh; }
      .hero-content { padding: 70px 24px 50px; }
      .hero-headline { font-size: clamp(2rem, 7vw, 3.5rem); }
      .hero-sub { font-size: 0.88rem; margin-bottom: 20px; }
    }

/* ════════════════════════════════════════════════════════════
   MULTI-PAGE COMPONENTS & EFFECTS  (Unterseiten)
   ════════════════════════════════════════════════════════════ */

/* ── Scroll progress bar ─────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), oklch(80% 0.17 70));
  z-index: 1200; transition: width 0.1s linear; pointer-events: none;
}

/* ── Nav dropdown (Leistungen) ───────────────────────────── */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a::after {
  content: ''; display: inline-block; width: 6px; height: 6px; margin-left: 6px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 0.25s ease; opacity: 0.7;
}
.nav-has-dropdown:hover > a::after { transform: rotate(225deg) translateY(0); }
.nav-dropdown {
  position: absolute; top: 100%; left: 0; transform: translateY(10px);
  min-width: 250px; padding: 10px; display: flex; flex-direction: column; gap: 2px;
  background: color-mix(in oklch, var(--bg-dark) 88%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-dark); border-radius: var(--radius-md);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden; transition: opacity 0.22s ease, transform 0.22s ease; z-index: 60;
}
/* Unsichtbare Hover-Brücke: überdeckt die Lücke zwischen Menüpunkt und Panel,
   damit der Cursor sie überqueren kann, ohne dass :hover verloren geht. */
.nav-dropdown::before {
  content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 18px;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(8px);
}
.nav-dropdown a {
  padding: 11px 14px; border-radius: var(--radius-sm); color: var(--text-light);
  font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 10px;
  position: relative; transition: background 0.2s ease, padding 0.2s ease;
}
.nav-dropdown a::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease; transform: scale(0.4);
}
.nav-dropdown a:hover { background: color-mix(in oklch, var(--accent) 16%, transparent); padding-left: 18px; }
.nav-dropdown a:hover::before { opacity: 1; transform: scale(1); }

/* Helle Dropdown-Variante, wenn die Nav weiß ist (gescrollt) */
nav.scrolled .nav-dropdown {
  background: rgba(255, 255, 255, 0.97);
  border-color: oklch(86% 0.005 258);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.18);
}
nav.scrolled .nav-dropdown a { color: var(--text-dark); }
nav.scrolled .nav-dropdown a:hover { background: color-mix(in oklch, var(--accent) 14%, transparent); color: var(--accent); }

/* ── Page hero (Unterseiten-Kopf) ────────────────────────── */
/* Compact Page-Hero: für Kontakt-Seite (Formular muss schnell sichtbar sein) */
.page-hero--compact { padding: clamp(110px, 16vh, 160px) 0 clamp(36px, 5vw, 60px) !important; }
.page-hero--compact h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 8px; }
.page-hero--compact .page-hero-sub { font-size: 1rem; margin-top: 8px; }

/* Kontakt: Formular dominiert, Info-Section dezent */
.kontakt-form-section { padding: clamp(40px, 6vw, 64px) 0; }
.form-card--prominent {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -28px oklch(40% 0.04 258 / 0.18);
}
.form-alt-cta {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.form-alt-cta a { color: var(--text-dark); text-decoration: none; }
.form-alt-cta a strong { color: var(--accent); }
.kontakt-info-section .container { max-width: 980px; }
.info-list--horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
@media (max-width: 600px) {
  .info-list--horizontal { grid-template-columns: 1fr; }
}

.page-hero {
  position: relative; padding: clamp(140px, 20vh, 220px) 0 clamp(64px, 9vw, 110px);
  color: var(--text-light); overflow: hidden; isolation: isolate;
  /* Liquid-Paint-Bild als abgedunkelter Hintergrund. Fehlt die Datei,
     bleibt es schlicht beim dunklen Grundton (kein kaputtes Bild). */
  background:
    linear-gradient(color-mix(in oklch, var(--bg-dark) 82%, transparent), color-mix(in oklch, var(--bg-dark) 92%, transparent)),
    url('../bg/hero-paint.webp') center/cover no-repeat,
    var(--bg-dark);
}
.page-hero::before { /* aurora */
  content: ''; position: absolute; inset: -30%; z-index: -2;
  background:
    radial-gradient(40% 50% at 18% 22%, color-mix(in oklch, var(--accent) 38%, transparent), transparent 70%),
    radial-gradient(45% 55% at 82% 18%, oklch(55% 0.16 250 / 0.35), transparent 70%),
    radial-gradient(50% 60% at 60% 90%, oklch(60% 0.15 160 / 0.25), transparent 70%);
  filter: blur(20px); animation: auroraDrift 18s ease-in-out infinite alternate;
}
.page-hero::after { /* fine grid */
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-image: linear-gradient(color-mix(in oklch, var(--text-light) 6%, transparent) 1px, transparent 1px),
                    linear-gradient(90deg, color-mix(in oklch, var(--text-light) 6%, transparent) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 75%);
}
@keyframes auroraDrift {
  0%   { transform: translate3d(-4%, -2%, 0) scale(1); }
  100% { transform: translate3d(5%, 3%, 0) scale(1.12); }
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 800; letter-spacing: -0.02em; line-height: 1.02;
  font-size: clamp(2.4rem, 6.4vw, 4.6rem); margin: 14px 0 18px; max-width: 16ch;
}
.page-hero .page-hero-sub { max-width: 60ch; color: oklch(85% 0.01 80); font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.6; }
.page-hero .hero-actions { margin-top: 30px; }

/* gradient shimmer accent word */
.shimmer {
  background: linear-gradient(100deg, var(--accent) 20%, oklch(88% 0.14 75) 40%, var(--accent) 60%);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; animation: shimmerMove 4.5s linear infinite;
}
@keyframes shimmerMove { to { background-position: 200% center; } }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.82rem; color: oklch(75% 0.01 80); }
.breadcrumb a { color: oklch(80% 0.02 80); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.5; }
/* Visuelle Breadcrumb im Page-Hero entfernt — die Nav reicht aus.
   SEO-Breadcrumb bleibt via JSON-LD BreadcrumbList erhalten. */
.page-hero .breadcrumb,
.article-body .breadcrumb { display: none !important; }

/* ── Content sections ────────────────────────────────────── */
.section { padding: clamp(60px, 9vw, 120px) 0; position: relative; isolation: isolate; }
/* Warme Farb-Washes statt Reinweiß – nimmt dem Layout das „leere Weiß". */
.section--light {
  color: var(--text-dark);
  background:
    radial-gradient(120% 85% at 88% -12%, color-mix(in oklch, var(--accent) 8%, transparent), transparent 58%),
    radial-gradient(95% 75% at -8% 112%, oklch(62% 0.09 205 / 0.06), transparent 60%),
    var(--bg-light);
}
.section--warm {
  color: var(--text-dark);
  /* Feine Pinsel-/Farbtextur unter einem warmen Schleier. Fehlt die Datei,
     bleibt der warme Farbverlauf wie bisher. */
  background:
    radial-gradient(115% 85% at 10% -12%, color-mix(in oklch, var(--accent) 11%, transparent), transparent 58%),
    radial-gradient(90% 80% at 100% 108%, oklch(60% 0.08 150 / 0.06), transparent 60%),
    linear-gradient(color-mix(in oklch, var(--bg-warm) 90%, transparent), color-mix(in oklch, var(--bg-warm) 90%, transparent)),
    url('../bg/paint-texture.webp') center/cover,
    var(--bg-warm);
}
.section--dark {
  color: var(--text-light);
  background:
    radial-gradient(80% 60% at 88% 6%, color-mix(in oklch, var(--accent) 14%, transparent), transparent 60%),
    radial-gradient(70% 60% at 6% 100%, oklch(55% 0.14 250 / 0.18), transparent 60%),
    var(--bg-dark);
}
/* Feines, dezentes Korn über allen Sektionen – bricht flache Flächen. */
.section::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section--dark .section-title { color: var(--text-light); }

/* ── Prose (Fließtext aus Originaltexten) ────────────────── */
.prose { max-width: 70ch; font-size: 1.04rem; line-height: 1.75; color: color-mix(in oklch, var(--text-dark) 86%, transparent); }
.section--dark .prose { color: oklch(84% 0.01 80); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-family: 'Fraunces', serif; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.15; margin-top: 1.8em; letter-spacing: -0.01em; }
.prose h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.4rem); margin-top: 1.5em; }
.prose a { color: var(--accent-dim); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.section--dark .prose a { color: var(--accent); }
.prose ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 30px; }
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: 0.42em; width: 16px; height: 16px;
  background: var(--accent); -webkit-mask: var(--check-mask) center/contain no-repeat; mask: var(--check-mask) center/contain no-repeat;
}
:root { --check-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E"); }

/* ── Feature grid ────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feature-card {
  position: relative; padding: 28px; border-radius: var(--radius-lg);
  background: color-mix(in oklch, var(--text-dark) 4%, var(--bg-light));
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.section--dark .feature-card { background: color-mix(in oklch, var(--text-light) 4%, transparent); border-color: var(--border-dark); }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.4); border-color: color-mix(in oklch, var(--accent) 50%, transparent); }
.feature-card .fc-icon {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 16px;
  background: color-mix(in oklch, var(--accent) 16%, transparent); color: var(--accent);
}
.feature-card .fc-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* spotlight follow-cursor highlight */
[data-spotlight] { position: relative; }
[data-spotlight]::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), color-mix(in oklch, var(--accent) 22%, transparent), transparent 60%);
  transition: opacity 0.3s ease;
}
[data-spotlight]:hover::after { opacity: 1; }

/* ── Image placeholders (mit Bildbeschreibung) ───────────── */
.img-ph {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 240px; padding: 20px; border-radius: var(--radius-lg);
  border: 1.5px dashed color-mix(in oklch, var(--accent) 55%, var(--border));
  background:
    repeating-linear-gradient(45deg, color-mix(in oklch, var(--accent) 7%, transparent) 0 12px, transparent 12px 24px),
    color-mix(in oklch, var(--text-dark) 4%, var(--bg-warm));
  color: var(--text-dark); overflow: hidden;
}
.section--dark .img-ph { color: var(--text-light); background:
    repeating-linear-gradient(45deg, color-mix(in oklch, var(--accent) 10%, transparent) 0 12px, transparent 12px 24px),
    color-mix(in oklch, var(--text-light) 4%, transparent); border-color: color-mix(in oklch, var(--accent) 50%, var(--border-dark)); }
.img-ph[data-ratio="16-9"] { aspect-ratio: 16/9; min-height: 0; }
.img-ph[data-ratio="4-3"]  { aspect-ratio: 4/3;  min-height: 0; }
.img-ph[data-ratio="1-1"]  { aspect-ratio: 1/1;  min-height: 0; }
.img-ph .img-ph-tag {
  position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--accent); color: #fff;
}
.img-ph .img-ph-tag svg { width: 14px; height: 14px; }
.img-ph .img-ph-desc {
  position: relative; font-size: 0.9rem; line-height: 1.5;
  background: color-mix(in oklch, var(--bg-light) 78%, transparent); backdrop-filter: blur(4px);
  padding: 12px 14px; border-radius: var(--radius-md);
}
.section--dark .img-ph .img-ph-desc { background: color-mix(in oklch, var(--bg-dark) 72%, transparent); }
.img-ph .img-ph-desc strong { display: block; margin-bottom: 3px; }

/* ── Cost / comparison table ─────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.cost-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 520px; background: var(--bg-light); }
.cost-table th, .cost-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.cost-table thead th { background: var(--bg-warm); font-family: 'Fraunces', serif; font-weight: 700; }
.cost-table tbody tr:hover { background: color-mix(in oklch, var(--accent) 6%, transparent); }
.cost-table .col-cc { color: var(--accent-dim); font-weight: 700; }
.cost-table caption { caption-side: bottom; padding: 12px; font-size: 0.78rem; color: var(--text-muted); text-align: left; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-light); overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq details[open] { border-color: color-mix(in oklch, var(--accent) 45%, var(--border)); box-shadow: 0 16px 40px -26px rgba(0,0,0,0.35); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 22px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.5rem; line-height: 1; color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 20px; color: var(--text-muted); line-height: 1.65; font-size: 0.96rem; }

/* ── Split layout ────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 860px) { .split, .split.reverse > :first-child { grid-template-columns: 1fr; order: 0; } }

/* ── KPI / stat row ──────────────────────────────────────── */
.kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.kpi { background: var(--bg-light); padding: 26px 22px; }
.section--dark .kpi { background: var(--bg-mid); }
.kpi .kpi-num { font-family: 'Fraunces', serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--accent); line-height: 1; }
.kpi .kpi-label { margin-top: 8px; font-size: 0.86rem; color: var(--text-muted); }
.section--dark .kpi .kpi-label { color: oklch(75% 0.01 80); }

/* ── Tag pills ───────────────────────────────────────────── */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 9px 16px; border-radius: 100px; font-size: 0.88rem; font-weight: 500;
  background: color-mix(in oklch, var(--accent) 12%, transparent); color: var(--accent-dim);
  border: 1px solid color-mix(in oklch, var(--accent) 30%, transparent);
  transition: transform 0.2s ease, background 0.2s ease;
}
.section--dark .tag { color: var(--accent); }
.tag:hover { transform: translateY(-2px); background: color-mix(in oklch, var(--accent) 20%, transparent); }

/* ── Contact info cards / form ───────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: grid; gap: 14px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: var(--radius-md); background: var(--bg-light); border: 1px solid var(--border); }
.info-item .ii-ic { width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center; border-radius: 10px; background: color-mix(in oklch, var(--accent) 14%, transparent); color: var(--accent); }
.info-item .ii-ic svg { width: 21px; height: 21px; }
.info-item .ii-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.info-item .ii-val { font-weight: 600; font-size: 1.02rem; color: var(--text-dark); }
.info-item a.ii-val { color: var(--text-dark); }
.info-item a.ii-val:hover { color: var(--accent-dim); }

.map-embed {
  position: relative; margin-top: 22px; aspect-ratio: 16/10; border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--border); box-shadow: 0 20px 50px -30px rgba(0,0,0,0.35);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.92); }
.map-embed .map-link {
  position: absolute; bottom: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  background: var(--bg-light); color: var(--text-dark); text-decoration: none;
  box-shadow: 0 8px 22px -10px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.map-embed .map-link:hover { transform: translateY(-2px); background: var(--accent); color: #fff; }
.map-embed .map-link svg { transition: transform 0.2s ease; }
.map-embed .map-link:hover svg { transform: translateX(3px); }

.engagement-card {
  position: relative; padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg,
    color-mix(in oklch, var(--accent) 14%, var(--bg-light)) 0%,
    color-mix(in oklch, var(--accent) 4%, var(--bg-light)) 60%,
    var(--bg-light) 100%);
  border: 1px solid color-mix(in oklch, var(--accent) 25%, var(--border));
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.25);
}
.engagement-card .engagement-ic {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 14px; margin-bottom: 22px;
  background: var(--accent); color: #fff;
}
.engagement-card .engagement-ic svg { width: 28px; height: 28px; }
.engagement-card .engagement-eyebrow {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); font-weight: 700; margin-bottom: 6px;
}
.engagement-card .engagement-amount {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1; letter-spacing: -0.02em;
  color: var(--text-dark); margin-bottom: 8px;
}
.engagement-card .engagement-recipient {
  font-size: 1rem; line-height: 1.55; color: var(--text-dark); margin-bottom: 22px;
}
.engagement-card .engagement-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 10px;
  border-top: 1px solid color-mix(in oklch, var(--accent) 18%, var(--border));
  padding-top: 22px;
}
.engagement-card .engagement-list li {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.95rem; color: var(--text-dark);
}
.engagement-card .engagement-list svg {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--accent);
}

.form-card { padding: clamp(22px, 3vw, 34px); border-radius: var(--radius-lg); background: var(--bg-light); border: 1px solid var(--border); box-shadow: 0 30px 70px -40px rgba(0,0,0,0.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 0.84rem; font-weight: 600; }
.field label .opt { color: var(--text-muted); font-weight: 400; }
.field label .req { color: var(--accent); font-weight: 700; margin-left: 2px; }
.field input, .field textarea {
  font: inherit; font-size: 0.95rem; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg-warm); color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus-visible, .field textarea:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 22%, transparent); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ── Magnetic button wrapper ─────────────────────────────── */
/* will-change wird in main.js erst on pointerenter gesetzt, nicht
   permanent — sonst forciert es dauerhaft eine Compositor-Layer. */
[data-magnetic] { transition: transform 0.2s cubic-bezier(0.16,1,0.3,1); }

/* ── Page hero variants per service (accent hue shift) ───── */
.page-hero[data-theme="schimmel"]::before { background:
  radial-gradient(42% 52% at 20% 24%, oklch(60% 0.13 200 / 0.4), transparent 70%),
  radial-gradient(46% 56% at 80% 16%, oklch(58% 0.12 160 / 0.34), transparent 70%),
  radial-gradient(52% 60% at 60% 92%, color-mix(in oklch, var(--accent) 26%, transparent), transparent 70%); }
.page-hero[data-theme="specht"]::before { background:
  radial-gradient(42% 52% at 18% 22%, oklch(62% 0.14 130 / 0.4), transparent 70%),
  radial-gradient(46% 56% at 82% 18%, color-mix(in oklch, var(--accent) 34%, transparent), transparent 70%),
  radial-gradient(52% 60% at 58% 90%, oklch(55% 0.1 90 / 0.3), transparent 70%); }

/* Kontakt-Page: ruhigere Hero-Atmosphäre – kein Liquid-Paint-Bild,
   Aurora deutlich abgeschwächt, Grid weg. Holm-Feedback 18.06.2026:
   die Hintergrundgrafik wirkte hinter dem Logo zu unruhig. */
.page-hero[data-theme="contact"] {
  background:
    linear-gradient(color-mix(in oklch, var(--bg-dark) 96%, transparent), color-mix(in oklch, var(--bg-dark) 98%, transparent)),
    var(--bg-dark);
}
.page-hero[data-theme="contact"]::before {
  opacity: 0.4;
  filter: blur(40px);
  animation: none;
}
.page-hero[data-theme="contact"]::after { display: none; }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .page-hero::before { animation: none; }
  .shimmer { animation: none; }
}

/* ════════════════════════════════════════════════════════════
   SUBPAGE ENRICHMENT — Komponenten, um Blocktext aufzubrechen
   ════════════════════════════════════════════════════════════ */

/* Nav: aktuelle Seite markieren */
.nav-links a.is-active { color: var(--accent); }
.mobile-menu-nav a.is-active { color: var(--accent); }

/* Lead-Absatz (größerer Intro-Text) */
.lead { font-size: clamp(1.1rem, 2.1vw, 1.4rem); line-height: 1.55; font-weight: 400;
  color: color-mix(in oklch, var(--text-dark) 82%, transparent); max-width: 22ch; }
.section--dark .lead { color: oklch(89% 0.01 80); }

/* Hero KPI-Badges */
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-badge { display: flex; flex-direction: column; gap: 3px; padding: 13px 20px 13px 17px;
  border-radius: 14px; border: 1px solid color-mix(in oklch, var(--text-light) 16%, transparent);
  background: color-mix(in oklch, var(--text-light) 5%, transparent); backdrop-filter: blur(6px);
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .35s; }
.hero-badge:hover { transform: translateY(-4px); border-color: color-mix(in oklch, var(--accent) 55%, transparent); }
.hero-badge b { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.35rem; color: var(--accent); line-height: 1; }
.hero-badge span { font-size: 0.76rem; letter-spacing: 0.03em; color: oklch(82% 0.01 80); }

/* Check-Grid — ersetzt lange Bullet-Listen (Text bleibt 1:1) */
.check-grid { list-style: none; padding: 0; margin: 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px 26px; }
.check-grid li { position: relative; padding: 15px 18px 15px 48px; border-radius: 12px;
  background: color-mix(in oklch, var(--text-dark) 3%, var(--bg-light)); border: 1px solid var(--border);
  font-size: 0.97rem; line-height: 1.5; transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s; }
.section--dark .check-grid li { background: color-mix(in oklch, var(--text-light) 4%, transparent); border-color: var(--border-dark); color: oklch(88% 0.01 80); }
.check-grid li::before { content:''; position:absolute; left:17px; top:50%; transform: translateY(-50%);
  width: 19px; height: 19px; background: var(--accent);
  -webkit-mask: var(--check-mask) center/contain no-repeat; mask: var(--check-mask) center/contain no-repeat; }
.check-grid li:hover { transform: translateY(-3px); border-color: color-mix(in oklch, var(--accent) 50%, transparent); box-shadow: 0 16px 34px -22px rgba(0,0,0,0.35); }

/* Pull-Quote — hebt einen Originalsatz hervor */
.pull-quote { position: relative; max-width: 24ch; margin: 0; padding-left: 30px;
  border-left: 3px solid var(--accent);
  font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1.28; letter-spacing: -0.01em; }
.pull-quote cite { display: block; margin-top: 18px; font-family: 'Inter', sans-serif; font-style: normal;
  font-weight: 500; font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); }

/* Deko-Wasserzeichen hinter Überschrift */
.has-watermark { position: relative; overflow: clip; }
.section-watermark { position: absolute; top: -0.32em; right: -0.04em; z-index: 0; pointer-events: none;
  font-family: 'Fraunces', serif; font-weight: 800; font-size: clamp(7rem, 24vw, 20rem); line-height: 0.8;
  color: color-mix(in oklch, var(--accent) 9%, transparent); user-select: none; }
.section--dark .section-watermark { color: color-mix(in oklch, var(--text-light) 5%, transparent); }
.has-watermark > .container { position: relative; z-index: 1; }

/* Reveal-Stagger-Hilfsklassen */
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* Sanfte Parallax */
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .check-grid li:hover, .hero-badge:hover { transform: none; }
  [data-parallax] { transform: none !important; }
}

/* ════════════════════════════════════════════════════════════
   FRAUNCES DISPLAY-FEINSCHLIFF
   Künstlerische Serif statt technischer Syne. Weicher (optical
   sizing), weniger fett (Fraunces ist nur bis 600 geladen → 700/800
   klemmen automatisch) und nicht „langgezogen" (Laufweite entspannt).
   ════════════════════════════════════════════════════════════ */
.hero-headline, .hero-headline .word, .page-hero h1, .section-title,
.prose h2, .prose h3, .feature-card h3, .pull-quote, .contact-cta h2,
.nav-logo, .kpi .kpi-num, .hero-badge b, .section-watermark,
.cost-table thead th, .faq summary {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
}
.hero-headline, .hero-headline .word { font-weight: 520; letter-spacing: -0.005em; }
.page-hero h1 { font-weight: 500; letter-spacing: -0.005em; line-height: 1.04; }
.section-title { font-weight: 540; letter-spacing: 0; }
.prose h2 { font-weight: 540; letter-spacing: 0; }
.prose h3 { font-weight: 560; }
.feature-card h3 { font-weight: 560; }
.contact-cta h2 { font-weight: 520; letter-spacing: -0.005em; }
.pull-quote { font-weight: 500; }
.nav-logo { font-weight: 600; letter-spacing: 0; }
.kpi .kpi-num, .hero-badge b { font-weight: 580; }
.section-watermark { font-weight: 560; }

/* ════════════════════════════════════════════════════════════
   SERVICE-SPEZIFISCHE BILDER
   ════════════════════════════════════════════════════════════ */

/* Pro Leistung passender Hero-Hintergrund (echte Bilder, abgedunkelt).
   Ohne data-theme bleibt der abstrakte Liquid-Paint-Hero (Default). */
.page-hero[data-theme="graffiti"] {
  background:
    linear-gradient(color-mix(in oklch, var(--bg-dark) 70%, transparent), color-mix(in oklch, var(--bg-dark) 90%, transparent)),
    url('../heroes/graffiti-damaged.jpg') center/cover no-repeat, var(--bg-dark);
}
.page-hero[data-theme="schimmel"] {
  background:
    linear-gradient(color-mix(in oklch, var(--bg-dark) 72%, transparent), color-mix(in oklch, var(--bg-dark) 91%, transparent)),
    url('../heroes/schimmel-damaged.jpg') center/cover no-repeat, var(--bg-dark);
}
.page-hero[data-theme="specht"] {
  background:
    linear-gradient(color-mix(in oklch, var(--bg-dark) 70%, transparent), color-mix(in oklch, var(--bg-dark) 90%, transparent)),
    url('../heroes/spechtschaden.jpg') center/cover no-repeat, var(--bg-dark);
}
.page-hero[data-theme="about"] {
  background:
    linear-gradient(color-mix(in oklch, var(--bg-dark) 72%, transparent), color-mix(in oklch, var(--bg-dark) 90%, transparent)),
    url('../bg/facade.webp') center/cover no-repeat, var(--bg-dark);
}

/* ── Vorher/Nachher-Vergleich (entwickelt die Idee der Originalseite) ── */
.ba-compare {
  position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border); user-select: none; touch-action: none;
  --pos: 50%; box-shadow: 0 30px 70px -40px rgba(0,0,0,0.4); cursor: ew-resize;
}
.ba-compare img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  -webkit-user-drag: none; pointer-events: none;
}
.ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px;
  background: var(--accent); transform: translateX(-50%);
  box-shadow: 0 0 18px var(--accent); pointer-events: none;
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; box-shadow: 0 6px 22px rgba(0,0,0,0.35);
}
.ba-handle span svg { width: 22px; height: 22px; }
.ba-label {
  position: absolute; bottom: 14px; padding: 5px 13px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); pointer-events: none; z-index: 2;
}
.ba-label-before { left: 14px; background: oklch(18% 0.02 258 / 0.62); color: #fff; }
.ba-label-after  { right: 14px; background: var(--accent); color: #fff; }
.ba-caption { margin-top: 12px; font-size: 0.85rem; color: var(--text-muted); }

/* ── Echtes Einzelbild im Rahmen (ersetzt img-ph) ─────────── */
.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 4/3; margin: 0;
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.4);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame figcaption {
  position: absolute; left: 14px; bottom: 14px; padding: 6px 12px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em; color: #fff;
  background: oklch(18% 0.02 258 / 0.6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

/* ── Bild-Slot in Leistungs-Karten (Foto optional, Fallback = Verlauf) ── */
.fc-media {
  position: relative; aspect-ratio: 16/10; border-radius: 12px; margin-bottom: 18px; overflow: hidden;
  background-image: var(--fc-img, none),
    linear-gradient(135deg, color-mix(in oklch, var(--accent) 22%, var(--bg-light)), color-mix(in oklch, var(--accent) 6%, var(--bg-light)));
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.section--dark .fc-media {
  background-image: var(--fc-img, none),
    linear-gradient(135deg, color-mix(in oklch, var(--accent) 32%, transparent), color-mix(in oklch, var(--accent) 10%, transparent));
}
.fc-media .fc-icon {
  position: absolute; top: 10px; left: 10px; margin: 0; width: 38px; height: 38px;
  background: var(--accent); color: #fff;
}
.fc-media .fc-icon svg { width: 20px; height: 20px; }

/* ── Realfälle-Galerie (Vorher/Nachher Composites von Holm Draber) ── */
.realfaelle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 420px), 1fr));
  gap: 22px;
  margin-top: 32px;
}
.rf-tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: oklch(14% 0.02 258);
  aspect-ratio: 16 / 10;
  box-shadow: 0 26px 60px -42px rgba(0,0,0,0.45);
  transition: transform 0.45s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.45s cubic-bezier(0.22,0.61,0.36,1);
}
/* Mobile: 2-Spalten-Grid mit kleinen Tiles → man sieht mehr Referenzen
   gleichzeitig. Auf ganz schmalen Screens (<460) wird's 1-Spalte mit
   höherem Aspect-Ratio damit Vorher/Nachher gut erkennbar bleibt. */
@media (max-width: 720px) {
  .realfaelle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
  }
  .rf-tile { aspect-ratio: 1 / 1; }
  .rf-tile figcaption { font-size: 0.62rem; padding: 4px 8px; left: 8px; bottom: 8px; }
}
@media (max-width: 460px) {
  .realfaelle-grid { grid-template-columns: 1fr; gap: 14px; }
  .rf-tile { aspect-ratio: 16 / 10; }
}
.rf-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 38px 70px -42px rgba(0,0,0,0.55);
}
.rf-tile img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  background: oklch(14% 0.02 258);
}
.rf-tile figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: oklch(18% 0.02 258 / 0.62);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 100px;
  z-index: 2;
}
.rf-tile::before,
.rf-tile::after {
  position: absolute; top: 12px;
  padding: 4px 11px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 100px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  z-index: 2;
}
.rf-tile::before {
  content: "Vorher"; left: 12px;
  background: oklch(18% 0.02 258 / 0.62);
}
.rf-tile::after {
  content: "Nachher"; right: 12px;
  background: color-mix(in oklch, var(--accent) 90%, transparent);
}
@media (max-width: 600px) {
  .realfaelle-grid { grid-template-columns: 1fr; gap: 14px; }
  .rf-tile { aspect-ratio: 4/3; }
}

/* ── Single Short-Card (Subpage-Einbindung) ─────────────────── */
.short-card-frame {
  max-width: 280px;
  margin: 0 auto;
}
.short-card-frame .short-card {
  width: 100%;
}
.short-card-frame .short-caption {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── 3-Schritt-Prozess (Graffiti „So funktioniert es") ──────── */
.gflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
  counter-reset: pstep;
  list-style: none;
  padding: 0;
}
.gflow-step {
  position: relative;
  background: color-mix(in oklch, var(--bg-light) 96%, var(--accent));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 26px 28px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.45s cubic-bezier(0.22,0.61,0.36,1);
}
.gflow-step::before {
  counter-increment: pstep;
  content: "0" counter(pstep);
  position: absolute;
  top: -14px; right: 20px;
  font-family: 'Fraunces', serif;
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 1;
  color: color-mix(in oklch, var(--accent) 22%, transparent);
  letter-spacing: -0.04em;
  pointer-events: none;
}
.gflow-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px -42px color-mix(in oklch, var(--accent) 55%, transparent);
}
.gflow-step .ps-ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 10px 26px -14px color-mix(in oklch, var(--accent) 80%, transparent);
}
.gflow-step .ps-ic svg { width: 24px; height: 24px; }
.gflow-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 540;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.gflow-step p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.gflow-step + .gflow-step::after {
  content: "→";
  position: absolute;
  left: -24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: color-mix(in oklch, var(--accent) 70%, transparent);
  font-weight: 600;
  pointer-events: none;
}
.methods-block {
  margin-top: 56px;
  padding: 38px 38px 34px;
  border-radius: var(--radius-lg);
  background: color-mix(in oklch, var(--bg-light) 90%, var(--accent));
  border: 1px solid var(--border);
}
.methods-head { margin-bottom: 26px; }
.methods-head h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 540;
  letter-spacing: -0.005em;
  margin: 6px 0 0;
  color: var(--text-dark);
}
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
  gap: 14px;
}
.method-card {
  display: flex; gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: color-mix(in oklch, var(--bg-light) 96%, transparent);
  border: 1px solid color-mix(in oklch, var(--accent) 14%, transparent);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.method-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklch, var(--accent) 55%, transparent);
  box-shadow: 0 20px 50px -36px color-mix(in oklch, var(--accent) 80%, transparent);
}
.method-card .m-ic {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: color-mix(in oklch, var(--accent) 16%, var(--bg-light));
  color: var(--accent);
  transition: background 0.3s ease, color 0.3s ease;
}
.method-card:hover .m-ic {
  background: var(--accent);
  color: #fff;
}
.method-card .m-ic svg { width: 20px; height: 20px; }
.method-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.method-card p {
  font-size: 0.83rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 600px) {
  .methods-block { padding: 26px 22px; }
  .methods-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .gflow-steps { grid-template-columns: 1fr; gap: 18px; }
  .gflow-step + .gflow-step::after {
    content: "↓";
    left: 50%; top: -22px;
    transform: translateX(-50%);
  }
}

/* ── Schimmel-Ratgeber: Filter-Pills + Karten-Grid ──────────── */
.guide-filter {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 32px 0 26px;
}
.guide-pill {
  appearance: none;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid color-mix(in oklch, var(--text-light) 18%, transparent);
  background: color-mix(in oklch, var(--text-light) 6%, transparent);
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.guide-pill:hover { background: color-mix(in oklch, var(--accent) 22%, transparent); border-color: var(--accent); }
.guide-pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-dark);
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 16px;
}
.guide-tile {
  position: relative;
  display: flex; flex-direction: column;
  padding: 22px 22px 54px;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklch, var(--text-light) 12%, transparent);
  background: color-mix(in oklch, var(--text-light) 4%, transparent);
  color: var(--text-light);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22,0.61,0.36,1),
              border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.4s ease;
}
.guide-tile::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, color-mix(in oklch, var(--accent) 18%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.guide-tile:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklch, var(--accent) 55%, transparent);
  box-shadow: 0 30px 60px -40px color-mix(in oklch, var(--accent) 75%, transparent);
}
.guide-tile:hover::before { opacity: 1; }
.guide-tile:hover .guide-arrow { transform: translateX(4px); color: var(--accent); }
.guide-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.guide-tile h3 {
  font-family: 'Fraunces', serif;
  font-weight: 540;
  font-size: 1.18rem;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  color: var(--text-light);
  line-height: 1.25;
}
.guide-tile p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: oklch(72% 0.01 258);
  margin: 0;
}
.guide-arrow {
  position: absolute;
  left: 22px; bottom: 18px;
  font-size: 1.15rem;
  color: oklch(72% 0.01 258);
  transition: transform 0.3s ease, color 0.3s ease;
}
.guide-tile.is-hidden { display: none; }

/* ════════════════════════════════════════════════════════════
   SERVICE-SUBPAGES + BLOG (build_subpages.py)
   Lange Original-Inhalte, lesbar gesetzt + Card-Komponenten
   ════════════════════════════════════════════════════════════ */

.article-body {
  padding: clamp(48px, 8vw, 96px) 0 clamp(48px, 8vw, 80px);
  background: var(--bg-light);
}
.article-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 40px);
  color: var(--text-dark);
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.75;
}
/* Mobile: 28px feste Polsterung mit Belt+Suspenders (section + container) */
@media (max-width: 600px) {
  /* Section-Padding für article-body explizit setzen — überschreibt .article-body { padding:0 } */
  section.article-body { padding-left: 0 !important; padding-right: 0 !important; }
  .article-body > .container.article-container {
    padding-left: 28px !important;
    padding-right: 28px !important;
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .article-container h2 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    margin: 1.8em 0 0.5em;
  }
  .article-container h3 {
    font-size: clamp(1.15rem, 5vw, 1.4rem);
    margin: 1.5em 0 0.4em;
  }
  .article-container p { margin: 0 0 1em; }
  .article-container img { margin: 1.2em 0; border-radius: 12px; }
  /* Page-Hero auf Subpages: gleiche 28px Polsterung mit !important */
  section.page-hero > .container,
  section.page-hero--compact > .container {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .page-hero h1 { font-size: clamp(1.6rem, 8vw, 2.4rem); word-break: break-word; }
  .page-hero .page-hero-sub { font-size: 0.95rem; }
  /* Generisch: section > .container immer mindestens 24px padding */
  main section > .container { padding-left: max(24px, var(--container-pad-x, 0px)); padding-right: max(24px, var(--container-pad-x, 0px)); }
}
.article-container h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 2.4em 0 0.6em;
  color: var(--text-dark);
}
.article-container h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 1.8em 0 0.5em;
  color: var(--text-dark);
}
.article-container h4 {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 600;
  margin: 1.5em 0 0.4em;
  color: var(--text-dark);
}
.article-container p { margin: 0 0 1.1em; }
.article-container ul,
.article-container ol { margin: 0 0 1.4em 1.4em; padding: 0; }
.article-container li { margin: 0 0 0.4em; }
.article-container a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.article-container a:hover { color: var(--accent-dim); }
.article-container img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(0,0,0,.04), rgba(0,0,0,.08));
  border-radius: var(--radius-md);
  margin: 1.6em 0;
  display: block;
  content-visibility: auto;
  contain-intrinsic-size: 800px 450px;
}
.article-container p > img:only-child {
  margin-inline: auto;
}
.article-container .yt-embed,
.article-container iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}
.article-hublink {
  margin: 3em 0 0;
  padding: 0;
  border: 0;
}
.article-hublink-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.article-hublink-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid color-mix(in oklab, var(--text-dark) 12%, transparent);
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  color: var(--text-dark);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.article-hublink-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 5%, var(--bg-warm));
}
.article-hublink-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.article-hublink-cta {
  font-size: 0.95rem;
  color: var(--accent);
  white-space: nowrap;
  font-weight: 500;
}
@media (max-width: 540px) {
  .article-hublink-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
.article-container blockquote {
  margin: 1.6em 0;
  padding: 16px 24px;
  border-left: 4px solid var(--accent);
  background: var(--bg-warm);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}
.article-container hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}

/* Videos im Artikel */
.article-videos {
  margin: 3em 0 1em;
}
.article-videos h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 600;
  margin-bottom: 1em;
}

/* YouTube-Embed (Click-to-Load) */
.yt-embed {
  position: relative;
  aspect-ratio: 16/9;
  margin: 1.4em 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: 0 18px 48px -32px rgba(0,0,0,0.6);
}
.yt-embed-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}
.yt-embed-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.yt-embed-play:hover img { transform: scale(1.04); }
.yt-embed-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.yt-embed-play:hover .yt-embed-icon {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}
.yt-embed-icon svg { width: 32px; height: 32px; margin-left: 4px; }
.yt-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Related-Section (am Ende einer Subpage / Blog-Post) */
.related-section {
  padding: clamp(48px, 8vw, 80px) 0;
  background: var(--bg-mid);
  color: var(--text-light);
}
.related-section .section-title { color: var(--text-light); margin-bottom: 1.5em; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.related-card {
  display: block;
  padding: clamp(20px, 3vw, 28px);
  background: color-mix(in oklch, var(--text-light) 5%, transparent);
  border: 1px solid color-mix(in oklch, var(--text-light) 12%, transparent);
  border-radius: var(--radius-md);
  color: var(--text-light);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, background 0.3s;
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklch, var(--accent) 50%, transparent);
  background: color-mix(in oklch, var(--accent) 8%, transparent);
}
.related-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 14px;
  color: var(--text-light);
}
.related-cta {
  display: inline-block;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Blog-Index */
.blog-index-section {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--bg-light);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 40px);
}
.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  text-decoration: none;
  min-height: 180px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(232, 117, 58, 0.15);
  transition: border-color 0.3s, box-shadow 0.3s;
}
/* Inner content darf Taps nicht abfangen — bubble immer zum <a> */
.blog-card > * { pointer-events: none; }
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px -28px rgba(236, 118, 53, 0.4);
}
.blog-card h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 18px;
}
.blog-card-meta {
  font-size: 0.84rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 600px) {
  .article-container { font-size: 0.98rem; }
  .related-grid, .blog-grid { grid-template-columns: 1fr; }
}

/* Hub-Subpages Grid (von tools/inject_hub_subpages.py) */
.hub-subpage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.hub-subpage-card {
  display: block;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
}
.hub-subpage-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 14px 32px -22px rgba(236, 118, 53, 0.4);
}
.hub-subpage-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.hub-subpage-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 600px) {
  .hub-subpage-grid { grid-template-columns: 1fr; }
}

/* Blog-Filter-Bar (Client-seitiges Filtern) */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(20px, 3vw, 32px);
  padding: 0 clamp(20px, 4vw, 40px);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.blog-filter-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-dark);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.blog-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.blog-filter-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-dark);
}

/* Blog-Card Video-Badge */
.blog-card { position: relative; }
.blog-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: color-mix(in oklch, var(--accent) 22%, transparent);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* TÜV-Trust-Bar (Schimmelseite) */
.tuv-trust { padding-block: clamp(40px, 5vw, 64px); }
.tuv-trust-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(20px, 3vw, 32px);
  background: color-mix(in oklch, var(--accent) 6%, var(--bg));
  border: 1px solid color-mix(in oklch, var(--accent) 14%, transparent);
  border-radius: 20px;
}
.tuv-trust-logo {
  display: block;
  text-decoration: none;
  transition: transform 0.4s ease;
}
.tuv-trust-logo:hover { transform: translateY(-2px); }
.tuv-trust-logo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}
.tuv-trust-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
.tuv-trust-title {
  font-family: var(--font-display, inherit);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.25;
}
.tuv-trust-meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}
.tuv-trust-meta a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in oklch, var(--accent) 40%, transparent);
}
.tuv-trust-meta a:hover { border-bottom-color: var(--accent); }
@media (max-width: 640px) {
  .tuv-trust-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tuv-trust-logo { max-width: 280px; margin: 0 auto; }
}

/* Affiliate-Link-Vermerk */
.affiliate-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-left: 4px;
}

/* Video-Section (YouTube-Embeds) */
.video-section {
  padding-block: clamp(40px, 6vw, 80px);
  background: color-mix(in oklch, var(--bg) 92%, var(--accent) 8%);
}
.article-video {
  margin-block: clamp(36px, 5vw, 56px);
  padding: clamp(20px, 3vw, 28px);
  border-radius: 18px;
  background: color-mix(in oklch, var(--bg-light, #f6f7f8) 92%, var(--accent) 8%);
  border: 1px solid color-mix(in oklch, var(--accent) 18%, transparent);
}
.article-video-eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-video .video-grid {
  margin-top: 16px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(24px, 3vw, 40px);
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 24px color-mix(in oklch, black 18%, transparent);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  padding-inline: 4px;
}

/* FAQ Accordion (Graffiti FAQ) */
.faq-item {
  border-bottom: 1px solid color-mix(in oklch, var(--text-muted) 20%, transparent);
  padding-block: 16px;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display, inherit);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 32px;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item p {
  margin: 14px 0 0;
  line-height: 1.6;
  color: var(--text-muted);
}
.faq-item p a { color: var(--accent); }

/* Article-Figure (Bilder im article-body mit Caption) */
.article-figure {
  margin: 24px 0 32px;
}
.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 22px color-mix(in oklch, black 18%, transparent);
}
.article-figure figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* Bild-Format-Fix für article-body Bilder (Holm-Beschwerde "Format passt nicht") */
.article-container img,
.article-container picture img {
  max-width: 100%;
  height: auto !important;
  border-radius: 10px;
  margin: 16px 0;
}
.article-container p > img {
  display: block;
  margin: 20px auto;
}

/* Kontaktformular-Status (Erfolg/Fehler + Loading-Spinner) */
.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 8px 0 18px;
  line-height: 1.5;
}
.form-consent input { margin-top: 4px; flex-shrink: 0; }
.form-consent a { color: var(--accent); text-decoration: underline; }

#kontaktSubmit .btn-spinner { display: none; animation: cc-spin 1s linear infinite; }
#kontaktSubmit.is-loading .btn-arrow { display: none; }
#kontaktSubmit.is-loading .btn-spinner { display: inline-block; }
#kontaktSubmit:disabled { opacity: 0.8; cursor: wait; }
@keyframes cc-spin { to { transform: rotate(360deg); } }

.form-status {
  margin-top: 16px;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.form-status.is-success {
  padding: 16px 20px;
  border-radius: 10px;
  background: color-mix(in oklch, oklch(0.62 0.13 150) 18%, transparent);
  color: oklch(0.42 0.12 150);
  border: 1px solid color-mix(in oklch, oklch(0.62 0.13 150) 30%, transparent);
}
.form-status.is-error {
  padding: 16px 20px;
  border-radius: 10px;
  background: color-mix(in oklch, oklch(0.62 0.18 28) 14%, transparent);
  color: oklch(0.46 0.16 28);
  border: 1px solid color-mix(in oklch, oklch(0.62 0.18 28) 30%, transparent);
}
