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

    /* === Design Tokens === */
    :root {
      /* Logo-Farben (aus Pillow extrahiert) */
      --color-green: #a4be19;
      --color-green-dark: #8aa015;
      --color-green-soft: rgba(164, 190, 25, 0.12);
      --color-brown: #644b3f;
      --color-brown-dark: #4a3830;

      /* Anti-AI-Slop Erdpalette */
      --color-bark: #3d2b1f;
      --color-cream: #f5f0e8;
      --color-sand: #e8dfd3;
      --color-white: #fffcf7;
      --color-text: #2c2419;
      --color-text-soft: #6b5d4f;

      /* Hero-Overlay (basierend auf bark, links dunkler für Text) */
      --hero-overlay: linear-gradient(100deg,
        rgba(61, 43, 31, 0.85) 0%,
        rgba(61, 43, 31, 0.7) 30%,
        rgba(61, 43, 31, 0.35) 60%,
        rgba(61, 43, 31, 0.15) 100%);

      /* Typografie */
      --font-heading: 'Bitter', Georgia, 'Times New Roman', serif;
      --font-body: 'DM Sans', 'Segoe UI', -apple-system, sans-serif;
      --size-h1: clamp(2.4rem, 5vw, 3.6rem);
      --size-h2: clamp(1.8rem, 3.5vw, 2.6rem);
      --size-h3: 1.4rem;
      --size-body: 1.05rem;

      /* Spacing & Layout */
      --section-padding: 100px 0;
      --section-padding-mobile: 64px 0;
      --container-max: 1200px;
      --nav-height: 76px;

      /* Radii */
      --radius-card: 14px;
      --radius-pill: 100px;

      /* Animation */
      --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --duration-fast: 180ms;
      --duration-normal: 320ms;
      --duration-slow: 520ms;
    }

    html { scroll-behavior: smooth; background: var(--color-bark); }

    body {
      font-family: var(--font-body);
      font-size: var(--size-body);
      line-height: 1.7;
      color: var(--color-text);
      background: var(--color-white);
      -webkit-font-smoothing: antialiased;
      overflow-x: clip;
    }

    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 28px;
    }

    h1, h2, h3, h4 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.01em;
    }

    h2 { font-size: var(--size-h2); margin-bottom: 18px; }
    h3 { font-size: var(--size-h3); margin-bottom: 12px; }
    p { color: var(--color-text-soft); }

    a { color: inherit; text-decoration: none; }

    /* === NAVIGATION === */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      height: var(--nav-height);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 36px;
      z-index: 100;
      transition: background var(--duration-normal) var(--ease-smooth),
                  box-shadow var(--duration-normal) var(--ease-smooth),
                  backdrop-filter var(--duration-normal) var(--ease-smooth);
    }

    .nav.scrolled {
      background: rgba(255, 252, 247, 0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 2px 18px rgba(61, 43, 31, 0.08);
    }

    .nav-logo img {
      height: 52px;
      width: auto;
      transition: opacity var(--duration-normal) var(--ease-smooth);
      opacity: 0.96;
    }

    .nav.scrolled .nav-logo .logo-light { display: none; }
    .nav-logo .logo-dark { display: none; }
    .nav.scrolled .nav-logo .logo-dark { display: inline; }

    .nav-links {
      display: flex; gap: 36px; align-items: center;
      list-style: none;
    }

    .nav-links a {
      font-weight: 500;
      font-size: 0.97rem;
      color: var(--color-white);
      transition: color var(--duration-fast) var(--ease-smooth);
      position: relative;
    }

    .nav.scrolled .nav-links a { color: var(--color-text); }

    .nav-links a:hover { color: var(--color-green); }

    .nav-cta {
      background: var(--color-green);
      color: var(--color-bark) !important;
      padding: 10px 22px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      transition: all var(--duration-normal) var(--ease-spring);
      box-shadow: 0 4px 14px rgba(164, 190, 25, 0.35);
    }
    .nav-cta:hover {
      background: var(--color-green-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(164, 190, 25, 0.5);
    }

    /* === HERO === */
    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: calc(var(--nav-height) + 16px) 0 48px;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('images/hero.jpg');
      background-size: cover;
      background-position: center 65%;
      z-index: 0;
    }
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: var(--hero-overlay);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      padding: 0 28px;
      margin-left: max(28px, calc((100vw - var(--container-max)) / 2 + 28px));
      color: var(--color-white);
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 252, 247, 0.12);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 252, 247, 0.22);
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      margin-bottom: 26px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s var(--ease-smooth) 0.1s forwards;
    }

    .hero-eyebrow svg { width: 14px; height: 14px; }

    .hero h1 {
      font-size: var(--size-h1);
      color: var(--color-white);
      margin-bottom: 22px;
      max-width: 660px;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.9s var(--ease-smooth) 0.25s forwards;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--color-green);
      font-weight: 400;
    }

    .hero-sub {
      font-size: 1.15rem;
      max-width: 560px;
      color: rgba(255, 252, 247, 0.88);
      margin-bottom: 36px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s var(--ease-smooth) 0.4s forwards;
    }

    .hero-cta-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s var(--ease-smooth) 0.55s forwards;
    }

    .btn-primary {
      background: var(--color-green);
      color: var(--color-bark);
      padding: 16px 32px;
      border-radius: var(--radius-pill);
      font-family: var(--font-body);
      font-size: 1.02rem;
      font-weight: 600;
      border: none; cursor: pointer;
      display: inline-flex; align-items: center; gap: 10px;
      transition: all var(--duration-normal) var(--ease-spring);
      box-shadow: 0 6px 22px rgba(164, 190, 25, 0.4);
      animation: glowPulse 3.6s ease-in-out infinite;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      background: var(--color-green-dark);
      box-shadow: 0 12px 32px rgba(164, 190, 25, 0.55);
    }

    .btn-ghost {
      background: rgba(255, 252, 247, 0.1);
      color: var(--color-white);
      padding: 16px 30px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 252, 247, 0.3);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      backdrop-filter: blur(10px);
      transition: all var(--duration-normal) var(--ease-smooth);
      display: inline-flex; align-items: center; gap: 10px;
    }
    .btn-ghost:hover {
      background: rgba(255, 252, 247, 0.18);
      border-color: rgba(255, 252, 247, 0.5);
    }

    /* Hero-Trust Pill (dezent unter Buttons, Google-Bewertungen) */
    .hero-trust {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 28px;
      padding: 9px 16px 9px 14px;
      background: rgba(255, 252, 247, 0.09);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 252, 247, 0.18);
      border-radius: var(--radius-pill);
      color: rgba(255, 252, 247, 0.95);
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.9s var(--ease-smooth) 0.7s forwards;
      transition: background var(--duration-normal) var(--ease-smooth),
                  border-color var(--duration-normal) var(--ease-smooth),
                  transform var(--duration-normal) var(--ease-spring);
    }
    .hero-trust:hover {
      background: rgba(255, 252, 247, 0.16);
      border-color: rgba(255, 252, 247, 0.32);
      transform: translateY(-1px);
    }
    .hero-trust-stars {
      display: inline-flex;
      gap: 1px;
      color: #fbbc04;  /* Google-Gold */
    }
    .hero-trust-stars svg { width: 13px; height: 13px; }
    .hero-trust-text strong { font-weight: 600; color: var(--color-white); }
    .hero-trust-arrow { width: 12px; height: 12px; opacity: 0.5; transition: opacity var(--duration-fast) var(--ease-smooth); }
    .hero-trust:hover .hero-trust-arrow { opacity: 1; }

    /* Scroll-Indicator */
    .scroll-hint {
      position: absolute;
      bottom: 36px; left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 252, 247, 0.6);
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      display: flex; flex-direction: column;
      align-items: center; gap: 10px;
      animation: bounce 2.4s ease-in-out infinite;
      z-index: 2;
    }
    .scroll-hint::after {
      content: '';
      width: 1px; height: 28px;
      background: rgba(255, 252, 247, 0.4);
    }

    /* === STATS BAR === */
    .stats {
      background: var(--color-bark);
      color: var(--color-white);
      padding: 40px 0;
      border-bottom: 1px solid rgba(255, 252, 247, 0.08);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 36px;
      align-items: center;
    }
    .stat {
      text-align: center;
      transform: rotate(-0.15deg);
    }
    .stat:nth-child(2) { transform: rotate(0.2deg); }
    .stat:nth-child(3) { transform: rotate(-0.1deg); }
    .stat:nth-child(4) { transform: rotate(0.25deg); }

    .stat-value {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--color-green);
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }
    .stat-label {
      font-size: 0.85rem;
      color: rgba(255, 252, 247, 0.7);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* === SECTION COMMON === */
    section.section { padding: var(--section-padding); }

    .section-eyebrow {
      display: inline-block;
      font-size: 0.82rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-green-dark);
      font-weight: 600;
      margin-bottom: 14px;
    }
    .section-eyebrow::before {
      content: '— ';
      color: var(--color-green);
    }

    /* === SERVICES === */
    .services {
      background: var(--color-cream);
    }
    .services-header {
      max-width: 700px;
      margin: 0 auto 60px;
      text-align: center;
    }
    .services-header h2 em {
      font-style: italic;
      color: var(--color-green-dark);
      font-weight: 400;
    }
    .services-header p { margin-top: 14px; font-size: 1.08rem; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }

    .service-card {
      background: var(--color-white);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: 0 4px 22px rgba(61, 43, 31, 0.06);
      transition: transform var(--duration-slow) var(--ease-smooth),
                  box-shadow var(--duration-slow) var(--ease-smooth);
      opacity: 0;
      transform: translateY(28px);
      animation: fadeUp 0.7s var(--ease-smooth) forwards;
    }
    .service-card:nth-child(1) { animation-delay: 0.05s; transform: translateY(28px) rotate(-0.3deg); }
    .service-card:nth-child(2) { animation-delay: 0.15s; transform: translateY(28px) rotate(0.25deg); }
    .service-card:nth-child(3) { animation-delay: 0.25s; transform: translateY(28px) rotate(-0.15deg); }
    .service-card:nth-child(4) { animation-delay: 0.35s; transform: translateY(28px) rotate(0.2deg); }
    .service-card:nth-child(5) { animation-delay: 0.45s; transform: translateY(28px) rotate(-0.2deg); }
    .service-card:nth-child(6) { animation-delay: 0.55s; transform: translateY(28px) rotate(0.15deg); }

    .service-card:hover {
      transform: translateY(-6px) rotate(0deg) !important;
      box-shadow: 0 18px 40px rgba(61, 43, 31, 0.14);
    }

    .service-img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
    }

    .service-body {
      padding: 26px 24px 28px;
    }
    .service-body h3 {
      color: var(--color-brown);
      font-weight: 600;
    }
    .service-body p {
      font-size: 0.97rem;
      line-height: 1.65;
    }
    .service-tags {
      display: flex; gap: 8px; flex-wrap: wrap;
      margin-top: 14px;
    }
    .service-tag {
      background: var(--color-green-soft);
      color: var(--color-brown-dark);
      padding: 4px 11px;
      border-radius: var(--radius-pill);
      font-size: 0.78rem;
      font-weight: 500;
    }

    /* === ABOUT (dunkle erdige Sektion) === */
    .about {
      background: var(--color-bark);
      color: var(--color-white);
      position: relative;
      overflow: hidden;
    }
    .about::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 260px; height: 260px;
      background: radial-gradient(circle, var(--color-green-soft) 0%, transparent 70%);
      pointer-events: none;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: center;
    }
    .about-portrait {
      position: relative;
      transform: rotate(-0.6deg);
    }
    .about-portrait-frame {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, #6b5d4f 0%, #4a3830 100%);
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 252, 247, 0.45);
      font-size: 0.88rem;
      text-align: center;
      padding: 30px;
      border: 1px solid rgba(255, 252, 247, 0.08);
    }
    .about-portrait-frame svg {
      width: 64px; height: 64px;
      opacity: 0.35;
      margin-bottom: 14px;
    }
    .about-portrait-frame .label {
      max-width: 220px;
    }
    .about-portrait::before {
      content: '';
      position: absolute;
      top: 20px; left: 20px;
      width: 100%; height: 100%;
      border: 1px solid var(--color-green);
      border-radius: 12px;
      z-index: -1;
      opacity: 0.5;
    }

    .about-content h2 {
      color: var(--color-white);
      margin-bottom: 22px;
    }
    .about-content h2 em {
      font-style: italic;
      color: var(--color-green);
      font-weight: 400;
    }
    .about-content p {
      color: rgba(255, 252, 247, 0.78);
      margin-bottom: 16px;
      font-size: 1.04rem;
    }

    .about-signature {
      margin-top: 28px;
      padding-top: 26px;
      border-top: 1px solid rgba(255, 252, 247, 0.12);
    }
    .about-signature .name {
      font-family: var(--font-heading);
      font-style: italic;
      font-size: 1.3rem;
      color: var(--color-green);
      margin-bottom: 2px;
    }
    .about-signature .role {
      font-size: 0.88rem;
      color: rgba(255, 252, 247, 0.55);
      letter-spacing: 0.05em;
    }

    /* === PHILOSOPHY === */
    .philosophy {
      background: var(--color-white);
    }
    .philosophy-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 36px;
      margin-top: 50px;
    }
    .philosophy-item {
      text-align: center;
      padding: 28px 18px;
    }
    .philosophy-item svg {
      width: 38px; height: 38px;
      color: var(--color-green-dark);
      margin-bottom: 18px;
    }
    .philosophy-item h3 {
      color: var(--color-brown);
      font-size: 1.18rem;
      margin-bottom: 8px;
    }
    .philosophy-item p {
      font-size: 0.96rem;
      line-height: 1.6;
    }

    /* === REVIEWS (dezent, Cream-BG) === */
    .reviews {
      background: var(--color-cream);
      padding: 88px 0;
      position: relative;
    }
    .reviews::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(100, 75, 63, 0.12), transparent);
    }
    .reviews-inner {
      max-width: 880px;
      margin: 0 auto;
      padding: 0 28px;
      text-align: center;
    }
    .reviews-score {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--color-white);
      padding: 14px 22px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(100, 75, 63, 0.12);
      box-shadow: 0 2px 14px rgba(61, 43, 31, 0.04);
      font-size: 0.94rem;
      color: var(--color-text);
      margin-bottom: 38px;
    }
    .reviews-score-stars {
      display: inline-flex;
      gap: 2px;
      color: #fbbc04;
    }
    .reviews-score-stars svg { width: 16px; height: 16px; }
    .reviews-score strong { font-weight: 600; }
    .reviews-score-divider {
      width: 1px; height: 18px;
      background: rgba(100, 75, 63, 0.18);
    }
    .reviews-quote {
      font-family: var(--font-heading);
      font-size: clamp(1.15rem, 2.4vw, 1.55rem);
      line-height: 1.55;
      color: var(--color-text);
      font-style: italic;
      font-weight: 400;
      max-width: 720px;
      margin: 0 auto 28px;
      letter-spacing: -0.005em;
      position: relative;
      transform: rotate(-0.15deg);  /* Wabi-Sabi Imperfection */
    }
    .reviews-quote::before,
    .reviews-quote::after {
      font-family: var(--font-heading);
      color: var(--color-green);
      font-weight: 700;
      opacity: 0.55;
    }
    .reviews-quote::before { content: '„'; margin-right: 4px; }
    .reviews-quote::after  { content: '"'; margin-left: 2px; }
    .reviews-attrib {
      font-size: 0.88rem;
      color: var(--color-text-soft);
      letter-spacing: 0.03em;
      margin-bottom: 32px;
    }
    .reviews-attrib::before {
      content: '— ';
      color: var(--color-text-soft);
    }
    .reviews-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-brown);
      font-weight: 600;
      font-size: 0.96rem;
      padding: 12px 22px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(100, 75, 63, 0.22);
      background: transparent;
      transition: all var(--duration-normal) var(--ease-smooth);
    }
    .reviews-cta:hover {
      background: var(--color-brown);
      color: var(--color-white);
      border-color: var(--color-brown);
      transform: translateY(-2px);
    }
    .reviews-cta svg { width: 14px; height: 14px; }

    /* === CTA Section === */
    .cta-section {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-bark) 100%);
      color: var(--color-white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: -2px;
      background:
        radial-gradient(ellipse at top left, rgba(164, 190, 25, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(164, 190, 25, 0.1) 0%, transparent 50%);
      pointer-events: none;
    }
    .cta-section > * { position: relative; z-index: 1; }

    .cta-section h2 {
      color: var(--color-white);
      max-width: 700px;
      margin: 0 auto 16px;
    }
    .cta-section h2 em {
      font-style: italic;
      color: var(--color-green);
      font-weight: 400;
    }
    .cta-section p {
      color: rgba(255, 252, 247, 0.78);
      max-width: 560px;
      margin: 0 auto 36px;
      font-size: 1.1rem;
    }
    .cta-row {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    }
    .cta-contact-meta {
      margin-top: 36px;
      display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
      font-size: 0.92rem;
      color: rgba(255, 252, 247, 0.65);
    }
    .cta-contact-meta a:hover { color: var(--color-green); }
    .cta-contact-meta svg {
      width: 14px; height: 14px;
      vertical-align: -2px;
      margin-right: 6px;
      opacity: 0.7;
    }

    /* === FOOTER === */
    .footer {
      background: var(--color-bark);
      color: var(--color-white);
      padding: 60px 0 28px;
      border-top: 1px solid rgba(255, 252, 247, 0.08);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 44px;
    }
    .footer-brand img {
      height: 56px;
      margin-bottom: 18px;
      opacity: 0.92;
    }
    .footer-brand p {
      color: rgba(255, 252, 247, 0.62);
      font-size: 0.94rem;
      max-width: 320px;
      line-height: 1.6;
    }
    .footer h4 {
      font-family: var(--font-body);
      font-size: 0.85rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-green);
      margin-bottom: 18px;
      font-weight: 600;
    }
    .footer ul {
      list-style: none;
      display: flex; flex-direction: column; gap: 10px;
    }
    .footer ul a {
      color: rgba(255, 252, 247, 0.72);
      font-size: 0.94rem;
      transition: color var(--duration-fast) var(--ease-smooth);
    }
    .footer ul a:hover { color: var(--color-green); }

    .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid rgba(255, 252, 247, 0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      color: rgba(255, 252, 247, 0.45);
      flex-wrap: wrap;
      gap: 14px;
    }

    /* === Animations === */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes glowPulse {
      0%, 100% { box-shadow: 0 6px 22px rgba(164, 190, 25, 0.4); }
      50% { box-shadow: 0 8px 32px rgba(164, 190, 25, 0.65); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-8px); }
    }

    /* === Responsive === */
    @media (max-width: 960px) {
      .nav { padding: 0 20px; }
      .nav-toggle { display: flex; }
      .nav.open { background: rgba(255, 252, 247, 0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 2px 18px rgba(61, 43, 31, 0.08); }
      .nav.open .nav-logo .logo-light { display: none; }
      .nav.open .nav-logo .logo-dark { display: inline; }
      .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px 20px 26px;
        background: rgba(255, 252, 247, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 16px 32px rgba(61, 43, 31, 0.16);
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity var(--duration-normal) var(--ease-smooth),
                    transform var(--duration-normal) var(--ease-smooth),
                    visibility var(--duration-normal);
      }
      .nav.open .nav-links {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }
      .nav-links li { width: 100%; }
      .nav-links a:not(.nav-cta) {
        display: block;
        color: var(--color-text);
        padding: 13px 14px;
        border-radius: 10px;
        font-size: 1.02rem;
      }
      .nav-links a:not(.nav-cta):hover { background: var(--color-cream); color: var(--color-green-dark); }
      .nav-cta {
        text-align: center;
        margin-top: 8px;
        padding: 14px 22px;
      }

      .hero { align-items: flex-start; }

      .hero-content {
        margin-left: 24px;
        margin-right: 24px;
        padding: 0;
      }
      .hero-cta-row { flex-direction: column; align-items: flex-start; }
      .hero-phone { margin-left: 0; }

      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

      section.section { padding: var(--section-padding-mobile); }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .about-portrait { max-width: 380px; margin: 0 auto; }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }
    }

    @media (max-width: 560px) {
      .stats-grid { grid-template-columns: 1fr; gap: 18px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    /* === Accessibility === */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    *:focus-visible {
      outline: 2px solid var(--color-green);
      outline-offset: 3px;
      border-radius: 6px;
    }


/* === LEGAL / UNTERSEITEN (Impressum, Datenschutz) === */
.legal-page { background: var(--color-white); min-height: 100vh; min-height: 100svh; padding: calc(var(--nav-height) + 56px) 0 0; }
.legal-container { max-width: 760px; margin: 0 auto; padding: 0 28px 96px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 34px; font-size: 0.92rem; font-weight: 600; color: var(--color-brown); }
.legal-back svg { width: 15px; height: 15px; }
.legal-back:hover { color: var(--color-green-dark); }
.legal-eyebrow { display: inline-block; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-green-dark); font-weight: 600; margin-bottom: 14px; }
.legal-eyebrow::before { content: '— '; color: var(--color-green); }
.legal-page h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--color-text); margin-bottom: 12px; line-height: 1.15; }
.legal-lead { color: var(--color-text-soft); font-size: 1.05rem; margin-bottom: 40px; padding-bottom: 26px; border-bottom: 1px solid var(--color-sand); }
.legal-page h2 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-brown); margin: 40px 0 12px; }
.legal-page h3 { font-size: 1.05rem; color: var(--color-text); margin: 22px 0 8px; font-weight: 600; }
.legal-page p, .legal-page li { color: var(--color-text-soft); font-size: 1rem; line-height: 1.75; margin-bottom: 14px; }
.legal-page ul { padding-left: 22px; margin-bottom: 14px; }
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--color-text); font-weight: 600; }
.legal-page a { color: var(--color-green-dark); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal-page a.legal-back, .legal-page a.btn-primary { text-decoration: none; }
.legal-page a:hover { color: var(--color-brown); }
.legal-data { background: var(--color-cream); border: 1px solid var(--color-sand); border-radius: var(--radius-card); padding: 22px 26px; margin: 6px 0 22px; }
.legal-data p { margin-bottom: 5px; }
.legal-note { margin-top: 26px; padding: 18px 22px; background: var(--color-green-soft); border-radius: 12px; font-size: 0.94rem; }
.legal-note p { color: var(--color-text); margin-bottom: 0; }
.legal-updated { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--color-sand); font-size: 0.85rem; color: var(--color-text-soft); }


