  /* ============================================================
     DESIGN TOKENS
     ============================================================ */
  :root {
    --c-primary:       #5B7A3D;
    --c-primary-dark:  #3D5728;
    --c-primary-light: #EFF5E8;
    --c-accent:        #C8923A;
    --c-accent-dark:   #A87230;
    --c-text:          #2A2010;
    --c-text-mid:      #4A5828;
    --c-text-light:    #5F6E40;
    --c-bg:            #FFFFFF;
    --c-bg-soft:       #F5F2E8;
    --c-bg-tint:       #EDF0E5;
    --c-border:        #D8E0C8;

    --r-sm:  6px;
    --r-md:  12px;
    --r-lg:  18px;
    --r-xl:  24px;
    --r-full: 999px;

    --shadow-sm:   0 1px 4px rgba(61,87,40,.08);
    --shadow-md:   0 4px 16px rgba(61,87,40,.12);
    --shadow-lg:   0 8px 32px rgba(61,87,40,.18);
    --shadow-hover:0 12px 40px rgba(61,87,40,.22);

    --ease: cubic-bezier(.22,.61,.36,1);
    --t: .25s;

    --font-sans: 'Inter Variable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    --font-heading: 'Fraunces Variable', Georgia, 'Times New Roman', serif;
  }

  /* ============================================================
     RESET & BASE
     ============================================================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 16px; }
  @media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
  }
  /* Anker-Ziele nicht unter der Sticky-Nav (68px) verstecken */
  section[id] { scroll-margin-top: 84px; }
  body {
    font-family: var(--font-sans);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }

  /* ============================================================
     TYPOGRAPHY
     ============================================================ */
  h1, h2, h3 {
    font-family: var(--font-heading);
    font-optical-sizing: auto;
    color: var(--c-text);
    line-height: 1.2;
    letter-spacing: -.015em;
  }
  h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
  h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
  h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; font-family: var(--font-sans); }
  p  { color: var(--c-text-mid); line-height: 1.75; }

  /* ============================================================
     UTILITIES
     ============================================================ */
  .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .section { padding: 5rem 0; }
  .section--alt { background: var(--c-bg-soft); }
  .label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-primary-dark);
    margin-bottom: .75rem;
  }
  .label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--c-primary);
    vertical-align: middle;
    margin-right: .5em;
    border-radius: 2px;
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8em 1.8em;
    border-radius: var(--r-full);
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background var(--t) var(--ease),
                transform var(--t) var(--ease),
                box-shadow var(--t) var(--ease);
    text-decoration: none;
    white-space: nowrap;
  }
  .btn--primary { background: var(--c-primary); color: #fff; }
  .btn--primary:hover { background: var(--c-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn--accent { background: var(--c-accent); color: var(--c-text); }
  .btn--accent:hover { background: #D89F45; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,146,58,.35); }
  .btn--ghost { background: transparent; color: var(--c-primary-dark); border: 2px solid var(--c-primary); }
  .btn--ghost:hover { background: var(--c-primary-light); transform: translateY(-2px); }

  /* Focus (WCAG) */
  a:focus-visible, button:focus-visible, .btn:focus-visible {
    outline: 3px solid var(--c-accent);
    outline-offset: 3px;
    border-radius: var(--r-sm);
  }

  /* ============================================================
     REVEAL ANIMATIONS — JS-enhanced, visible by default
     ============================================================ */
  /* Reveal: CSS-only mit IntersectionObserver-Klasse */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  /* Fallback: wenn kein JS, alles sichtbar */
  .no-js .reveal { opacity: 1; transform: none; transition: none; }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  }

  /* ============================================================
     SKIP LINK
     ============================================================ */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--c-primary);
    color: #fff;
    padding: .6em 1.2em;
    border-radius: 0 0 var(--r-md) var(--r-md);
    font-weight: 600;
    z-index: 9999;
    transition: top .2s;
  }
  .skip-link:focus { top: 0; }

  /* ============================================================
     PREVIEW BANNER
     ============================================================ */
  .preview-bar {
    background: var(--c-text);
    color: rgba(255,255,255,.75);
    text-align: center;
    padding: .45rem 1rem;
    font-size: .78rem;
    letter-spacing: .04em;
  }
  .preview-bar strong { color: #fff; margin-right: .5em; }

  /* ============================================================
     NAVIGATION
     ============================================================ */
  /* Sticky auf dem <header>: .site-nav allein könnte nur innerhalb
     des gleich hohen Parents kleben (= gar nicht) */
  header { position: sticky; top: 0; z-index: 100; }
  .site-nav {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
    transition: box-shadow var(--t);
  }
  .site-nav.scrolled { box-shadow: var(--shadow-md); }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 1rem;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-shrink: 0;
  }
  .nav-logo-img { height: 38px; width: auto; flex-shrink: 0; }
  .nav-logo-text strong { display: block; font-size: .95rem; font-weight: 700; color: var(--c-text); line-height: 1.1; }
  .nav-logo-text span { font-size: .72rem; color: var(--c-text-light); font-weight: 400; }
  .nav-menu { display: flex; align-items: center; gap: .25rem; }
  .nav-menu a {
    padding: .45em .9em;
    border-radius: var(--r-full);
    font-size: .875rem;
    font-weight: 500;
    color: var(--c-text-mid);
    transition: color var(--t), background var(--t);
  }
  .nav-menu a:hover { color: var(--c-primary); background: var(--c-primary-light); }
  .nav-cta { margin-left: .5rem; }
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
  }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-mobile {
    display: none;
    flex-direction: column;
    gap: .25rem;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--c-border);
  }
  .nav-mobile a {
    padding: .75em 1em;
    border-radius: var(--r-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-text-mid);
    transition: color var(--t), background var(--t);
  }
  .nav-mobile a:hover { color: var(--c-primary); background: var(--c-primary-light); }
  .nav-mobile .btn { margin-top: .5rem; justify-content: center; }
  .nav-mobile.open { display: flex; }

  /* ============================================================
     HERO
     ============================================================ */
  .hero {
    position: relative;
    background: var(--c-bg-soft);
    overflow: hidden;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3.5rem;
    align-items: center;
    padding: 4.5rem 0;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--c-primary-light);
    color: var(--c-primary-dark);
    padding: .4em 1em;
    border-radius: var(--r-full);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--c-border);
  }
  .hero-badge-dot {
    width: 7px; height: 7px;
    background: var(--c-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
  }
  .hero h1 { margin-bottom: 1.25rem; color: var(--c-text); }
  .hero h1 span { color: var(--c-accent-dark); }
  .hero-desc {
    font-size: 1.12rem;
    color: var(--c-text-mid);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  .hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .hero-trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
  .hero-trust-item {
    display: flex; align-items: center; gap: .45rem;
    font-size: .85rem; color: var(--c-text-mid); font-weight: 500;
  }
  .hero-trust-item svg { color: var(--c-primary); flex-shrink: 0; }

  /* Hero photo */
  .hero-visual { position: relative; }
  .hero-photo {
    width: 100%;
    aspect-ratio: 5 / 6;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-pill {
    position: absolute;
    bottom: -1.1rem; left: 1.25rem;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: .8rem 1.05rem;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: .7rem;
  }
  .hero-pill-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--c-primary-light); color: var(--c-primary-dark);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .hero-pill-icon svg { width: 20px; height: 20px; }
  .hero-pill strong { display: block; font-size: .9rem; color: var(--c-text); line-height: 1.2; }
  .hero-pill span { font-size: .78rem; color: var(--c-text-light); }

  /* Btn-Varianten für dunkle Sektionen (z. B. CTA) */
  .btn--white { background: #fff; color: var(--c-primary); }
  .btn--white:hover { background: #F7F5EC; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
  .btn--outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
  .btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

  /* ============================================================
     LEISTUNGEN — with images
     ============================================================ */
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 3rem;
  }
  .service-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
    display: flex;
    flex-direction: column;
    flex: 1 1 260px;
    max-width: 300px;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--c-primary);
  }
  .service-card-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
  }
  .service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
  }
  .service-card:hover .service-card-img img {
    transform: scale(1.05);
  }
  .service-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex: 1;
  }
  .service-icon {
    width: 42px; height: 42px;
    border-radius: var(--r-md);
    background: var(--c-primary-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background var(--t);
  }
  .service-icon svg { width: 22px; height: 22px; color: var(--c-primary); }
  .service-card:hover .service-icon { background: var(--c-primary); }
  .service-card:hover .service-icon svg { color: #fff; }
  .service-card h3 { font-size: 1rem; font-weight: 700; color: var(--c-text); line-height: 1.3; }
  .service-card p { font-size: .85rem; color: var(--c-text-light); line-height: 1.6; flex: 1; }
  .service-link {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .825rem; font-weight: 600; color: var(--c-primary);
    transition: gap var(--t);
  }
  .service-card:hover .service-link { gap: .55rem; }

  /* ============================================================
     ÜBER UNS
     ============================================================ */
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .about-visual { position: relative; }
  .about-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-stats {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    display: flex;
    gap: .75rem;
  }
  .about-stat {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 100px;
  }
  .about-stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: .25rem;
  }
  .about-stat-label { font-size: .75rem; color: var(--c-text-light); line-height: 1.3; }
  .about-content { padding-right: 1rem; }
  .about-content h2 { margin-bottom: 1.25rem; }
  .about-content p { margin-bottom: 1rem; }
  .about-features { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
  .about-feature { display: flex; align-items: flex-start; gap: .75rem; }
  .about-feature-icon {
    width: 28px; height: 28px;
    background: var(--c-primary-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: .1rem;
  }
  .about-feature-icon svg { width: 14px; height: 14px; color: var(--c-primary); }
  .about-feature p { font-size: .9rem; margin: 0; color: var(--c-text-mid); }

  /* ============================================================
     STANDORTE
     ============================================================ */
  .locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .location-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
  }
  .location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .location-img {
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  .location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
  }
  .location-card:hover .location-img img { transform: scale(1.03); }
  .location-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(42,32,16,.6), transparent);
    padding: 1.5rem 1.5rem .75rem;
  }
  .location-body { padding: 1.5rem; }
  .location-tag {
    display: inline-block;
    background: var(--c-primary-light);
    color: var(--c-primary-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .2em .7em;
    border-radius: var(--r-full);
    margin-bottom: .75rem;
  }
  .location-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--c-text); margin-bottom: 1rem; }
  .location-details { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
  .location-detail {
    display: flex; align-items: flex-start; gap: .65rem;
    font-size: .875rem; color: var(--c-text-mid);
  }
  .location-detail svg { width: 16px; height: 16px; color: var(--c-primary); flex-shrink: 0; margin-top: .15em; }
  .location-detail a { color: var(--c-primary); font-weight: 600; transition: color var(--t); }
  .location-detail a:hover { color: var(--c-primary-dark); }
  .location-hours {
    background: var(--c-bg-soft);
    border-radius: var(--r-md);
    padding: .9rem 1rem;
    font-size: .825rem;
  }
  .location-hours-title {
    font-weight: 600; color: var(--c-text); margin-bottom: .4rem;
    display: flex; align-items: center; gap: .4rem;
  }
  .location-hours-title svg { width: 14px; height: 14px; color: var(--c-primary); }
  .location-hours-row { display: flex; justify-content: space-between; color: var(--c-text-mid); padding: .15rem 0; }

  /* ============================================================
     CTA SECTION
     ============================================================ */
  .cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
  }
  .location-soon { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; background: var(--c-bg-tint); color: var(--c-primary-dark); }
  .location-soon svg { width: 34px; height: 34px; opacity: .65; }
  .location-soon span { font-size: .85rem; font-weight: 600; letter-spacing: .02em; }

  .cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3D5728 0%, #5B7A3D 100%);
  }
  .cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .cta-section h2 { color: #fff; margin-bottom: 1rem; }
  .cta-section p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .cta-contact-row {
    display: flex; gap: 2rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap;
  }
  .cta-contact-item {
    display: flex; align-items: center; gap: .6rem;
    color: rgba(255,255,255,.85); font-size: .9rem;
  }
  .cta-contact-item svg { width: 18px; height: 18px; opacity: .7; }
  .cta-contact-item a { color: #fff; font-weight: 600; transition: opacity var(--t); }
  .cta-contact-item a:hover { opacity: .8; }

  /* ============================================================
     FOOTER
     ============================================================ */
  .site-footer {
    background: var(--c-text);
    color: rgba(255,255,255,.7);
    padding: 3.5rem 0 2rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-logo { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
  /* Logo auf weißem Chip — die dunkelblauen Wellen wären auf dem
     dunklen Footer sonst kaum sichtbar */
  .footer-logo-img {
    background: #fff;
    border-radius: var(--r-md);
    padding: .4rem .65rem;
    display: inline-flex; align-items: center;
  }
  .footer-logo-img img { height: 24px; width: auto; display: block; }
  .footer-logo strong { font-size: .95rem; font-weight: 700; color: #fff; }
  .footer-about { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.55); }
  .footer-col-title {
    font-size: .75rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: 1rem;
  }
  .footer-links { display: flex; flex-direction: column; gap: .5rem; }
  .footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--t); }
  .footer-links a:hover { color: #fff; }
  .footer-contact-item {
    display: flex; align-items: flex-start; gap: .6rem;
    margin-bottom: .6rem; font-size: .875rem; color: rgba(255,255,255,.6);
  }
  .footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: .2em; opacity: .6; }
  .footer-contact-item a { color: rgba(255,255,255,.75); transition: color var(--t); }
  .footer-contact-item a:hover { color: #fff; }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.66);
  }
  .footer-bottom-links { display: flex; gap: 1.5rem; }
  .footer-bottom-links a { color: rgba(255,255,255,.72); transition: color var(--t); }
  .footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

  /* ============================================================
     BEWERTUNGEN / TRUST
     ============================================================ */
  .reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
  .google-badge {
    display: inline-flex; align-items: center; gap: .85rem;
    background: var(--c-bg); border: 1px solid var(--c-border);
    border-radius: var(--r-lg); padding: .7rem 1.1rem; box-shadow: var(--shadow-sm);
  }
  .google-badge-score { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 700; color: var(--c-text); line-height: 1; }
  .google-badge .stars { color: #E8A93A; }
  .google-badge small { color: var(--c-text-light); font-size: .78rem; line-height: 1.3; display: block; margin-top: .2rem; }
  .stars { display: inline-flex; gap: 2px; }
  .stars svg { width: 16px; height: 16px; }
  .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
  .review-card {
    background: var(--c-bg); border: 1px solid var(--c-border);
    border-radius: var(--r-xl); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
    box-shadow: var(--shadow-sm); transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
  }
  .review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .review-card .stars { color: #E8A93A; }
  .review-card p { color: var(--c-text-mid); font-size: .95rem; line-height: 1.7; flex: 1; }
  .review-author { display: flex; align-items: center; gap: .75rem; }
  .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--c-primary-light); color: var(--c-primary-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
  .review-author strong { display: block; font-size: .9rem; color: var(--c-text); }
  .review-author span { font-size: .78rem; color: var(--c-text-light); }

  /* ============================================================
     KARRIERE / RECRUITING
     ============================================================ */
  .career-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
  .career-text h2 { margin-bottom: 1.25rem; }
  .career-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin: 1.75rem 0 .5rem; }
  .benefit { display: flex; align-items: flex-start; gap: .7rem; background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: .85rem 1rem; }
  .benefit svg { width: 20px; height: 20px; color: var(--c-primary); flex-shrink: 0; margin-top: .1rem; }
  .benefit span { font-size: .9rem; color: var(--c-text-mid); font-weight: 500; }
  .career-jobs { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-xl); padding: 1.75rem; box-shadow: var(--shadow-md); }
  .career-jobs h3 { font-family: var(--font-sans); font-size: 1rem; margin-bottom: .5rem; }
  .job-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--c-border); }
  .job-row-info strong { display: block; font-size: .95rem; color: var(--c-text); }
  .job-row-info span { font-size: .8rem; color: var(--c-text-light); }
  .job-row .btn { padding: .5em 1.1em; font-size: .82rem; }
  .career-note { font-size: .82rem; color: var(--c-text-light); margin-top: 1rem; text-align: center; }

  /* ============================================================
     KONTAKTFORMULAR
     ============================================================ */
  .contact-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: start; }
  .contact-form { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-xl); padding: 2rem; box-shadow: var(--shadow-md); }
  .cf-toggle { display: flex; gap: .5rem; margin-bottom: 1.25rem; }
  .cf-toggle button { flex: 1; padding: .65em 1em; border-radius: var(--r-md); border: 1.5px solid var(--c-border); background: var(--c-bg); font-weight: 600; font-size: .9rem; cursor: pointer; color: var(--c-text-mid); transition: background var(--t), color var(--t), border-color var(--t); font-family: var(--font-sans); }
  .cf-toggle button.active { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
  .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cf-field { margin-bottom: 1rem; }
  .cf-field label { display: block; font-size: .85rem; font-weight: 500; color: var(--c-text-mid); margin-bottom: .35rem; }
  .contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form input[type="date"], .contact-form select, .contact-form textarea { width: 100%; border: 2px solid var(--c-border); border-radius: var(--r-md); padding: .65em .85em; font-size: .95rem; font-family: var(--font-sans); color: var(--c-text); background: var(--c-bg); transition: border-color var(--t), box-shadow var(--t); }
  .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(91,122,61,.15); }
  .cf-neu { border: 1px dashed var(--c-border); border-radius: var(--r-lg); padding: 1.25rem; margin: 0 0 1rem; background: var(--c-bg-tint); }
  .cf-neu-title { font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--c-primary-dark); margin-bottom: 1rem; }
  .cf-radio { display: flex; gap: 1.5rem; margin-top: .35rem; }
  .cf-radio label { display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; color: var(--c-text-mid); font-weight: 400; margin: 0; }
  /* Checkbox-Gruppe: fieldset/legend statt lose Labels — Screenreader
     lesen die Frage sonst nicht zu den einzelnen Optionen vor (WCAG/BFSG) */
  .cf-fieldset { border: none; padding: 0; margin: 0 0 1rem; }
  .cf-legend { display: block; float: left; width: 100%; font-size: .85rem; font-weight: 500; color: var(--c-text-mid); margin-bottom: .5rem; padding: 0; }
  .cf-legend small { font-weight: 400; color: var(--c-text-light); }
  .cf-checks { clear: both; display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1rem; }
  .cf-checks label {
    display: flex; align-items: flex-start; gap: .5rem;
    font-size: .88rem; color: var(--c-text-mid); font-weight: 400;
    line-height: 1.4; margin: 0; cursor: pointer;
  }
  .cf-checks input { margin-top: .18rem; flex-shrink: 0; }
  .cf-check-wide { grid-column: 1 / -1; padding-top: .5rem; border-top: 1px solid var(--c-border); }
  /* Datei-Upload: natives input bleibt fokussierbar (nur visuell versteckt),
     das Label ist der sichtbare Button — sonst wäre der Upload per Tastatur tot */
  .cf-upload { position: relative; }
  .cf-upload input[type="file"] {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }
  .cf-upload-btn {
    display: flex; align-items: center; justify-content: center; gap: .55rem;
    width: 100%; padding: .8em 1.2em;
    border: 2px dashed var(--c-border); border-radius: var(--r-md);
    background: var(--c-bg); color: var(--c-primary-dark);
    font-size: .9rem; font-weight: 600; cursor: pointer;
    transition: border-color var(--t), background var(--t);
  }
  .cf-upload-btn:hover { border-color: var(--c-primary); background: var(--c-primary-light); }
  .cf-upload input[type="file"]:focus-visible + .cf-upload-btn {
    outline: 3px solid var(--c-accent); outline-offset: 3px;
  }
  .cf-upload-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .cf-upload-hint { font-size: .78rem; color: var(--c-text-light); margin: .5rem 0 0; line-height: 1.5; }
  .cf-files { list-style: none; margin: .75rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
  .cf-file {
    display: flex; align-items: center; gap: .6rem;
    background: var(--c-bg-tint); border: 1px solid var(--c-border);
    border-radius: var(--r-md); padding: .5rem .7rem; font-size: .85rem;
  }
  .cf-file > svg { width: 16px; height: 16px; color: var(--c-primary); flex-shrink: 0; }
  /* Name + Status umbrechen gemeinsam: sonst drückt eine lange Fehlermeldung
     den Dateinamen auf schmalen Displays zu einer Buchstabensäule zusammen */
  .cf-file-info { flex: 1; min-width: 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: .1rem .6rem; }
  .cf-file-name { flex: 1 1 auto; min-width: 0; color: var(--c-text); word-break: break-word; line-height: 1.35; }
  .cf-file-meta { color: var(--c-text-light); font-size: .78rem; flex-shrink: 0; }
  .cf-file-del {
    background: none; border: none; cursor: pointer; padding: .25rem;
    color: var(--c-text-light); border-radius: var(--r-sm); line-height: 0; flex-shrink: 0;
  }
  .cf-file-del svg { width: 15px; height: 15px; display: block; }
  .cf-file-del:hover { color: #A4332A; background: #FBEAEA; }
  .cf-file--err { background: #FBEAEA; border-color: #E9C6C2; }
  .cf-file--err > svg, .cf-file--err .cf-file-name, .cf-file--err .cf-file-meta { color: #A4332A; }
  .cf-files-summe { font-size: .78rem; color: var(--c-text-light); margin: .5rem 0 0; }
  .cf-files-summe:empty { margin: 0; }
  .cf-files-summe--err { color: #A4332A; font-weight: 600; }

  .cf-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: var(--c-text-light); line-height: 1.5; margin: .25rem 0 1.25rem; cursor: pointer; }
  .cf-consent input { margin-top: .2rem; flex-shrink: 0; }
  .cf-result { margin-top: 1rem; border-radius: var(--r-md); padding: .8rem 1rem; font-size: .9rem; line-height: 1.5; display: none; }
  .cf-result.show { display: block; }
  .cf-result.err { background: #FBEAEA; color: #A4332A; }
  .cf-result.ok { background: var(--c-primary-light); color: var(--c-primary-dark); }
  .contact-aside h3 { font-size: 1.05rem; margin-bottom: 1.25rem; }
  .contact-aside .ci { display: flex; gap: .7rem; margin-bottom: 1.1rem; font-size: .92rem; color: var(--c-text-mid); line-height: 1.5; }
  .contact-aside .ci svg { width: 18px; height: 18px; color: var(--c-primary); flex-shrink: 0; margin-top: .2em; }
  .contact-aside .ci a { color: var(--c-primary); font-weight: 600; }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 1024px) {
    .locations-grid { grid-template-columns: 1fr; }
    .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-content { padding-right: 0; }
    .about-stats { position: static; margin-top: 1rem; justify-content: flex-start; }
  }
  @media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 0 3.5rem; }
    .hero-photo { aspect-ratio: 4 / 3; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .nav-menu, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-logo-img { height: 30px; }
    .career-inner { grid-template-columns: 1fr; gap: 2rem; }
    .career-benefits { grid-template-columns: 1fr; }
    .reviews-head { align-items: flex-start; }
    .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form { padding: 1.5rem; }
    .cf-row { grid-template-columns: 1fr; }
    .cf-checks { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .nav-logo-img { height: 26px; }
    .nav-logo-text span { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  /* ============================================================
     RICH-TEXT-INHALT (Detailseiten: Leistung / Standort / Über-uns)
     Stellt Listen-Punkte & Abstände für redaktionellen Editor-Inhalt
     wieder her — der globale Reset blendet Listenpunkte aus.
     ============================================================ */
  .et-richtext { max-width: 760px; }
  .et-richtext > *:first-child { margin-top: 0; }
  .et-richtext p { margin: 0 0 1.1em; line-height: 1.75; color: var(--c-text-mid); }
  .et-richtext h2,
  .et-richtext h3 { color: var(--c-primary-dark); line-height: 1.25; }
  .et-richtext h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 1.9em 0 .6em; }
  .et-richtext h3 { font-size: 1.15rem; margin: 1.5em 0 .5em; }
  .et-richtext ul { list-style: disc;    padding-left: 1.4em; margin: 0 0 1.2em; }
  .et-richtext ol { list-style: decimal; padding-left: 1.5em; margin: 0 0 1.2em; }
  .et-richtext li { margin-bottom: .45em; line-height: 1.6; color: var(--c-text-mid); }
  .et-richtext li::marker { color: var(--c-accent); }
  .et-richtext a { color: var(--c-primary-dark); text-decoration: underline; text-underline-offset: 2px; }
  .et-richtext a:hover { color: var(--c-accent-dark); }
  .et-richtext strong { color: var(--c-text); }
  .et-richtext blockquote {
    border-left: 3px solid var(--c-accent);
    padding-left: 1.1em; margin: 1.4em 0; color: var(--c-text-light); font-style: italic;
  }

  /* ============================================================
     KONTAKT-/ANMELDEFORMULAR (Contact Form 7)
     Styling für das über [contact-form-7] eingebundene Formular.
     ============================================================ */
  .contact-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; color: var(--c-text); }
  .contact-form .et-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
  .contact-form p { margin: 0 0 1.1rem; }
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form input[type=tel],
  .contact-form input[type=date],
  .contact-form input[type=number],
  .contact-form textarea,
  .contact-form select {
    width: 100%; padding: .7rem .9rem; font: inherit; color: var(--c-text);
    background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md);
    transition: border-color .15s, box-shadow .15s;
  }
  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    outline: none; border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(91,122,61,.15);
  }
  .contact-form textarea { min-height: 130px; resize: vertical; }
  .contact-form .wpcf7-checkbox .wpcf7-list-item { display: block; margin: .35rem 0 0; }
  .contact-form .wpcf7-checkbox .wpcf7-list-item label { display: flex; align-items: baseline; gap: .5rem; font-weight: 400; }
  .contact-form input[type=file] {
    width: 100%; padding: .6rem; background: var(--c-bg-soft);
    border: 1px dashed var(--c-border); border-radius: var(--r-md); cursor: pointer;
  }
  .contact-form .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
  .contact-form .wpcf7-acceptance label { display: flex; align-items: baseline; gap: .55rem; font-weight: 400; font-size: .9rem; line-height: 1.5; color: var(--c-text-mid); }
  .contact-form .wpcf7-submit {
    background: var(--c-primary); color: #fff; border: 0; cursor: pointer;
    padding: .9rem 1.8rem; border-radius: var(--r-full); font-weight: 600; font-size: 1rem;
    transition: background .15s, transform .15s, box-shadow .15s;
  }
  .contact-form .wpcf7-submit:hover { background: var(--c-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .contact-form .wpcf7-not-valid-tip { color: #b32d2e; font-size: .82rem; font-weight: 400; }
  .contact-form .wpcf7-response-output {
    border-radius: var(--r-md); padding: .8rem 1rem !important; margin: 1rem 0 0 !important; font-size: .9rem;
  }
  @media (max-width: 600px) {
    .contact-form .et-form-grid { grid-template-columns: 1fr; }
  }
