﻿/* ============================================================
       FARBEN & GRUNDEINSTELLUNGEN â€” hier anpassen
       ============================================================ */
    :root {
      --bg: transparent;
      --surface: rgba(255, 255, 255, 0.55);
      --primary: #1C2E3E;
      --accent: #EF7828;
      --accent-hover: #D96618;
      --accent-soft: rgba(239, 120, 40, 0.22);
      --accent-glow: rgba(239, 120, 40, 0.38);
      --brand-black: #000000;
      --banner-native-width: 1014px;
      --text: #1C2E3E;
      --text-sub: #4A6070;
      --border: rgba(255, 255, 255, 0.45);
      --card-bg: rgba(255, 255, 255, 0.60);
      --navbar-bg: rgba(255, 255, 255, 0.70);
      --hero-text: #1C2E3E;
      --hero-text-sub: #4A6070;
      --cream: var(--bg);
      --slate: var(--text);
      --dust-blue: var(--text-sub);
      --terracotta: var(--accent);
      --terracotta-dark: var(--accent-hover);
      --light-gray: var(--border);
      --white: var(--card-bg);
      --text-muted: var(--text-sub);
      --shadow-sm: 0 4px 20px rgba(27, 58, 92, 0.12);
      --shadow-md: 0 12px 40px rgba(27, 58, 92, 0.16);
      --radius: 14px;
      --nav-height: 76px;
      --hero-card-bg: rgba(255, 255, 255, 0.52);
      --hero-card-border: rgba(255, 255, 255, 0.55);
      --font-heading: "Playfair Display", Georgia, serif;
      --font-body: "Inter", system-ui, sans-serif;
      --transition: 0.3s ease;
    }

    [data-theme="dark"] {
      --bg: transparent;
      --surface: rgba(15, 30, 45, 0.70);
      --primary: #EDE8DF;
      --accent: #F58640;
      --accent-hover: #FF9650;
      --accent-soft: rgba(245, 134, 64, 0.2);
      --accent-glow: rgba(245, 134, 64, 0.35);
      --brand-black: #000000;
      --banner-native-width: 1014px;
      --text: #EDE8DF;
      --text-sub: #94B4CC;
      --border: rgba(255, 255, 255, 0.12);
      --card-bg: rgba(20, 40, 60, 0.65);
      --navbar-bg: rgba(0, 0, 0, 0.97);
      --hero-text: #EDE8DF;
      --hero-text-sub: #94B4CC;
      --cream: var(--bg);
      --slate: var(--text);
      --dust-blue: var(--text-sub);
      --terracotta: var(--accent);
      --terracotta-dark: var(--accent-hover);
      --light-gray: var(--border);
      --white: var(--card-bg);
      --text-muted: var(--text-sub);
      --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.35);
      --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.45);
      --hero-card-bg: rgba(20, 38, 58, 0.65);
      --hero-card-border: rgba(255, 255, 255, 0.10);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      background: var(--accent);
      padding: clamp(6px, 1.2vw, 10px);
      min-height: 100%;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
      overflow-x: auto;
    }

    [data-theme="dark"] html {
      background: var(--brand-black);
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text);
      background: var(--bg);
      border-radius: 16px;
      overflow-x: auto;
      max-width: 100%;
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.18);
    }

    body:not(.glass-page) {
      background: #F7F4EF;
    }

    [data-theme="dark"] body:not(.glass-page) {
      background: #0F1E2D;
    }

    body:has(.hero),
    body.glass-page {
      background-color: #ebe1d2;
      background-image: url("../picture/maler1.png");
      background-size: cover;
      background-position: center;
      background-attachment: scroll;
    }

    body.glass-page::before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(235, 225, 210, 0.72);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      z-index: 0;
      pointer-events: none;
    }

    [data-theme="dark"] body.glass-page::before {
      background: rgba(0, 0, 0, 0.78);
    }

    section,
    header,
    footer {
      position: relative;
      z-index: 1;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    a[href^="tel:"]:not(.btn):not(.float-wa-btn),
    a[href^="mailto:"]:not(.btn) {
      color: var(--accent);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1.5px;
      transition: color 0.2s ease;
    }

    a[href^="tel:"]:not(.btn):not(.float-wa-btn):hover,
    a[href^="mailto:"]:not(.btn):hover {
      color: var(--accent-hover);
    }

    .site-header {
      position: relative;
      z-index: 2;
      overflow: visible;
      background: var(--brand-black);
    }

    .site-banner {
      width: 100%;
      overflow: hidden;
      line-height: 0;
      background: var(--brand-black);
      border-radius: 16px 16px 0 0;
      display: flex;
      justify-content: center;
    }

    .site-banner__img {
      display: block;
      width: min(100%, var(--banner-native-width));
      max-width: var(--banner-native-width);
      height: auto;
    }

    @media (min-width: 768px) {
      .site-header {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
      }

      .site-banner {
        border-radius: 0;
      }
    }

    .nav--brand {
      position: sticky;
      position: -webkit-sticky;
      top: 0;
      z-index: 1000;
      height: auto;
      min-height: var(--nav-height);
      padding: 0;
      border-radius: 0;
      border: none;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      background: rgba(252, 250, 247, 0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    }

    .site-nav-sticky {
      top: env(safe-area-inset-top, 0px);
    }

    .nav--brand .nav-inner {
      min-height: var(--nav-height);
    }

    .nav--brand .nav-brand-name {
      display: block;
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      line-height: 1.15;
      color: #121212 !important;
    }

    .nav--brand .nav-brand .firma-sub {
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--accent) !important;
      line-height: 1.2;
      margin-top: 2px;
    }

    .nav--brand .nav-links a {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: #2c2c2c !important;
    }

    .nav--brand .nav a:hover,
    .nav--brand .nav-links a:hover {
      color: var(--accent) !important;
    }

    .nav--brand .theme-toggle {
      background: rgba(255, 255, 255, 0.85);
      border-color: rgba(0, 0, 0, 0.08);
      color: #3a3a3a;
    }

    .nav--brand .theme-toggle:hover {
      background: #fff;
      color: var(--accent);
    }

    .nav--brand .nav-toggle span {
      background: #2c2c2c;
    }

    [data-theme="dark"] .nav--brand {
      background: var(--brand-black);
      border-top-color: rgba(255, 255, 255, 0.08);
    }

    [data-theme="dark"] .nav--brand .nav-brand span {
      color: #f5f5f5 !important;
    }

    [data-theme="dark"] .nav--brand .nav-links a {
      color: rgba(255, 255, 255, 0.88) !important;
    }

    [data-theme="dark"] .nav--brand .theme-toggle {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.12);
      color: var(--accent);
    }

    [data-theme="dark"] .nav--brand .nav-toggle span {
      background: rgba(255, 255, 255, 0.9);
    }

    h1, h2, h3, h4 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.2;
      color: var(--text);
    }

    h1, h2, h3 {
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .container {
      width: min(1140px, calc(100% - 2.5rem));
      margin-inline: auto;
    }

    .section {
      padding: clamp(2.75rem, 5vw, 5.5rem) 0;
      background-color: rgba(255, 255, 255, 0.35);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      margin: clamp(6px, 1.2vw, 16px);
      border-radius: clamp(12px, 2vw, 20px);
      border: 1px solid rgba(255, 255, 255, 0.4);
    }

    [data-theme="dark"] .section {
      background-color: rgba(15, 30, 45, 0.50);
      border-color: rgba(255, 255, 255, 0.08);
    }

    @property --h-line-h {
      syntax: "<length>";
      inherits: false;
      initial-value: 0px;
    }

    main > section,
    section.reviews-section {
      container-type: inline-size;
      --section-content-max: min(1140px, calc(100% - 2.5rem));
      --section-side-gutter: max(0px, calc((100% - var(--section-content-max)) / 2));
      --section-stripe-x: clamp(0.625rem, calc(var(--section-side-gutter) + 0.25rem), 3.25rem);
      --h-line-h: 0px;
      --neon-v-stripe: linear-gradient(
        180deg,
        transparent 0%,
        #ff8f3d 16%,
        #ff6b1a 50%,
        #ff8f3d 84%,
        transparent 100%
      );
      --neon-h-stripe: linear-gradient(
        90deg,
        transparent 0%,
        #ff8f3d 18%,
        #ff6b1a 50%,
        #ff8f3d 82%,
        transparent 100%
      );
      transition: --h-line-h 1.05s cubic-bezier(0.22, 1, 0.36, 1);
    }

    main > section.is-divider-revealed,
    section.reviews-section.is-divider-revealed {
      --h-line-h: 5px;
    }

    section + section.section,
    section + section.gallery-section,
    section + section.vn-section,
    section + section.contact-form-section,
    section.reviews-section {
      background-image: var(--neon-h-stripe);
      background-size: min(720px, 100%) var(--h-line-h);
      background-position: center top;
      background-repeat: no-repeat;
    }

    [data-theme="dark"] section + section.section,
    [data-theme="dark"] section + section.gallery-section,
    [data-theme="dark"] section + section.vn-section,
    [data-theme="dark"] section + section.contact-form-section,
    [data-theme="dark"] section.reviews-section {
      --neon-h-stripe: linear-gradient(
        90deg,
        transparent 0%,
        #ff9a4d 16%,
        #ff7a2e 50%,
        #ff9a4d 84%,
        transparent 100%
      );
    }

    main > section.gallery-section,
    main > section.vn-section {
      margin: 16px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      background-color: rgba(255, 255, 255, 0.35);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    [data-theme="dark"] main > section.gallery-section,
    [data-theme="dark"] main > section.vn-section {
      background-color: rgba(15, 30, 45, 0.50);
      border-color: rgba(255, 255, 255, 0.08);
    }

    main > section.hero {
      --section-content-max: min(1200px, calc(100% - clamp(1.25rem, 3vw, 3rem)));
      --section-side-gutter: max(0px, calc((100% - var(--section-content-max)) / 2));
      --section-stripe-x: clamp(0.625rem, calc(var(--section-side-gutter) + 0.25rem), 3.25rem);
    }

    /* Hero: vertikale Streifen aus — würden sonst Karten schneiden */
    main > section.hero::before,
    main > section.hero::after {
      display: none !important;
    }

    main > section.hero::before,
    main > section.hero::after,
    section + section::before,
    section + section::after,
    section.reviews-section::before,
    section.reviews-section::after {
      content: "";
      position: absolute;
      top: 14%;
      bottom: 14%;
      width: 3px;
      border-radius: 999px;
      pointer-events: none;
      z-index: 3;
      opacity: 0;
      transform: scaleY(0);
      transform-origin: center center;
      background: var(--neon-v-stripe);
      box-shadow: none;
      transition:
        transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s ease,
        box-shadow 1.05s ease,
        width 1.05s ease;
    }

    main > section.hero::before,
    section + section::before,
    section.reviews-section::before {
      left: var(--section-stripe-x);
    }

    main > section.hero::after,
    section + section::after,
    section.reviews-section::after {
      right: var(--section-stripe-x);
    }

    main > section.hero.is-divider-revealed::before,
    main > section.hero.is-divider-revealed::after,
    section + section.is-divider-revealed::before,
    section + section.is-divider-revealed::after,
    section.reviews-section.is-divider-revealed::before,
    section.reviews-section.is-divider-revealed::after {
      opacity: 1;
      transform: scaleY(1);
      width: 4px;
      box-shadow:
        0 0 6px rgba(255, 120, 40, 0.95),
        0 0 18px rgba(255, 107, 26, 0.75),
        0 0 36px rgba(255, 140, 66, 0.45);
    }

    [data-theme="dark"] main > section.hero::before,
    [data-theme="dark"] main > section.hero::after,
    [data-theme="dark"] section + section::before,
    [data-theme="dark"] section + section::after,
    [data-theme="dark"] section.reviews-section::before,
    [data-theme="dark"] section.reviews-section::after {
      background: linear-gradient(
        180deg,
        transparent 0%,
        #ff9a4d 14%,
        #ff7a2e 50%,
        #ff9a4d 86%,
        transparent 100%
      );
    }

    [data-theme="dark"] main > section.hero.is-divider-revealed::before,
    [data-theme="dark"] main > section.hero.is-divider-revealed::after,
    [data-theme="dark"] section + section.is-divider-revealed::before,
    [data-theme="dark"] section + section.is-divider-revealed::after,
    [data-theme="dark"] section.reviews-section.is-divider-revealed::before,
    [data-theme="dark"] section.reviews-section.is-divider-revealed::after {
      box-shadow:
        0 0 8px rgba(255, 130, 50, 1),
        0 0 22px rgba(255, 107, 26, 0.85),
        0 0 44px rgba(255, 160, 80, 0.5);
    }

    /* Trennlinie zwischen allen Sections — Scroll-Reveal von innen nach außen */
    section + section {
      position: relative;
      border-top-color: transparent !important;
    }

    @media (prefers-reduced-motion: reduce) {
      main > section.is-divider-revealed,
      section.reviews-section.is-divider-revealed {
        --h-line-h: 5px;
        transition: none;
      }

      main > section.hero.is-divider-revealed::before,
      main > section.hero.is-divider-revealed::after,
      section + section.is-divider-revealed::before,
      section + section.is-divider-revealed::after,
      section.reviews-section.is-divider-revealed::before,
      section.reviews-section.is-divider-revealed::after {
        transition: none;
        transform: scaleY(1);
        opacity: 1;
        width: 4px;
      }
    }

    @media (max-width: 1320px) {
      main > section.hero::before,
      main > section.hero::after,
      section + section::before,
      section + section::after,
      section.reviews-section::before,
      section.reviews-section::after {
        display: none;
      }
    }

    @media (max-width: 1024px) {
      section + section.section,
      section + section.gallery-section,
      section + section.vn-section,
      section + section.contact-form-section,
      section.reviews-section {
        background-size: min(640px, 100%) var(--h-line-h);
      }

      .hero-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: clamp(32px, 5vw, 48px) clamp(16px, 3vw, 24px);
      }

      .hero-content,
      .hero-card--leistungen,
      .hero-card--galerie,
      .hero-card--standort {
        grid-column: auto;
        grid-row: auto;
      }
    }

    .card,
    .service-card,
    .nav:not(.nav--brand),
    .contact-form,
    .contact-info-block,
    .map-info-panel,
    .reference-card {
      background: var(--card-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    }

    .section-label {
      display: inline-block;
      margin-bottom: 0.75rem;
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .section-title {
      margin: 0 0 1rem;
      font-size: clamp(1.875rem, 4vw, 2.75rem);
    }

    .section-intro {
      max-width: 620px;
      margin: 0 0 3rem;
      color: var(--text-muted);
      font-size: 1.0625rem;
    }

    /* Fade-in beim Scrollen — nur mit JS; ohne JS bleibt alles sichtbar */
    .reveal {
      opacity: 1;
      transform: none;
    }

    html.js .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    html.js .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================================================
       NAVIGATION â€” sticky, transparent â†’ weiÃŸ beim Scrollen
       ============================================================ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      height: var(--nav-height);
      border-radius: 0;
      transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .nav-brand,
    .nav-brand span,
    .nav-links a {
      color: var(--text) !important;
    }

    .nav.is-scrolled {
      box-shadow: 0 10px 36px rgba(27, 58, 92, 0.18);
    }

    [data-theme="dark"] .nav.is-scrolled {
      box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    /* FIRMENNAME â€” hier austauschen */
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.15;
    }

    .nav-brand-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .firma-sub {
      display: block;
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: var(--text-sub);
      line-height: 1.2;
    }

    .nav-brand-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--dust-blue), var(--slate));
      display: grid;
      place-items: center;
      color: var(--white);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .nav-brand-logo {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav a,
    .nav-links a {
      font-weight: 400;
      transition: font-weight 0s, color 0.2s;
    }

    .nav-links a {
      font-size: 0.9375rem;
      color: var(--text);
      position: relative;
    }

    .nav a:hover,
    .nav-links a:hover {
      font-weight: 700;
      color: var(--accent) !important;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: var(--terracotta);
      transition: width var(--transition);
    }

    .nav-links a:hover::after { width: 100%; }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid var(--light-gray);
      border-radius: 10px;
      background: var(--white);
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      margin-inline: auto;
      background: var(--text);
      transition: transform 0.25s, opacity 0.25s;
    }

    .theme-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--surface);
      color: var(--accent) !important;
      cursor: pointer;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .theme-toggle:hover {
      border-color: var(--accent);
      transform: scale(1.05);
    }

    .theme-icon {
      width: 22px;
      height: 22px;
      stroke: var(--accent);
    }

    .theme-icon-sun,
    .theme-icon-moon {
      transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
      transform-origin: center;
    }

    .theme-icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
    .theme-icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }

    [data-theme="dark"] .theme-icon-moon { opacity: 0; transform: rotate(90deg) scale(0.5); }
    [data-theme="dark"] .theme-icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }

    /* ============================================================
       BUTTONS
       ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.95rem 1.75rem;
      border: none;
      border-radius: 999px;
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    }

    .btn-primary {
      background: var(--terracotta);
      color: var(--white);
      box-shadow: 0 8px 24px rgba(196, 119, 74, 0.28);
    }

    .btn-primary:hover {
      background: var(--terracotta-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(196, 119, 74, 0.35);
    }

    :not([data-theme="dark"]) .hero-actions .btn-primary,
    :not([data-theme="dark"]) .leistung-detail-text .btn-primary {
      color: var(--primary);
      font-weight: 700;
    }

    :not([data-theme="dark"]) .hero-actions .btn-primary:hover,
    :not([data-theme="dark"]) .leistung-detail-text .btn-primary:hover {
      color: var(--primary);
    }

    .btn-outline {
      background: rgba(255, 255, 255, 0.55);
      color: var(--text);
      border: 2px solid var(--accent);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-full { width: 100%; }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .form-success {
      background: rgba(46, 125, 50, 0.12);
      border: 1px solid rgba(46, 125, 50, 0.35);
      color: var(--text);
      padding: 1rem 1.25rem;
      border-radius: var(--radius);
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    .form-error {
      background: rgba(198, 40, 40, 0.1);
      border: 1px solid rgba(198, 40, 40, 0.35);
      color: var(--text);
      padding: 1rem 1.25rem;
      border-radius: var(--radius);
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    [data-theme="dark"] .form-error {
      background: rgba(239, 83, 80, 0.12);
      border-color: rgba(239, 83, 80, 0.35);
    }

    .contact-form-messages:empty {
      display: none;
    }

    .contact-form {
      position: relative;
      overflow: hidden;
    }

    .contact-form__accent {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--accent-hover));
      border-radius: 16px 16px 0 0;
    }

    .contact-form__fields {
      display: grid;
      gap: 0;
    }

    @media (min-width: 640px) {
      .contact-form__fields {
        grid-template-columns: 1fr 1fr;
        column-gap: 1rem;
      }

      .form-row--half:nth-child(odd) {
        grid-column: 1;
      }

      .form-row--half:nth-child(even) {
        grid-column: 2;
      }

      .contact-form__fields > .form-row:not(.form-row--half) {
        grid-column: 1 / -1;
      }
    }

    .form-required {
      color: var(--accent);
      font-weight: 700;
    }

    .form-optional {
      font-weight: 400;
      color: var(--text-sub);
      font-size: 0.8125rem;
    }

    .contact-form__actions {
      margin-top: 0.25rem;
    }

    [data-submit-btn].is-loading {
      opacity: 0.82;
      pointer-events: none;
    }

    [data-submit-btn] .btn-loading {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    [data-submit-btn]:not(.is-loading) .btn-loading {
      display: none;
    }

    [data-submit-btn].is-loading .btn-label {
      display: none;
    }

    [data-submit-btn].is-loading .btn-loading {
      display: inline;
    }

    .form-honey {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    /* ============================================================
       HERO â€” Farbstreifen-Animation + Headline
       ============================================================ */
    .hero {
      position: relative;
      min-height: clamp(520px, 90vh, 900px);
      display: flex;
      align-items: center;
      overflow: hidden;
      background-image:
        linear-gradient(rgba(235, 225, 210, 0.65), rgba(235, 225, 210, 0.65)),
        url("../picture/maler1.png");
      background-size: cover;
      background-position: center;
      background-attachment: scroll;
    }

    [data-theme="dark"] .hero {
      background-image:
        linear-gradient(rgba(15, 30, 45, 0.72), rgba(15, 30, 45, 0.72)),
        url("../picture/maler1.png");
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 17.5rem);
      grid-template-rows: auto auto auto;
      gap: clamp(10px, 1.5vw, 16px);
      align-items: start;
      width: min(1200px, calc(100% - clamp(1.25rem, 3vw, 3rem)));
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(48px, 8vw, 80px) clamp(16px, 3vw, 24px);
    }

    .hero-stripes {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      z-index: 0;
    }

    .hero-stripe {
      flex: 1;
      transform: translateX(-110%);
      animation:
        stripeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        stripeFade 0.7s ease forwards;
    }

    .hero-stripe:nth-child(1) {
      background: #2C3E50;
      animation-delay: 0.05s, 1.15s;
    }
    .hero-stripe:nth-child(2) {
      background: #7B9BB2;
      animation-delay: 0.15s, 1.15s;
    }
    .hero-stripe:nth-child(3) {
      background: #C4774A;
      animation-delay: 0.25s, 1.15s;
    }
    .hero-stripe:nth-child(4) {
      background: #E8E4DF;
      animation-delay: 0.35s, 1.15s;
    }
    .hero-stripe:nth-child(5) {
      background: #F8F5F0;
      animation-delay: 0.45s, 1.15s;
    }

    @keyframes stripeIn {
      to { transform: translateX(0); }
    }

    @keyframes stripeFade {
      to { opacity: 0; }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: transparent;
      z-index: 1;
      pointer-events: none;
    }

    .hero-content {
      grid-column: 1;
      grid-row: 1 / 3;
      min-width: 0;
      background: rgba(255, 255, 255, 0.50);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.60);
      border-radius: 20px;
      padding: 48px;
    }

    [data-theme="dark"] .hero-content {
      background: rgba(20, 38, 58, 0.65);
      border-color: rgba(255, 255, 255, 0.10);
    }

    .hero-card--leistungen {
      grid-column: 1;
      grid-row: 3;
    }

    .hero-card--galerie {
      grid-column: 2;
      grid-row: 1;
    }

    .hero-card--standort {
      grid-column: 2;
      grid-row: 2;
    }

    .hero-card {
      min-width: 0;
      background: var(--hero-card-bg);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid var(--hero-card-border);
      border-radius: 16px;
      padding: 20px;
      font-size: 0.9rem;
      color: var(--text);
    }

    [data-theme="dark"] .hero-card {
      background: var(--hero-card-bg);
      border-color: var(--hero-card-border);
    }

    .hero-card__label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-sub);
    }

    .vorher-nachher-frame {
      position: relative;
      width: 100%;
      height: 160px;
      border-radius: 80px;
      overflow: hidden;
      margin: 12px 0;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    .vorher-nachher-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: brightness(0.88);
    }

    .vorher-nachher-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.28) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.28) 100%
      );
    }

    .vorher-nachher-overlay span {
      color: #fff;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }

    .vorher-nachher-overlay .divider {
      width: 1px;
      height: 60%;
      background: rgba(255, 255, 255, 0.6);
    }

    .hero-card__link {
      display: inline-block;
      margin-top: 4px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
    }

    .hero-card__link:hover {
      color: var(--accent-hover);
    }

    .hero-card--link {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: var(--text);
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
    }

    .hero-card--link:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      color: var(--accent);
    }

    .hero-icon-frame {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      border-radius: 50%;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--hero-card-bg);
      border: 1px solid var(--hero-card-border);
      box-sizing: border-box;
    }

    .hero-icon-frame--lg {
      width: 40px;
      height: 40px;
    }

    .hero-card-link-photo,
    .hero-service-icon {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      filter: brightness(1.12) contrast(1.15) saturate(1.25);
    }

    .hero-card__list a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 6px 0;
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      transition: color 0.2s, padding-left 0.2s;
    }

    [data-theme="dark"] .hero-card-link-photo,
    [data-theme="dark"] .hero-service-icon {
      filter: brightness(1.2) contrast(1.1) saturate(1.2);
    }

    .hero-card--link .hero-card__label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .hero-card-link-sub {
      font-size: 0.82rem;
      color: var(--text-sub);
      line-height: 1.3;
      margin: 0;
    }

    [data-theme="dark"] .hero-card--link:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .hero-card__list {
      list-style: none;
      margin: 12px 0 0;
      padding: 0;
    }

    [data-theme="dark"] .hero-card__list a {
      border-bottom-color: rgba(255, 255, 255, 0.08);
    }

    .hero-card__list a:hover {
      color: var(--accent);
      padding-left: 6px;
    }

    .hero-card__list li:last-child a {
      border-bottom: none;
      font-weight: 600;
      color: var(--accent);
    }

    @media (max-width: 768px) {
      html { padding: 6px; }

      body:has(.hero),
      body.glass-page,
      .hero {
        background-attachment: scroll;
      }

      body { border-radius: 10px; }

      section + section.section,
      section + section.gallery-section,
      section + section.vn-section,
      section + section.contact-form-section,
      section.reviews-section {
        background-size: min(640px, 100%) var(--h-line-h);
      }

      .hero-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 24px 16px;
        gap: 12px;
      }

      .hero-content,
      .hero-card--leistungen,
      .hero-card--galerie,
      .hero-card--standort {
        grid-column: auto;
        grid-row: auto;
      }

      .hero-content {
        padding: 22px 18px;
      }

      .hero h1 {
        font-size: clamp(1.65rem, 6.5vw, 2.25rem);
        margin-bottom: 0.85rem;
      }

      .hero-text {
        font-size: 0.875rem;
        line-height: 1.55;
        margin-bottom: 1.25rem;
      }

      .hero-eyebrow {
        font-size: 0.72rem;
        margin-bottom: 0.65rem;
      }

      .hero-content .btn-primary {
        font-size: 0.875rem;
        font-weight: 700;
        padding: 0.75rem 1.25rem;
      }

      .hero-card {
        width: 100%;
      }

      .vorher-nachher-frame {
        height: 130px;
      }

      .nav-inner {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 16px;
        height: auto;
        min-height: var(--nav-height);
        align-items: center;
      }

      .nav-brand {
        flex: 1;
        min-width: 0;
        align-self: center;
      }

      .nav-links a {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      html { padding: 4px; }

      body { border-radius: 8px; }

      .hero h1 {
        font-size: 1.55rem;
      }

      .hero-text {
        font-size: 0.8125rem;
      }

      .hero-content {
        padding: 18px 14px;
      }

      .vorher-nachher-frame {
        height: 110px;
        border-radius: 55px;
      }

      .hero-card__list a {
        font-size: 0.85rem;
        padding: 8px 0;
      }
    }

    .hero-eyebrow {
      margin: 0 0 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--hero-text-sub);
    }

    .hero h1 {
      margin: 0 0 1.25rem;
      font-size: clamp(2.5rem, 6vw, 4.25rem);
      color: var(--hero-text);
    }

    @media (min-width: 1024px) {
      .hero h1 {
        font-size: clamp(2.85rem, 4.2vw, 4.5rem);
        line-height: 1.1;
        letter-spacing: -0.01em;
      }

      .hero-text {
        line-height: 1.75;
        max-width: 580px;
      }

      .hero-content {
        padding: 52px 56px;
      }
    }

    .hero-text {
      margin: 0 0 2rem;
      font-size: clamp(1.05rem, 2vw, 1.2rem);
      color: var(--hero-text-sub);
      max-width: 540px;
    }

    /* ============================================================
       ÃœBER UNS
       ============================================================ */
    .about-grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }

    .about-text p {
      margin: 0 0 1rem;
      color: var(--text-muted);
    }

    .about-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
      padding: 0.65rem 1rem;
      background: var(--card-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--slate);
    }

    .btn-mehr {
      display: inline-block;
      margin-top: 12px;
      color: var(--accent);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: gap 0.2s, color 0.2s;
    }
    .btn-mehr:hover { color: var(--accent-hover); letter-spacing: 0.02em; }

    /* ============================================================
       PARTNER
       ============================================================ */
    .partner-section {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }

    .partner-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(1.25rem, 3vw, 2.5rem);
      flex-wrap: wrap;
      background: var(--card-bg);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
      box-shadow: var(--shadow-sm);
    }

    .partner-text-wrap {
      flex: 1 1 280px;
      min-width: 0;
    }

    .partner-lead {
      margin: 0;
      max-width: 36rem;
      font-size: clamp(0.95rem, 1.8vw, 1.05rem);
      line-height: 1.65;
      color: var(--text-sub);
    }

    .partner-lead strong {
      color: var(--text);
      font-weight: 600;
    }

    .partner-link {
      color: var(--accent);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s ease;
    }

    .partner-link:hover {
      color: var(--accent-hover);
    }

    .partner-link:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: 4px;
    }

    .partner-links {
      margin: 0.75rem 0 0;
      font-size: 0.88rem;
      color: var(--text-sub);
    }

    .partner-links-sep {
      margin: 0 0.45rem;
      opacity: 0.45;
    }

    .partner-logo-card {
      flex: 0 0 auto;
      margin: 0;
      padding: 0;
      background: transparent;
      border: none;
      border-radius: 0;
      box-shadow: none;
      text-decoration: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .partner-logo-card:hover {
      opacity: 0.88;
      transform: translateY(-1px);
    }

    .partner-logo-card:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
      border-radius: 8px;
    }

    .partner-logo {
      display: block;
      width: auto;
      max-width: min(300px, 72vw);
      max-height: 68px;
      height: auto;
      object-fit: contain;
    }

    [data-theme="dark"] .partner-logo-card {
      padding: 0.65rem 0.85rem;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .partner-strip {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
      }

      .partner-text-wrap {
        flex-basis: auto;
      }

      .partner-lead {
        max-width: none;
      }

      .partner-logo-card {
        align-self: center;
      }
    }

    .about-photo {
      width: 100%;
      height: 480px;
      object-fit: cover;
      object-position: center;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
    }

    /* Bild-Platzhalter â€” durch echtes Foto ersetzen */
    .placeholder-image {
      aspect-ratio: 4 / 3;
      border-radius: var(--radius);
      background: linear-gradient(145deg, var(--light-gray), var(--dust-blue));
      display: grid;
      place-items: center;
      color: var(--white);
      box-shadow: var(--shadow-md);
    }

    .placeholder-image svg {
      width: 48px;
      height: 48px;
      opacity: 0.85;
    }

    /* ============================================================
       LEISTUNGEN â€” Karten-Grid mit Hover-Animation
       ============================================================ */
    .services-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(4, 1fr);
    }

    @media (min-width: 769px) {
      .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(1.35rem, 2.4vw, 2.25rem);
        row-gap: clamp(1.75rem, 3vw, 2.5rem);
      }

      .service-card-body {
        padding: 1.5rem 1.85rem 2.15rem;
      }
    }

    @media (max-width: 768px) {
      .services-grid {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 0 !important;
        padding: 8px 0 20px !important;
        margin: 0 !important;
        scrollbar-width: none !important;
      }

      .services-grid::-webkit-scrollbar {
        display: none !important;
      }

      .service-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: none !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
      }

      .service-card:hover {
        transform: none;
      }
    }

    @media (max-width: 480px) {
      .service-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
      }
    }

    .services-swipe-hint {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 12px;
      font-size: 0.78rem;
      color: var(--text-sub);
      animation: swipeHint 1.5s ease-in-out infinite alternate;
    }

    @keyframes swipeHint {
      from { opacity: 0.4; transform: translateX(0); }
      to { opacity: 1; transform: translateX(6px); }
    }

    @media (max-width: 768px) {
      .services-swipe-hint { display: flex; }
    }

    .service-card-img {
      aspect-ratio: 16 / 10;
      overflow: hidden;
    }

    .service-card {
      padding: 0;
      overflow: hidden;
      border-left: 3px solid var(--accent);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .service-photo {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .service-card-body {
      padding: 1.35rem 1.75rem 2rem;
    }

    .service-card--icon {
      padding: 2rem 1.75rem;
    }

    .service-card--icon .service-card-body {
      padding: 0;
    }

    .service-icon {
      width: 52px;
      height: 52px;
      margin-bottom: 1.25rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.35);
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      color: var(--dust-blue);
    }

    .service-card h3 {
      margin: 0 0 0.75rem;
      font-size: 1.25rem;
    }

    .service-card p {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.9375rem;
    }

    /* ============================================================
       REFERENZEN â€” Vorher/Nachher Slider
       ============================================================ */
    .slider-wrap {
      position: relative;
    }

    .slider-track {
      display: flex;
      gap: 1.25rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 0.5rem;
      scrollbar-width: thin;
      scrollbar-color: var(--dust-blue) var(--light-gray);
    }

    .slider-track::-webkit-scrollbar { height: 6px; }
    .slider-track::-webkit-scrollbar-thumb { background: var(--dust-blue); border-radius: 999px; }

    .reference-card {
      flex: 0 0 min(340px, 85vw);
      scroll-snap-align: start;
      overflow: hidden;
    }

    .reference-photo {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .reference-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    .reference-images .placeholder-image {
      aspect-ratio: 1;
      border-radius: 0;
      box-shadow: none;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .ref-before { background: linear-gradient(145deg, #b8b4ae, #8a8680); }
    .ref-after { background: linear-gradient(145deg, var(--dust-blue), var(--slate)); }

    .reference-caption {
      padding: 1rem 1.25rem;
    }

    .reference-caption h3 {
      margin: 0 0 0.25rem;
      font-size: 1.0625rem;
    }

    .reference-caption p {
      margin: 0;
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    .slider-controls {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .slider-btn {
      width: 44px;
      height: 44px;
      border: 1px solid var(--light-gray);
      border-radius: 50%;
      background: var(--white);
      color: var(--slate);
      cursor: pointer;
      font-size: 1.25rem;
      transition: background var(--transition), color var(--transition);
    }

    .slider-btn:hover {
      background: var(--slate);
      color: var(--white);
    }

    /* ============================================================
       KONTAKT â€” Formular + Infos
       ============================================================ */
    .contact-grid {
      display: grid;
      gap: 3rem;
    }

    .contact-dual-grid {
      display: grid;
      gap: 3rem;
    }

    .contact-col-intro {
      max-width: none;
    }

    @media (min-width: 768px) {
      .contact-dual-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 2.5rem;
      }

      .contact-col-intro {
        margin-bottom: 1.25rem;
      }

      .contact-section .section-title {
        font-size: clamp(1.5rem, 2.5vw, 2.1rem);
      }
    }

    .contact-info-block {
      padding: 2rem;
    }

    .contact-info-block h3 {
      margin: 0 0 1.25rem;
      font-size: 1.25rem;
    }

    .contact-label {
      margin: 1.25rem 0 0.35rem;
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text);
    }

    .contact-info-block .contact-label:first-of-type {
      margin-top: 0;
    }

    .contact-info-block .contact-link {
      color: var(--accent);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1px;
      transition: color 0.2s ease;
    }

    .contact-info-block .contact-link:hover {
      color: var(--accent-hover);
    }

    .contact-info-block .contact-link--wa {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: underline;
    }

    .contact-bank {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.9375rem;
      line-height: 1.65;
    }

    .standort-info-item .contact-bank {
      color: var(--text-sub);
    }

    .contact-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .contact-list li {
      margin-bottom: 1rem;
      color: var(--text-muted);
    }

    .contact-list strong {
      display: block;
      color: var(--slate);
      font-size: 0.8125rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 0.2rem;
    }

    .contact-form {
      padding: 2rem;
    }

    .contact-form-section .section-intro {
      margin-bottom: 2rem;
    }

    .contact-form-section--page {
      padding-top: 3rem;
      padding-bottom: 4rem;
    }

    /* ============================================================
       STANDORT-SEITE
       ============================================================ */
    .standort-section--intro {
      padding-bottom: 2.5rem;
    }

    .standort-intro {
      max-width: 520px;
      margin-bottom: 0;
    }

    .standort-section--map {
      padding-top: 2.75rem;
      padding-bottom: 2.75rem;
    }

    .standort-map-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
      background: var(--card-bg);
      min-height: clamp(260px, 50vh, 480px);
    }

    .standort-map-consent {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: clamp(260px, 50vh, 480px);
      padding: clamp(1.25rem, 4vw, 2.5rem);
      text-align: center;
    }

    .standort-map-consent[hidden] {
      display: none !important;
    }

    .standort-map-consent-inner {
      max-width: 28rem;
      width: 100%;
    }

    .standort-map-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.65rem;
    }

    .standort-map-consent-icon {
      line-height: 0;
      margin-bottom: 0.75rem;
      color: var(--accent);
    }

    .standort-map-consent-icon svg {
      display: block;
      margin: 0 auto;
    }

    .standort-map-consent-title {
      font-family: var(--font-heading);
      font-size: clamp(1.15rem, 2.5vw, 1.35rem);
      font-weight: 700;
      margin-bottom: 0.65rem;
      color: var(--text);
    }

    .standort-map-consent-text {
      font-size: 0.9rem;
      line-height: 1.65;
      color: var(--text-sub);
      margin-bottom: 1.25rem;
    }

    .standort-map-consent-text a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .standort-map-load-btn {
      min-height: 48px;
      width: min(100%, 14rem);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .standort-map-link-fallback {
      display: inline-block;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
      padding: 0.35rem 0.25rem;
    }

    .standort-map-link-fallback:hover {
      color: var(--accent-hover);
      text-decoration: underline;
    }

    .standort-map-loaded {
      width: 100%;
    }

    .standort-map-loaded[hidden] {
      display: none !important;
    }

    .standort-map-wrap.is-loaded .standort-map-consent {
      display: none !important;
    }

    .standort-map-wrap.is-loaded {
      min-height: 0;
    }

    .standort-map-embed {
      display: block;
      width: 100%;
      height: clamp(260px, 50vh, 480px);
      border: 0;
    }

    .standort-section--info {
      padding-top: 2.75rem;
      padding-bottom: 4rem;
    }

    .standort-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      background: var(--card-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2.5rem;
      box-shadow: var(--shadow-sm);
    }

    .standort-info-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 0.35rem;
    }

    .standort-info-item p {
      margin: 0;
      color: var(--text);
    }

    .standort-info-item .contact-link {
      color: var(--accent);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .standort-info-item .contact-link:hover {
      color: var(--accent-hover);
    }

    .standort-wa-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #25D366 !important;
      font-weight: 600;
      margin-top: 0.35rem;
      text-decoration: none;
    }

    .standort-wa-link:hover {
      text-decoration: underline;
    }

    .standort-info-note {
      font-size: 0.82rem;
      color: var(--text-sub);
      margin-top: 0.35rem !important;
    }

    .standort-back {
      margin-top: 1.75rem;
      text-align: center;
    }

    .standort-back a {
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
    }

    .standort-back a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .standort-info-grid {
        padding: 1.5rem;
        gap: 1.35rem;
      }

      .standort-section--info {
        padding-bottom: 3rem;
      }
    }

    /* ============================================================
       ÜBER-MICH-SEITE
       ============================================================ */
    .ueber-section--intro {
      padding-bottom: 2rem;
    }

    .ueber-page-title {
      max-width: 640px;
      margin-bottom: 0;
    }

    .ueber-section--story {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }

    .about-grid--page {
      grid-template-columns: 1fr minmax(280px, 420px);
      gap: clamp(2rem, 5vw, 3.75rem);
      align-items: start;
    }

    .ueber-subtitle {
      font-family: var(--font-heading);
      font-size: clamp(1.35rem, 2.5vw, 1.6rem);
      color: var(--text);
      margin: 0 0 1.25rem;
      line-height: 1.25;
    }

    .about-grid--page .about-text p {
      font-size: 0.97rem;
      line-height: 1.75;
    }

    .about-grid--page .about-text p strong {
      color: var(--text);
      font-weight: 600;
    }

    .ueber-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 1.75rem;
    }

    .ueber-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      background: var(--card-bg);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text);
    }

    .ueber-photo-wrap {
      position: sticky;
      top: calc(var(--nav-height) + 1.5rem);
    }

    .ueber-photo-frame {
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--card-bg);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      aspect-ratio: 3 / 4;
    }

    .ueber-photo-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .ueber-photo-caption {
      margin: 0.875rem 0 0;
      text-align: center;
      font-size: 0.82rem;
      color: var(--text-sub);
    }

    .ueber-photo-caption strong {
      color: var(--accent);
    }

    .ueber-section--steckbrief {
      padding-top: 2.5rem;
      padding-bottom: 4rem;
    }

    .steckbrief {
      background: var(--card-bg);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
      box-shadow: var(--shadow-sm);
    }

    .steckbrief-title {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 1.125rem;
    }

    .steckbrief-row {
      display: flex;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.88rem;
      align-items: baseline;
    }

    .steckbrief-row:last-child {
      border-bottom: none;
    }

    .steckbrief-label {
      min-width: 140px;
      font-weight: 600;
      color: var(--text);
      flex-shrink: 0;
    }

    .steckbrief-val {
      color: var(--text-sub);
      line-height: 1.5;
    }

    .steckbrief-val .contact-link {
      color: var(--accent);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .steckbrief-val .contact-link:hover {
      color: var(--accent-hover);
    }

    .ueber-back {
      margin-top: 1.75rem;
      text-align: center;
    }

    .ueber-back a {
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
    }

    .ueber-back a:hover {
      text-decoration: underline;
    }

    @media (max-width: 900px) {
      .about-grid--page {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .ueber-photo-wrap {
        position: static;
        order: -1;
      }

      .ueber-photo-frame {
        aspect-ratio: 4 / 3;
        max-height: 360px;
      }
    }

    @media (max-width: 768px) {
      .steckbrief {
        padding: 1.35rem;
      }

      .steckbrief-label {
        min-width: 110px;
      }

      .ueber-section--steckbrief {
        padding-bottom: 3rem;
      }
    }

    /* ============================================================
       LEISTUNG — Detailseiten
       ============================================================ */
    .leistung-section--intro {
      padding-bottom: 2rem;
    }

    .leistung-page-title {
      max-width: 720px;
      margin-bottom: 0.75rem;
    }

    .leistung-subtitle {
      max-width: 620px;
      margin: 0;
      font-size: 1.0625rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .leistung-section--content {
      padding-top: 2.5rem;
      padding-bottom: 3rem;
    }

    .leistung-detail-grid {
      display: grid;
      grid-template-columns: 1fr minmax(280px, 440px);
      gap: clamp(2rem, 5vw, 3.5rem);
      align-items: start;
    }

    .leistung-detail-text p {
      margin: 0 0 1rem;
      line-height: 1.75;
      color: var(--text-muted);
      font-size: 0.97rem;
    }

    .leistung-detail-heading {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      margin: 2rem 0 1rem;
      color: var(--text);
    }

    .leistung-list {
      margin: 0 0 2rem;
      padding-left: 1.25rem;
      color: var(--text-muted);
    }

    .leistung-list li {
      margin-bottom: 0.5rem;
      line-height: 1.65;
      font-size: 0.97rem;
    }

    .leistung-detail-photo {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      object-fit: contain;
      object-position: center;
      aspect-ratio: 16 / 10;
      display: block;
      border: 1px solid var(--border);
      background: var(--surface);
    }

    .leistung-photo-wrap {
      position: sticky;
      top: calc(var(--nav-height) + 1.5rem);
      overflow: hidden;
      border-radius: var(--radius);
    }

    .leistung-back {
      margin-top: 2.5rem;
    }

    .leistung-back a {
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
    }

    .leistung-back a:hover {
      text-decoration: underline;
    }

    a.service-card {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    @media (max-width: 768px) {
      .leistung-detail-grid {
        grid-template-columns: 1fr;
      }

      .leistung-photo-wrap {
        position: static;
        order: -1;
        max-width: min(100%, 360px);
        margin: 0 auto 1.75rem;
        overflow: visible;
      }

      .leistung-detail-photo {
        aspect-ratio: auto;
        width: 100%;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
      }
    }

    .contact-form-back {
      margin-top: 1.5rem;
      text-align: center;
    }

    .contact-form-aside {
      margin-top: 2.5rem;
      padding: 1.5rem 2rem;
      background: var(--card-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      max-width: 480px;
    }

    .contact-form-aside .contact-label:first-of-type {
      margin-top: 0;
    }

    .contact-form-aside .contact-label:not(:first-of-type) {
      margin-top: 1.25rem;
    }

    .contact-form-back a {
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
    }

    .contact-form-back a:hover {
      text-decoration: underline;
    }

    .contact-form-mobile-link {
      display: none;
      margin-top: 1.75rem;
      margin-bottom: 0;
    }

    .show-mobile-only {
      display: none;
    }

    .show-from-tablet {
      display: inline-flex;
    }

    .nav-item-form-mobile {
      display: none;
    }

    @media (max-width: 767px) {
      .contact-col--form {
        display: none;
      }

      .contact-form-mobile-link {
        display: block;
      }

      .show-mobile-only {
        display: inline-flex;
      }

      .show-from-tablet {
        display: none;
      }

      .nav-item-form-mobile {
        display: list-item;
      }
    }

    .form-row {
      margin-bottom: 1.15rem;
    }

    .form-row label {
      display: block;
      margin-bottom: 0.4rem;
      font-size: 0.875rem;
      font-weight: 500;
    }

    .form-row input,
    .form-row textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 1px solid var(--border);
      border-radius: 10px;
      font: inherit;
      color: var(--slate);
      background: rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    [data-theme="dark"] .form-row input,
    [data-theme="dark"] .form-row textarea {
      background: rgba(20, 40, 60, 0.45);
    }

    .form-row input:focus,
    .form-row textarea:focus {
      outline: none;
      border-color: var(--dust-blue);
      box-shadow: 0 0 0 3px rgba(123, 155, 178, 0.2);
    }

    .form-note {
      margin: 0.75rem 0 0;
      font-size: 0.8125rem;
      color: var(--text-muted);
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    main {
      position: relative;
      z-index: 1;
    }

    .footer {
      padding: 2rem 0;
      background: var(--brand-black);
      color: rgba(255, 255, 255, 0.75);
      border-bottom: none;
    }

    [data-theme="dark"] .footer {
      background: var(--brand-black);
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .footer a {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.9375rem;
    }

    .footer a:hover { color: var(--white); }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-copy {
      margin: 0;
      font-size: 0.8125rem;
    }

    /* ============================================================
       RECHTLICHE SEITEN
       ============================================================ */
    .legal-page {
      padding-top: calc(var(--nav-height) + 3rem);
      padding-bottom: 4rem;
      min-height: 60vh;
    }

    .legal-page h1 {
      margin: 0 0 2rem;
      font-size: clamp(1.875rem, 4vw, 2.5rem);
    }

    .legal-page h2 {
      margin: 2rem 0 0.75rem;
      font-size: 1.25rem;
    }

    .legal-page p,
    .legal-page address {
      margin: 0 0 1rem;
      color: var(--text-muted);
    }

    .legal-page address { font-style: normal; }

    .back-link {
      display: inline-block;
      margin-bottom: 2rem;
      font-weight: 500;
      color: var(--terracotta);
    }

    .back-link:hover { color: var(--terracotta-dark); }

    /* ============================================================
       STANDORT / KARTE
       ============================================================ */
    .map-container {
      height: clamp(280px, 50vw, 420px);
      border-radius: var(--radius);
      border: 1px solid var(--light-gray);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      z-index: 1;
    }

    .map-marker {
      width: 18px;
      height: 18px;
      background: var(--accent);
      border: 3px solid var(--surface);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(212, 98, 42, 0.35);
    }

    .map-info-panel {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      margin-top: 0;
      padding: 0 1.5rem;
      transition: max-height 0.55s ease, opacity 0.45s ease, margin-top 0.45s ease, padding 0.45s ease;
    }

    .map-info-panel.is-open {
      max-height: 420px;
      opacity: 1;
      margin-top: 1.25rem;
      padding: 1.5rem;
    }

    .map-info-panel h3 {
      margin: 0 0 1rem;
      font-size: 1.25rem;
    }

    .map-info-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .map-info-list li {
      margin-bottom: 0.75rem;
      color: var(--text-muted);
    }

    .map-info-list strong {
      display: block;
      color: var(--slate);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.15rem;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal,
      .hero-stripe,
      .theme-icon-sun,
      .theme-icon-moon,
      .map-info-panel,
      .service-card {
        transition: none !important;
        animation: none !important;
      }
    }

    @media (max-width: 767px) {
      .about-photo { height: 320px; }
    }

    /* ============================================================
       RESPONSIVE â€” Mobile & Tablet
       ============================================================ */
    @media (min-width: 1025px) {
      html,
      body {
        overflow-x: clip;
      }

      .nav--brand .nav-inner {
        justify-content: flex-start;
      }

      .nav--brand .nav-brand {
        margin-right: auto;
        flex-shrink: 0;
      }

      .nav--brand .nav-links {
        display: flex;
        flex-shrink: 0;
        gap: 1.35rem;
        order: 2;
      }

      .nav--brand .theme-toggle {
        order: 3;
        margin-left: 0.65rem;
        flex-shrink: 0;
      }

      .nav--brand .nav-toggle {
        display: none;
      }

      .nav--brand .nav-links a {
        font-size: 0.875rem;
        white-space: nowrap;
      }
    }

    @media (min-width: 768px) {
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 1024px) {
      .site-header {
        overflow: visible;
      }

      .nav-toggle { display: flex; }

      .nav,
      .nav.nav--brand {
        z-index: 9999;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow: visible;
        transform: none;
        filter: none;
      }

      .nav-inner {
        overflow: visible;
        position: relative;
        z-index: 10003;
      }

      .nav-links:not(.is-open) {
        display: flex;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        flex-direction: column;
        gap: 0;
        padding:
          calc(72px + env(safe-area-inset-top, 0px))
          max(16px, env(safe-area-inset-right, 0px))
          calc(24px + env(safe-area-inset-bottom, 0px))
          max(16px, env(safe-area-inset-left, 0px));
        margin: 0;
        list-style: none;
        background: rgba(252, 250, 247, 0.98);
        border-bottom: none;
        box-shadow: var(--shadow-sm);
        z-index: 10001;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s, visibility 0.3s;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      .nav-links.is-open,
      #nav-menu.is-open {
        display: flex;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        flex-direction: column;
        gap: 0;
        padding:
          calc(72px + env(safe-area-inset-top, 0px))
          max(16px, env(safe-area-inset-right, 0px))
          calc(24px + env(safe-area-inset-bottom, 0px))
          max(16px, env(safe-area-inset-left, 0px));
        margin: 0;
        list-style: none;
        background: rgba(252, 250, 247, 0.98);
        border-bottom: none;
        box-shadow: var(--shadow-sm);
        z-index: 10001;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      .nav-links li { width: 100%; flex-shrink: 0; }

      .nav-links a,
      #nav-menu a {
        display: flex;
        align-items: center;
        padding: 14px 24px;
        font-size: 1.1rem;
        min-height: 48px;
        color: var(--text) !important;
      }

      .nav--brand .nav-links:not(.is-open),
      .nav--brand .nav-links.is-open,
      .nav--brand #nav-menu.is-open {
        background: rgba(252, 250, 247, 0.98);
      }

      .nav--brand .nav-links a,
      .nav--brand #nav-menu a {
        color: #2c2c2c !important;
      }

      [data-theme="dark"] .nav-links:not(.is-open),
      [data-theme="dark"] .nav-links.is-open,
      [data-theme="dark"] #nav-menu.is-open {
        background: rgba(18, 18, 18, 0.98);
      }

      [data-theme="dark"] .nav--brand .nav-links a,
      [data-theme="dark"] .nav--brand #nav-menu a {
        color: rgba(255, 255, 255, 0.88) !important;
      }

      .nav-toggle[aria-expanded="true"] {
        position: fixed;
        top: calc(12px + env(safe-area-inset-top, 0px));
        right: calc(12px + env(safe-area-inset-right, 0px));
        z-index: 10005;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        pointer-events: auto;
        touch-action: manipulation;
      }

      .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

      .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      body.nav-open {
        overflow: hidden;
      }

      .hero-overlay {
        background: transparent;
      }
    }

    /* ============================================================
       BEWERTUNGEN
       ============================================================ */
    .reviews-section {
      position: relative;
      z-index: 1;
    }

    .reviews-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding-inline: 8px;
      text-align: center;
    }

    .section-eyebrow {
      display: inline-block;
      margin: 0 0 0.75rem;
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .reviews-section h2 {
      margin: 0 0 0.5rem;
    }

    .reviews-intro {
      text-align: center;
      color: var(--text-sub);
      max-width: 520px;
      margin: 0 auto 2rem;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .reviews-score {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      background: var(--card-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 12px 28px;
      margin: 24px 0 40px;
    }

    .score-number {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }

    .score-right {
      text-align: left;
    }

    .stars {
      color: #F59E0B;
      font-size: 1.1rem;
      letter-spacing: 0.05em;
    }

    .score-sub {
      display: block;
      font-size: 0.8rem;
      color: var(--text-sub);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 40px;
    }

    .review-card {
      background: var(--card-bg);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      text-align: left;
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .review-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }

    .review-stars {
      color: #F59E0B;
      font-size: 1rem;
      margin-bottom: 12px;
      letter-spacing: 0.04em;
    }

    .review-text {
      font-size: 0.92rem;
      line-height: 1.65;
      color: var(--text);
      margin: 0 0 20px;
      font-style: italic;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .review-author strong {
      display: block;
      font-size: 0.9rem;
    }

    .review-author span {
      font-size: 0.78rem;
      color: var(--text-sub);
    }

    .reviews-cta {
      display: inline-block;
      padding: 14px 32px;
      background: var(--accent);
      color: #fff;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }

    .reviews-cta:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      color: #fff;
    }

    .float-review-btn {
      position: fixed;
      right: -112px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 999;
      transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .float-review-btn.visible {
      right: max(0px, env(safe-area-inset-right, 0px));
    }

    .float-review-btn button {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 14px 12px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 14px 0 0 14px;
      cursor: pointer;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.20);
      transition: background 0.2s, transform 0.2s;
      font-family: var(--font-body);
    }

    .float-review-btn button:hover {
      background: var(--accent-hover);
      transform: translateX(-4px);
    }

    .float-review-badge {
      background: rgba(255, 255, 255, 0.25);
      border-radius: 20px;
      padding: 2px 8px;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .float-wa-btn {
      position: fixed;
      right: 0;
      bottom: clamp(72px, 12vh, 100px);
      z-index: 999;
      background: #25D366;
      color: white;
      width: 52px;
      height: 52px;
      border-radius: 14px 0 0 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.18);
      transition: transform 0.2s, background 0.2s;
      text-decoration: none;
    }

    .float-wa-btn:hover {
      background: #1ebe5d;
      transform: translateX(-4px);
    }

    @media (max-width: 480px) {
      .float-wa-btn {
        width: 44px;
        height: 44px;
        bottom: 90px;
      }
    }

    @media (max-width: 1024px) {
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .review-card {
        padding: 22px;
      }

      .float-review-btn {
        top: auto;
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        transform: none;
        right: -100px;
      }

      .float-review-btn.visible {
        right: max(0px, env(safe-area-inset-right, 0px));
      }

      .float-review-btn button {
        padding: 10px 8px;
        font-size: 0.68rem;
        border-radius: 12px 0 0 12px;
      }
    }

    @media (max-width: 480px) {
      .reviews-score {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px 20px;
      }

      .score-right {
        text-align: center;
      }

      .score-number {
        font-size: 2.2rem;
      }

      .reviews-cta {
        width: 100%;
        max-width: 320px;
      }

      .float-review-btn {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        right: -92px;
      }

      .float-review-btn.visible {
        right: max(0px, env(safe-area-inset-right, 0px));
      }
    }

    .gallery-section { padding: 80px 24px; }
    .gallery-inner { max-width: 1200px; margin: 0 auto; }
    .gallery-sub { color: var(--text-sub); max-width: 520px; margin-bottom: 40px; }

    .gallery-slider-stage {
      width: 100%;
    }

    .gallery-slider-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
      margin-inline: auto;
      width: 100%;
      background: rgba(255, 255, 255, 0.4);
    }

    [data-theme="dark"] .gallery-slider-wrap {
      background: rgba(10, 22, 35, 0.55);
    }

    .gallery-slider {
      display: flex;
      height: 100%;
      transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
      will-change: transform;
    }

    .gallery-slide {
      flex: 0 0 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-slide img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      object-position: center;
      image-orientation: from-image;
      display: block;
      user-select: none;
      -webkit-user-drag: none;
    }

    .gallery-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--primary);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
      transition: background 0.2s, transform 0.2s;
    }

    .gallery-arrow:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-50%) scale(1.08);
    }

    .gallery-arrow--prev { left: 16px; }
    .gallery-arrow--next { right: 16px; }

    [data-theme="dark"] .gallery-arrow {
      background: rgba(20, 40, 60, 0.75);
      color: var(--text);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .gallery-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .gallery-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      border: none;
      padding: 0;
    }

    .gallery-dot.active {
      background: var(--accent);
      transform: scale(1.4);
    }

    @media (min-width: 769px) {
      .gallery-inner {
        text-align: center;
      }

      .gallery-inner .section-eyebrow,
      .gallery-inner h2,
      .gallery-sub {
        text-align: center;
        margin-inline: auto;
      }

      .gallery-slider-stage {
        width: min(100%, 860px);
        height: min(72vh, 720px);
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .gallery-slider-wrap {
        flex-shrink: 0;
        transition: width 0.45s ease, max-height 0.45s ease;
      }

      .gallery-slider-wrap--portrait {
        width: min(100%, 480px);
        aspect-ratio: 3 / 4;
        max-height: min(72vh, 720px);
      }

      .gallery-slider-wrap--landscape {
        width: min(100%, 860px);
        aspect-ratio: 4 / 3;
        max-height: min(58vh, 500px);
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .gallery-slider-stage {
        width: min(100%, 720px);
        height: min(68vh, 640px);
      }

      .gallery-slider-wrap--portrait {
        width: min(100%, 420px);
        max-height: min(68vh, 640px);
      }

      .gallery-slider-wrap--landscape {
        width: min(100%, 720px);
        max-height: min(52vh, 440px);
      }
    }

    @media (max-width: 768px) {
      .gallery-slider-wrap,
      .gallery-slider-wrap--portrait,
      .gallery-slider-wrap--landscape {
        width: 100% !important;
        aspect-ratio: 4 / 3 !important;
        max-height: min(520px, 65vh) !important;
        border-radius: 12px;
      }

      .gallery-slide img {
        width: 100%;
        height: 100%;
      }

      .gallery-arrow { width: 38px; height: 38px; }
      .gallery-arrow--prev { left: 8px; }
      .gallery-arrow--next { right: 8px; }
    }

    @media (max-width: 480px) {
      .gallery-slider-wrap,
      .gallery-slider-wrap--portrait,
      .gallery-slider-wrap--landscape {
        aspect-ratio: 1 / 1 !important;
        max-height: min(420px, 58vh) !important;
      }

      .gallery-dot { width: 6px; height: 6px; }
    }

    .vn-section { padding: 80px 24px; }
    .vn-inner { max-width: 1100px; margin: 0 auto; }
    .vn-sub {
      color: var(--text-sub);
      max-width: 500px;
      margin-bottom: 40px;
      font-size: 0.97rem;
    }

    .vn-slider-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
      border: 1px solid var(--border);
      background: var(--surface);
      touch-action: pan-y;
      margin-inline: auto;
    }

    .vn-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
      will-change: transform;
    }

    .vn-slide {
      flex: 0 0 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      position: relative;
    }

    .vn-side {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 280px;
      padding: 12px;
      background: rgba(255, 255, 255, 0.28);
    }

    [data-theme="dark"] .vn-side {
      background: rgba(10, 22, 35, 0.45);
    }

    .vn-side img {
      width: 100%;
      height: auto;
      max-height: min(500px, 58vh);
      object-fit: contain;
      object-position: center;
      image-orientation: from-image;
      display: block;
    }

    .vn-label {
      position: absolute;
      top: 16px;
      left: 16px;
      padding: 5px 14px;
      border-radius: 50px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
      z-index: 2;
    }

    .vn-label--vorher {
      background: rgba(0, 0, 0, 0.45);
      color: #fff;
    }

    .vn-label--nachher {
      background: var(--accent);
      color: #fff;
    }

    .vn-divider {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 3px;
      background: #fff;
      z-index: 3;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      pointer-events: none;
    }

    .vn-slide-title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 5;
      padding: 28px 16px 12px;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
      color: #fff;
      font-size: 0.88rem;
      font-weight: 600;
      line-height: 1.3;
      text-align: center;
      text-wrap: balance;
      pointer-events: none;
    }

    .vn-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255, 255, 255, 0.80);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--primary);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
      transition: background 0.2s, transform 0.2s;
    }

    .vn-arrow:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-50%) scale(1.08);
    }

    .vn-arrow--prev { left: 14px; }
    .vn-arrow--next { right: 14px; }

    [data-theme="dark"] .vn-arrow {
      background: rgba(20, 40, 60, 0.80);
      color: var(--text);
    }

    .vn-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: rgba(255, 255, 255, 0.25);
      z-index: 10;
    }

    .vn-progress-bar {
      height: 100%;
      background: var(--accent);
      width: 0%;
      transition: width linear;
    }

    .vn-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .vn-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      padding: 0;
    }

    .vn-dot.active {
      background: var(--accent);
      transform: scale(1.4);
    }

    .vn-counter {
      text-align: center;
      margin-top: 10px;
      font-size: 0.82rem;
      color: var(--text-sub);
      font-variant-numeric: tabular-nums;
    }

    @media (max-width: 768px) {
      .vn-section { padding: 60px 16px; }
      .vn-slider-wrap { border-radius: 12px; }
      .vn-meta {
        margin-top: 4px;
      }
      .vn-dots {
        margin-top: 14px;
      }
      .vn-counter {
        margin-top: 8px;
        padding-bottom: 0;
      }
      .vn-slide-title {
        font-size: 0.8rem;
        padding: 24px 12px 10px;
        line-height: 1.35;
      }
      .vn-slide {
        grid-template-columns: 1fr;
      }
      .vn-side {
        min-height: 180px;
        padding: 8px;
      }
      .vn-side img {
        max-height: min(340px, 42vh);
      }
      .vn-divider {
        top: 50%;
        left: 10px;
        right: 10px;
        bottom: auto;
        width: auto;
        height: 3px;
        transform: translateY(-50%);
      }
      .vn-arrow { width: 36px; height: 36px; }
      .vn-arrow--prev { left: 8px; }
      .vn-arrow--next { right: 8px; }
      .vn-label { font-size: 0.65rem; padding: 4px 10px; top: 10px; left: 10px; }
    }

    @media (max-width: 480px) {
      .vn-side {
        min-height: 140px;
        padding: 6px;
      }
      .vn-side img {
        max-height: min(280px, 38vh);
      }
      .vn-slide-title {
        font-size: 0.74rem;
        padding: 20px 10px 8px;
      }
    }

    /* Zoom / Pinch: sichtbare Viewport-Breite (visualViewport) — ergänzt Media Queries */
    html.vv-hide-stripes section + section::before,
    html.vv-hide-stripes section + section::after,
    html.vv-hide-stripes section.reviews-section::before,
    html.vv-hide-stripes section.reviews-section::after {
      display: none;
    }

    html.vv-compact section + section.section,
    html.vv-compact section + section.gallery-section,
    html.vv-compact section + section.vn-section,
    html.vv-compact section + section.contact-form-section,
    html.vv-compact section.reviews-section {
      background-size: min(640px, 100%) var(--h-line-h);
    }

    html.vv-compact .hero-inner {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      padding: clamp(32px, 5vw, 48px) clamp(16px, 3vw, 24px);
    }

    html.vv-compact .hero-content,
    html.vv-compact .hero-card--leistungen,
    html.vv-compact .hero-card--galerie,
    html.vv-compact .hero-card--standort {
      grid-column: auto;
      grid-row: auto;
    }

    /* ============================================================
       MARKEN-AKZENTE — Logo-Orange & dezente Highlights
       ============================================================ */
    .hl {
      color: var(--accent);
      font-weight: inherit;
      background: linear-gradient(transparent 58%, var(--accent-soft) 58%);
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }

    [data-theme="dark"] .hl {
      text-shadow: -0.04em 0.05em 0 rgba(245, 134, 64, 0.45);
    }

    .ambient-deco {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .ambient-deco__shape {
      position: absolute;
      display: block;
      opacity: 0.55;
      filter: blur(0.5px);
    }

    .ambient-deco__shape--1 {
      top: 14%;
      right: 6%;
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, var(--accent-glow), transparent 68%);
      animation: ambientDriftA 16s ease-in-out infinite;
    }

    .ambient-deco__shape--2 {
      bottom: 22%;
      left: 4%;
      width: 52px;
      height: 52px;
      border-radius: 14px 4px 14px 4px;
      background: linear-gradient(145deg, var(--accent), var(--accent-hover));
      transform: rotate(-12deg);
      box-shadow: 0 8px 24px var(--accent-soft);
      animation: ambientDriftB 20s ease-in-out infinite;
    }

    @keyframes ambientDriftA {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-12px, 18px) scale(1.06); }
    }

    @keyframes ambientDriftB {
      0%, 100% { transform: rotate(-12deg) translate(0, 0); }
      50% { transform: rotate(-6deg) translate(14px, -16px); }
    }

    @media (prefers-reduced-motion: reduce) {
      .ambient-deco__shape--1,
      .ambient-deco__shape--2 {
        animation: none;
      }
    }

    @media (max-width: 767px) {
      .ambient-deco__shape--1 {
        width: 64px;
        height: 64px;
        top: 10%;
        right: 3%;
      }

      .ambient-deco__shape--2 {
        width: 40px;
        height: 40px;
        bottom: 16%;
        left: 2%;
      }
    }