/* === HERO-VIDEO (Poster=hero.jpg sofort sichtbar; Mobil & reduced-motion = nur Bild) === */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 65%; z-index: 0; border: 0; }
.hero-bg::after { z-index: 1; }
@media (max-width: 760px) { .hero-video { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

/* === HERO-BG: ganz dezenter Blur (Video + Poster konsistent; Text bleibt scharf, scale kaschiert Blur-Rand) === */
.hero-bg { filter: blur(2px); transform: scale(1.04); }

/* === ABOUT-PORTRAIT: echtes Foto füllt den Rahmen randlos === */
.about-portrait-frame { position: relative; padding: 0; }
.about-portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* === MOBIL-NAV: Hamburger-Button (Desktop versteckt, <=960 sichtbar via Breakpoint) === */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 9px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-white);
  border-radius: 10px;
  z-index: 101;
}
.nav.scrolled .nav-toggle, .nav.open .nav-toggle { color: var(--color-text); }
.nav-toggle span {
  display: block;
  height: 2px; width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-smooth),
              opacity var(--duration-fast) var(--ease-smooth);
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === .hero-sub-m: kurzer Premium-Satz nur auf Mobil (Desktop versteckt) === */
.hero-sub-m { display: none; }

/* === MOBIL-HERO: redaktionell-premium — große Bitter-Headline, reduziert, viel Luft === */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    align-items: center;
    padding: calc(var(--nav-height) + 32px) 0 48px;
  }
  .hero-content { margin: 0; padding: 0 24px; max-width: 100%; }

  /* Kicker statt Pill-Badge: keine Box, kein Icon, fein gesperrt */
  .hero-eyebrow {
    background: none; border: 0;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    padding: 0; gap: 0; margin-bottom: 22px;
    font-size: 0.7rem; letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 252, 247, 0.75);
  }
  .hero-eyebrow svg { display: none; }

  /* Headline groß & selbstbewusst (Bitter) */
  .hero h1 {
    font-size: clamp(2.05rem, 8.5vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
    max-width: 100%;
  }

  /* langer Sub aus, kurzer Premium-Satz an */
  .hero-sub { display: none; }
  .hero-sub-m {
    display: block;
    font-size: 1.05rem; line-height: 1.6;
    color: rgba(255, 252, 247, 0.9);
    margin-bottom: 34px; max-width: 26em;
  }

  /* nur EIN ruhiger CTA (kein Glow-Pulse), zweiter Button weg */
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .hero-cta-row .btn-ghost { display: none; }
  .hero-cta-row .btn-primary {
    width: 100%; justify-content: center;
    padding: 17px 24px; font-size: 1.05rem;
    animation: none;
    box-shadow: 0 8px 24px rgba(164, 190, 25, 0.3);
  }

  /* Bewertung als feine Textzeile statt Pill */
  .hero-trust {
    background: none; border: 0;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    padding: 0; margin-top: 24px; width: 100%;
    justify-content: flex-start; gap: 8px;
    font-size: 0.85rem; color: rgba(255, 252, 247, 0.8);
  }
  .hero-trust-arrow { display: none; }

  .scroll-hint { display: none; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: 1.92rem; }
  .hero-sub-m { font-size: 1rem; margin-bottom: 26px; }
}

/* === VERTRAUENS-LAUFBAND (ersetzt Stats-Grid; ruhig, Edge-Fade, reduced-motion-safe) === */
.stats { padding: 22px 0; overflow: hidden; border-bottom: 1px solid rgba(255,252,247,0.08); }
.stats-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.stats-track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: stats-scroll 120s linear infinite;
  will-change: transform;
}
.stats-marquee:hover .stats-track { animation-play-state: paused; }
.stats-item {
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.82);
}
.stats-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
  opacity: 0.85;
}
@keyframes stats-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .stats-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  .stats-dup { display: none; }
}

/* === .services-dots: Karussell-Punkte nur auf Mobil (Desktop versteckt) === */
.services-dots { display: none; }

/* === LEISTUNGEN mobil: Swipe-Karussell (scroll-snap, Peek, Punkte) === */
@media (max-width: 768px) {
  .services-header { margin-bottom: 26px; padding: 0 4px; }
  .services-header h2 { font-size: clamp(1.9rem, 7.5vw, 2.5rem); line-height: 1.16; }
  .services-header p { display: none; }

  .services-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -28px;
    padding: 4px 28px 6px;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar { display: none; }

  .service-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    background: var(--color-white);
    box-shadow: 0 6px 22px rgba(61, 43, 31, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transform: none !important;
    margin: 0;
  }
  .service-img { width: 100%; aspect-ratio: 4 / 3; border-radius: 0; margin: 0; }
  .service-body { padding: 20px 20px 24px; }
  .service-body h3 { font-size: 1.38rem; line-height: 1.22; margin-bottom: 8px; }
  .service-body p { font-size: 0.97rem; line-height: 1.6; }
  .service-tags { display: none; }

  .services-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
  }
  .services-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(100, 75, 63, 0.25);
    cursor: pointer;
    transition: background var(--duration-fast) var(--ease-smooth),
                transform var(--duration-fast) var(--ease-smooth);
  }
  .services-dot.is-active {
    background: var(--color-green-dark);
    transform: scale(1.4);
  }
}

/* === RESTLICHE SEKTIONEN mobil: redaktionell-premium (Philosophie/About/Bewertung/Kontakt/Footer) === */
@media (max-width: 768px) {
  /* Philosophie: Typo-Manifest statt Icon-Liste */
  .philosophy .services-header { margin-bottom: 6px; }
  .philosophy-grid { display: block; margin-top: 0; }
  .philosophy-item {
    text-align: left;
    padding: 30px 2px;
    border-top: 1px solid var(--color-sand);
  }
  .philosophy-item:first-child { border-top: 0; }
  .philosophy-item svg { display: none; }
  .philosophy-item h3 { font-size: 1.6rem; line-height: 1.2; margin-bottom: 8px; }
  .philosophy-item p { font-size: 1rem; line-height: 1.6; max-width: 32em; }

  /* About: ruhig, großes Portrait */
  .about-grid { gap: 34px; }
  .about-portrait { max-width: 100%; }
  .about-content h2 { font-size: clamp(1.9rem, 7.5vw, 2.5rem); line-height: 1.16; }
  .about-content p { font-size: 1.02rem; }

  /* Bewertung: redaktionelles Zitat, Score entpillt */
  .reviews { padding: 60px 0; }
  .reviews-score {
    background: none; border: 0; box-shadow: none;
    padding: 0; margin-bottom: 24px;
    flex-wrap: wrap; gap: 8px 12px; font-size: 0.85rem;
  }
  .reviews-quote { font-size: clamp(1.3rem, 5.4vw, 1.7rem); line-height: 1.5; }
  .reviews-attrib { font-size: 0.85rem; }

  /* Kontakt: ein klarer Weg */
  .cta-section { padding: 70px 0; }
  .cta-section h2 { font-size: clamp(2rem, 8vw, 2.7rem); line-height: 1.15; }
  .cta-section p { font-size: 1.02rem; }
  .cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-row .btn-primary, .cta-row .btn-ghost { width: 100%; justify-content: center; }
  .cta-row .btn-primary { animation: none; }
  .cta-contact-meta { flex-direction: column; gap: 10px; margin-top: 26px; }

  /* Footer: aufgeräumt */
  .footer { padding: 52px 0 28px; }
  .footer-grid { gap: 30px; }
  .footer-brand p { font-size: 0.92rem; }
}

/* === NAV nur auf Hero (Mobil): scrollt mit weg statt fix Platz zu fressen === */
@media (max-width: 768px) {
  .nav-on-hero { position: absolute; }
  .nav-on-hero.scrolled {
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-on-hero.scrolled .nav-logo .logo-light { display: inline; }
  .nav-on-hero.scrolled .nav-logo .logo-dark { display: none; }
  .nav-on-hero.scrolled .nav-links a { color: var(--color-white); }
  .nav-on-hero.scrolled .nav-toggle { color: var(--color-white); }
}

/* === PHILOSOPHIE mobil: ruhige Karten mit Nummern + sanftes Einblenden (robust, KEIN Sticky) === */
@media (max-width: 768px) {
  .philosophy { background: var(--color-white); }
  .philosophy .services-header { margin: 0 0 28px; padding: 0; text-align: center; }
  .philosophy .section-eyebrow { color: var(--color-green-dark); }
  .philosophy .services-header h2 { color: var(--color-text); font-size: clamp(1.6rem, 6vw, 2.1rem); line-height: 1.18; }
  .philosophy .services-header h2 em { color: var(--color-green-dark); }

  .philosophy-grid { counter-reset: phil; display: block; }
  .philosophy-item {
    counter-increment: phil;
    background: var(--color-white);
    border: 1px solid var(--color-sand);
    border-radius: 16px;
    padding: 22px 22px 26px;
    margin-bottom: 14px;
    box-shadow: 0 8px 26px rgba(61, 43, 31, 0.05);
    text-align: left;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
  }
  .philosophy-item:last-child { margin-bottom: 0; }
  .philosophy-item.in-view { opacity: 1; transform: none; }
  .philosophy-item::before {
    content: counter(phil, decimal-leading-zero);
    display: block;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    line-height: 1;
    font-weight: 700;
    color: var(--color-green-dark);
    opacity: 0.5;
    margin-bottom: 16px;
  }
  .philosophy-item svg { display: none; }
  .philosophy-item h3 { color: var(--color-brown); font-size: 1.3rem; line-height: 1.2; margin-bottom: 6px; }
  .philosophy-item p { color: var(--color-text-soft); font-size: 0.95rem; line-height: 1.55; margin: 0; }
}
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .philosophy-item { opacity: 1; transform: none; transition: none; }
}

/* === FOOTER mobil: radikal reduziert (nur Logo + Rechtliches + Copyright) === */
@media (max-width: 768px) {
  .footer { padding: 30px 0 64px; }
  .footer-grid { display: block; margin-bottom: 0; gap: 0; }
  .footer-grid > div:not(.footer-brand) { display: none; }
  .footer-brand { text-align: center; margin: 0; }
  .footer-brand p { display: none; }
  .footer-brand img { height: 38px; margin: 0 auto; display: block; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
    font-size: 0.78rem;
    padding-top: 18px;
    margin-top: 20px;
  }
}

/* === BACK-TO-TOP (nur Mobil – dort scrollt die Nav/Logo weg) === */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--color-green);
  color: var(--color-bark);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 90;
  box-shadow: 0 6px 20px rgba(61, 43, 31, 0.22);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-smooth);
}
.to-top svg { width: 20px; height: 20px; }
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
@media (max-width: 768px) { .to-top { display: flex; } }

/* === powered by RufNetz (dezent, Hero + Footer) === */
.powered-by { display: block; margin-top: 38px; font-size: 0.8rem; letter-spacing: 0.04em; color: rgba(255, 252, 247, 0.5); transition: color var(--duration-fast) var(--ease-smooth); }
.powered-by strong { font-weight: 600; font-size: 1rem; color: rgba(255, 252, 247, 0.82); letter-spacing: 0; margin-left: 2px; }
.powered-by:hover, .powered-by:hover strong { color: var(--color-green); }
.footer-bottom .powered-by { margin-top: 0; margin-bottom: 4px; }
