    /* ============================================================
       STORE CONFIG — Hier werden pro Store die CSS-Variablen gesetzt
       (Backup falls JS deaktiviert ist)
       ============================================================ */
    :root {
      --navy:        #0A2342;
      --navy-light:  #0D2D56;
      --navy-60:     rgba(10,35,66,.6);
      --navy-20:     rgba(10,35,66,.12);
      --accent:      #C43A0E;
      --accent-dark: #8E2908;
      --wa-green:    #25D366;
      --wa-dark:     #1EA952;
      --bg:          #F5F4F0;
      --bg-white:    #FFFFFF;
      --bg-section:  #F0EEE8;
      --text:        #1A1A1A;
      --text-muted:  #6B6B6B;
      --border:      #E0DDD8;

      --h1: clamp(2.2rem, 5.5vw, 4.2rem);
      --h2: clamp(1.6rem, 3.5vw, 2.5rem);
      --h3: clamp(1.15rem, 2vw, 1.4rem);
      --body: 1rem;
      --small: 0.875rem;

      --lh-heading: 1.1;
      --lh-body: 1.6;
      --ls-heading: -0.025em;
      --ls-caps: 0.08em;

      --radius: 3px;
      --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
      --shadow:    0 4px 16px rgba(0,0,0,.1);
      --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
      --transition: 0.22s ease;
    }

    /* ===== Reset ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }
    body {
      font-family: 'Work Sans', sans-serif;
      font-size: var(--body);
      line-height: var(--lh-body);
      color: var(--text);
      background: var(--bg);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }
    @media (min-width: 768px) { body { padding-bottom: 0; } }

    h1,h2,h3,h4 {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      line-height: var(--lh-heading);
      letter-spacing: var(--ls-heading);
      color: var(--navy);
    }
    h1 { font-size: var(--h1); }
    h2 { font-size: var(--h2); }
    h3 { font-size: var(--h3); }
    p  { line-height: var(--lh-body); color: var(--text); }
    a  { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ===== Container ===== */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    }

    /* ===== Buttons ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      font-family: 'Work Sans', sans-serif;
      font-weight: 600;
      font-size: .9375rem;
      letter-spacing: .01em;
      padding: .8125rem 1.625rem;
      border-radius: var(--radius);
      border: 2px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      min-height: 48px;
      transition: transform var(--transition), box-shadow var(--transition),
                  background var(--transition), color var(--transition),
                  border-color var(--transition);
    }
    .btn--primary {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
    }
    @media (hover:hover) {
      .btn--primary:hover {
        background: var(--accent-dark);
        border-color: var(--accent-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(232,78,27,.3);
      }
    }
    .btn--outline {
      background: transparent;
      color: var(--navy);
      border-color: var(--navy);
    }
    @media (hover:hover) {
      .btn--outline:hover {
        background: var(--navy);
        color: #fff;
        transform: translateY(-2px);
      }
    }
    .btn--white {
      background: #fff;
      color: var(--navy);
      border-color: #fff;
    }
    @media (hover:hover) {
      .btn--white:hover {
        background: var(--bg);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
      }
    }
    .btn--wa {
      background: var(--wa-green);
      color: #0D3B1F;
      border-color: var(--wa-green);
    }
    @media (hover:hover) {
      .btn--wa:hover {
        background: var(--wa-dark);
        border-color: var(--wa-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37,211,102,.3);
      }
    }
    .btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

    /* ===== Label / Tag ===== */
    .label {
      display: inline-block;
      font-family: 'Work Sans', sans-serif;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: var(--ls-caps);
      text-transform: uppercase;
      color: var(--navy-60);
    }

    /* ===== Hours Badge ===== */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: .375rem;
      font-family: 'Work Sans', sans-serif;
      font-size: .8125rem;
      font-weight: 600;
      padding: .375rem .875rem;
      border-radius: 100px;
    }
    .badge::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      opacity: .7;
    }
    .badge--open  { background: #14532D; color: #fff; }
    .badge--closed{ background: #7F1D1D; color: #fff; }

    /* ===== Gallery Section ===== */
    .gallery-section { background: var(--bg-white); }
    .gallery-header {
      display: flex;
      flex-direction: column;
      gap: .5rem;
      margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
    @media (min-width: 640px) {
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 1024px) {
      .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
      }
    }
    .gallery-item {
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--bg-section);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s cubic-bezier(.16,1,.3,1);
    }
    @media (hover:hover) {
      .gallery-item:hover img { transform: scale(1.04); }
    }
    .gallery-item--tall { grid-row: span 2; }
    .gallery-item--wide { grid-column: span 2; }

    @media (max-width: 1023px) {
      .gallery-item { aspect-ratio: 4/3; }
      .gallery-item--tall { aspect-ratio: 4/3; grid-row: auto; }
      .gallery-item--wide { aspect-ratio: 4/3; grid-column: auto; }
    }

    /* Team strip */
    .team-strip {
      display: flex;
      gap: 1.25rem;
      margin-top: clamp(1.5rem, 3vw, 2rem);
      align-items: center;
    }
    .team-photo {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 3px solid var(--bg-section);
      box-shadow: var(--shadow-sm);
    }
    .team-caption { font-size: .875rem; color: var(--text-muted); }
    .team-caption strong { display: block; color: var(--navy); font-weight: 600; }

    /* ===== Section Spacing ===== */
    .section { padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3rem, 7vw, 6rem); }
    .section--sm { padding-top: clamp(2rem, 4vw, 3.5rem); padding-bottom: clamp(2rem, 4vw, 3.5rem); }
    .section--flush { padding-top: 0; padding-bottom: 0; }


    /* ============================================================
       STICKY MOBILE CTA
       ============================================================ */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 300;
      background: var(--accent);
      padding: .875rem 1.5rem;
      padding-bottom: calc(.875rem + env(safe-area-inset-bottom, 0px));
      box-shadow: 0 -4px 20px rgba(0,0,0,.2);
    }
    .sticky-cta a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .625rem;
      color: #fff;
      font-family: 'Work Sans', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      min-height: 44px;
    }
    @media (max-width: 767px) { .sticky-cta { display: block; } }


    /* ============================================================
       HEADER
       ============================================================ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 200;
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: .875rem 0;
      padding-top: calc(.875rem + env(safe-area-inset-top, 0px));
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .header-brand { display: flex; flex-direction: column; gap: 1px; }
    .header-logo {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--navy);
      letter-spacing: -.01em;
      line-height: 1.2;
      text-transform: uppercase;
    }
    .header-sub {
      font-size: .7rem;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: .04em;
    }
    .header-right { display: flex; align-items: center; gap: .75rem; }
    .header-hours { display: none; }
    @media (min-width: 640px) { .header-hours { display: flex; } }


    /* ============================================================
       HERO
       ============================================================ */
    .hero {
      position: relative;
      background: var(--navy);
      min-height: clamp(460px, 72vw, 680px);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* Gradient Overlay */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(6,18,38,.92) 0%,
        rgba(6,18,38,.55) 45%,
        rgba(6,18,38,.12) 100%
      );
    }

    /* Accent-Streifen links */
    .hero-accent-line {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 5px;
      background: var(--accent);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: clamp(1.5rem, 4vw, 3rem);
      padding-bottom: clamp(2rem, 5vw, 3.5rem);
      max-width: 760px;
    }

    .hero-label {
      display: inline-block;
      font-family: 'Work Sans', sans-serif;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: var(--ls-caps);
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .hero h1 {
      color: #fff;
      font-size: clamp(1.9rem, 5vw, 3.6rem);
      line-height: 1.08;
      letter-spacing: -.03em;
      margin-bottom: .875rem;
      text-shadow: 0 2px 20px rgba(0,0,0,.4);
    }

    .hero-sub {
      font-size: clamp(.9375rem, 2vw, 1.125rem);
      color: rgba(255,255,255,.8);
      line-height: 1.5;
      margin-bottom: 1.5rem;
      max-width: 520px;
    }

    .hero-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 1.75rem;
    }

    .hero-address {
      display: flex;
      align-items: center;
      gap: .375rem;
      font-size: .875rem;
      color: rgba(255,255,255,.7);
      font-weight: 500;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
    }


    /* ============================================================
       TRUST BAR
       ============================================================ */
    .trust-bar {
      background: var(--navy);
      padding: 1.375rem 0;
      border-top: 3px solid var(--accent);
    }
    .trust-bar-inner {
      display: flex;
      align-items: stretch;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .trust-bar-inner::-webkit-scrollbar { display: none; }

    .trust-item {
      display: flex;
      align-items: center;
      gap: .625rem;
      padding: 0 1.5rem;
      border-right: 1px solid rgba(255,255,255,.12);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .trust-item:first-child { padding-left: 0; }
    .trust-item:last-child { border-right: none; }

    .trust-icon {
      width: 34px; height: 34px;
      background: rgba(255,255,255,.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--accent);
    }

    .trust-text { display: flex; flex-direction: column; gap: 1px; }
    .trust-text strong {
      font-family: 'Work Sans', sans-serif;
      font-size: .875rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.3;
    }
    .trust-text span {
      font-size: .75rem;
      color: rgba(255,255,255,.5);
    }


    /* ============================================================
       MANAGER TRUST
       ============================================================ */
    .manager-section {
      background: var(--bg-white);
      border-bottom: 1px solid var(--border);
    }
    .manager-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
    }
    @media (min-width: 768px) {
      .manager-grid {
        grid-template-columns: auto 1fr auto;
        gap: clamp(2rem, 4vw, 4rem);
      }
    }

    .manager-photo-wrap {
      display: flex;
      justify-content: center;
    }
    .manager-photo {
      /* ============================================================
         BILD-PLATZHALTER FILIALLEITER
         Ersetze diesen Block mit:
         <img src="img/manager.webp" alt="[Name]" width="160" height="160">
         ============================================================ */
      width: 140px;
      height: 140px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 4px solid var(--bg);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    @media (min-width: 768px) {
      .manager-photo { width: 120px; height: 120px; }
    }

    .manager-body { display: flex; flex-direction: column; gap: .75rem; }
    .manager-quote {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: clamp(1.05rem, 2.2vw, 1.35rem);
      color: var(--navy);
      line-height: 1.45;
    }
    .manager-name {
      font-size: .875rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: .02em;
    }
    .manager-name strong { color: var(--navy); }

    .manager-cta-wrap {
      display: flex;
      justify-content: center;
    }
    @media (min-width: 768px) {
      .manager-cta-wrap { justify-content: flex-end; }
    }


    /* ============================================================
       STORE DETAILS (Öffnungszeiten / Kontakt / Anfahrt)
       ============================================================ */
    .details-section { background: var(--bg); }
    .details-header {
      text-align: center;
      margin-bottom: clamp(2rem, 4vw, 3rem);
    }
    .details-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
    @media (min-width: 640px) {
      .details-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1024px) {
      .details-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .detail-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .detail-card--map { grid-column: 1 / -1; padding: 0; overflow: hidden; }
    @media (min-width: 1024px) {
      .detail-card--map { grid-column: auto; }
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: .625rem;
    }
    .card-icon {
      width: 36px; height: 36px;
      background: rgba(10,35,66,.07);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      flex-shrink: 0;
    }
    .card-title {
      font-family: 'Work Sans', sans-serif;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: var(--ls-caps);
      text-transform: uppercase;
      color: var(--navy-60);
    }

    /* Hours Table */
    .hours-table { width: 100%; }
    .hours-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1rem;
      padding: .4375rem 0;
      border-bottom: 1px solid var(--border);
      font-size: .9375rem;
      color: var(--text);
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row.today { font-weight: 600; color: var(--accent); }
    .hours-row.today .hours-time { font-variant-numeric: tabular-nums; }
    .hours-closed { color: var(--text-muted); font-style: italic; }

    /* Contact Card */
    .contact-list { display: flex; flex-direction: column; gap: 1rem; }
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
    }
    .contact-ico {
      width: 34px; height: 34px;
      background: rgba(10,35,66,.06);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      flex-shrink: 0;
      margin-top: 1px;
    }
    .contact-info { display: flex; flex-direction: column; gap: 2px; }
    .contact-label {
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--text-muted);
    }
    .contact-value { font-size: 1rem; font-weight: 500; color: var(--navy); }
    .contact-value a { transition: color var(--transition); }
    @media (hover:hover) { .contact-value a:hover { color: var(--accent); } }

    /* Map */
    .map-frame {
      display: block;
      width: 100%;
      height: 280px;
      border: none;
    }
    @media (min-width: 1024px) { .map-frame { height: 100%; min-height: 320px; } }
    .map-footer {
      padding: 1rem 1.25rem;
      background: var(--bg-white);
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .875rem;
      color: var(--text-muted);
    }
    .map-footer svg { color: var(--navy); flex-shrink: 0; }


    /* ============================================================
       SERVICES
       ============================================================ */
    .services-section { background: var(--navy); }
    .services-section h2 { color: #fff; }
    .services-header {
      display: flex;
      flex-direction: column;
      gap: .75rem;
      margin-bottom: clamp(2rem, 4vw, 3rem);
    }
    .services-header .label { color: rgba(255,255,255,.45); }
    .services-header p {
      color: rgba(255,255,255,.65);
      max-width: 520px;
      font-size: .9375rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      overflow: hidden;
    }
    @media (min-width: 640px) {
      .services-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 1024px) {
      .services-grid { grid-template-columns: repeat(4, 1fr); }
    }

    .service-tile {
      background: rgba(255,255,255,.04);
      padding: 1.625rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: .75rem;
      transition: background var(--transition);
    }
    @media (hover:hover) {
      .service-tile:hover { background: rgba(255,255,255,.09); }
    }

    .service-icon {
      width: 44px; height: 44px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }
    .service-name {
      font-family: 'Work Sans', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      color: #fff;
      line-height: 1.3;
    }
    .service-desc {
      font-size: .8125rem;
      color: rgba(255,255,255,.5);
      line-height: 1.5;
    }


    /* ============================================================
       PROVIDER LOGOS
       ============================================================ */
    .providers-section { background: var(--bg-white); }
    .providers-header { text-align: center; margin-bottom: 2rem; }
    .providers-header h2 { margin-bottom: .5rem; }
    .providers-header p { color: var(--text-muted); font-size: .9375rem; }

    /* Provider Logo Cards */
    .providers-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .prov-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .625rem;
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      min-width: 110px;
      flex: 0 1 140px;
      transition: box-shadow var(--transition), transform var(--transition);
    }
    @media (hover:hover) {
      .prov-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-2px);
      }
    }
    .prov-logo { display: block; height: 44px; width: auto; max-width: 140px; object-fit: contain; }
    .prov-name {
      font-family: 'Work Sans', sans-serif;
      font-size: .75rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: .03em;
    }


    /* ============================================================
       REVIEWS
       ============================================================ */
    .reviews-section { background: var(--bg-section); }
    .reviews-header {
      display: flex;
      flex-direction: column;
      gap: .5rem;
      margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
    }
    @media (min-width: 768px) {
      .reviews-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
      }
    }

    .rating-big {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .rating-number {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }
    .rating-details { display: flex; flex-direction: column; gap: .25rem; }
    .stars { display: flex; gap: 3px; }
    .star {
      width: 18px; height: 18px;
      color: #F59E0B;
    }
    .star-empty { color: var(--border); }
    .rating-source { font-size: .8125rem; color: var(--text-muted); }

    .reviews-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    @media (min-width: 640px) {
      .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1024px) {
      .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .review-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .review-top {
      display: flex;
      align-items: center;
      gap: .75rem;
    }
    .reviewer-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1rem;
      color: #fff;
      flex-shrink: 0;
    }
    .reviewer-info { display: flex; flex-direction: column; gap: 2px; }
    .reviewer-name { font-weight: 600; font-size: .9375rem; color: var(--navy); }
    .reviewer-date { font-size: .75rem; color: var(--text-muted); }
    .review-text {
      font-size: .9375rem;
      color: var(--text);
      line-height: 1.6;
      flex: 1;
    }
    .review-source {
      display: flex;
      align-items: center;
      gap: .375rem;
      font-size: .75rem;
      color: var(--text-muted);
      padding-top: .75rem;
      border-top: 1px solid var(--border);
    }
    .review-source svg { color: #4285F4; }

    .reviews-cta {
      margin-top: 1.75rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      font-size: .875rem;
      color: var(--text-muted);
    }
    .reviews-cta a {
      color: var(--navy);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .reviews-cta .btn-review {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: var(--navy);
      color: #fff;
      font-family: 'Work Sans', sans-serif;
      font-weight: 600;
      font-size: .875rem;
      padding: .5rem 1rem;
      border-radius: var(--radius);
      text-decoration: none;
      transition: background var(--transition), transform var(--transition);
    }
    @media (hover:hover) {
      .reviews-cta .btn-review:hover {
        background: var(--accent);
        transform: translateY(-1px);
      }
    }


    /* ============================================================
       FINAL CTA
       ============================================================ */
    .final-cta {
      background: var(--accent);
      padding: clamp(2.5rem, 5vw, 4rem) 0;
    }
    .final-cta-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }
    @media (min-width: 768px) {
      .final-cta-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        gap: 2rem;
      }
    }
    .final-cta h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); }
    .final-cta p { color: rgba(255,255,255,.75); font-size: .9375rem; margin-top: .375rem; }
    .final-cta-btns {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      justify-content: center;
      flex-shrink: 0;
    }
    @media (min-width: 768px) { .final-cta-btns { justify-content: flex-end; } }


    /* ============================================================
       FOOTER
       ============================================================ */
    .site-footer {
      background: var(--navy);
      padding: 2rem 0;
      padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }
    @media (min-width: 640px) {
      .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
    }
    .footer-brand { display: flex; flex-direction: column; gap: 2px; }
    .footer-logo {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: #fff;
    }
    .footer-address { font-size: .8125rem; color: rgba(255,255,255,.65); margin-top: 2px; }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-link {
      font-size: .8125rem;
      color: rgba(255,255,255,.65);
      transition: color var(--transition);
    }
    @media (hover:hover) { .footer-link:hover { color: #fff; } }


    /* ============================================================
       ANIMATIONS
       ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1);
    }
    .reveal.visible { opacity: 1; transform: none; }

    a:focus-visible, button:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }
    }

    /* ===== DESKTOP OVERLAYS ===== */
    .desk-overlay-backdrop {
      position: fixed; inset: 0;
      background: rgba(10,35,66,.55);
      backdrop-filter: blur(4px);
      z-index: 900;
      animation: overlayFadeIn .2s ease;
    }
    .desk-overlay {
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 901;
      width: min(380px, 90vw);
      animation: overlaySlideIn .25s cubic-bezier(.16,1,.3,1);
    }
    .desk-overlay[hidden], .desk-overlay-backdrop[hidden] {
      display: none !important;
    }
    @keyframes overlayFadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }
    @keyframes overlaySlideIn {
      from { opacity: 0; transform: translate(-50%, calc(-50% + 12px)); }
      to   { opacity: 1; transform: translate(-50%, -50%); }
    }
    .desk-overlay-box {
      background: var(--bg-white);
      border-radius: 10px;
      padding: 2rem 2rem 1.75rem;
      text-align: center;
      box-shadow: 0 24px 60px rgba(10,35,66,.25);
      position: relative;
    }
    .desk-overlay-close {
      position: absolute; top: .75rem; right: .875rem;
      background: none; border: none;
      font-size: 1.5rem; line-height: 1;
      color: var(--text-muted); cursor: pointer;
      padding: .25rem .5rem;
      border-radius: 4px;
      transition: color .15s, background .15s;
    }
    .desk-overlay-close:hover { color: var(--navy); background: var(--bg-section); }
    .desk-overlay-close:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
    .desk-overlay-icon {
      width: 56px; height: 56px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
    }
    .desk-overlay-icon--wa  { background: #E8F8EF; color: #1A8C40; }
    .desk-overlay-icon--call { background: rgba(196,58,14,.1); color: var(--accent); }
    .desk-overlay-box h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.3rem;
      color: var(--navy);
      margin-bottom: .5rem;
    }
    .desk-overlay-box > p {
      color: var(--text-muted);
      font-size: .9rem;
      margin-bottom: 1.5rem;
    }
    .desk-overlay-qr {
      background: #fff;
      border: 2px solid var(--border);
      border-radius: 8px;
      padding: .75rem;
      display: inline-block;
      margin-bottom: 1rem;
    }
    .desk-overlay-qr img { display: block; }
    .desk-overlay-phone {
      font-family: 'Fraunces', serif;
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: -.02em;
      margin-bottom: 1rem;
      line-height: 1;
    }
    .desk-overlay-hint {
      color: var(--text-muted);
      font-size: .8125rem;
      margin: 0;
    }
    /* Overlays nur auf Desktop zeigen — auf Mobile normal verhalten */
    @media (max-width: 1023px) {
      .desk-overlay, .desk-overlay-backdrop { display: none !important; }
    }

    /* ===== FAQ SECTION ===== */
    .faq-section { background: var(--bg-section); }
    .faq-inner {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: start;
    }
    .faq-sticky {
      position: sticky;
      top: 2rem;
    }
    .faq-sticky h2 { margin: .6rem 0 1rem; }
    .faq-sticky p {
      color: var(--text-muted);
      font-size: .9375rem;
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }
    .faq-cta-link {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-weight: 600;
      font-size: .9rem;
      color: var(--accent);
      text-decoration: none;
      letter-spacing: .01em;
    }
    .faq-cta-link:hover { text-decoration: underline; }
    .faq-list {
      display: flex;
      flex-direction: column;
      border-top: 2px solid var(--navy-20);
    }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      background: none;
      border: none;
      padding: 1.125rem 0;
      font-family: 'Work Sans', sans-serif;
      font-size: .9375rem;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      text-align: left;
      line-height: 1.4;
    }
    .faq-question:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
    .faq-chevron {
      flex-shrink: 0;
      transition: transform .25s cubic-bezier(.16,1,.3,1);
      color: var(--accent);
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-answer {
      overflow: hidden;
      max-height: 0;
      transition: max-height .35s cubic-bezier(.16,1,.3,1);
    }
    .faq-item.open .faq-answer { max-height: 400px; }
    .faq-answer > p {
      padding-bottom: 1.125rem;
      color: var(--text-muted);
      font-size: .9375rem;
      line-height: 1.65;
    }
    @media (max-width: 900px) {
      .faq-inner { grid-template-columns: 1fr; }
      .faq-sticky { position: static; }
    }

    /* ===== JOBS SECTION ===== */
    .jobs-section {
      padding: 96px 0;
      background: var(--navy);
      color: #fff;
    }
    .jobs-inner {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
    }
    .jobs-text .label { color: rgba(255,255,255,.55); }
    .jobs-text h2 { color: #fff; margin: .75rem 0 1.25rem; }
    .jobs-text p { color: rgba(255,255,255,.8); margin-bottom: 1.25rem; }
    .jobs-list {
      list-style: none;
      margin: 0 0 2rem;
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }
    .jobs-list li {
      color: rgba(255,255,255,.85);
      padding-left: 1.25rem;
      position: relative;
    }
    .jobs-list li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
    }
    .jobs-btn {
      font-size: .875rem;
      white-space: normal;
      text-align: left;
    }
    .jobs-visual {
      display: flex;
      justify-content: center;
    }
    .jobs-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 6px;
      padding: 2rem 2rem 1.75rem;
      width: 100%;
      max-width: 300px;
    }
    .jobs-card-tag {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .25rem .75rem;
      border-radius: 2px;
      margin-bottom: 1.25rem;
    }
    .jobs-card-role {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .75rem;
    }
    .jobs-card-detail {
      color: rgba(255,255,255,.65);
      font-size: .875rem;
      line-height: 1.5;
      margin-bottom: 1rem;
    }
    .jobs-card-type {
      color: rgba(255,255,255,.5);
      font-size: .8125rem;
      border-top: 1px solid rgba(255,255,255,.12);
      padding-top: .875rem;
    }
    @media (max-width: 767px) {
      .jobs-section { padding: 64px 0; }
      .jobs-inner { grid-template-columns: 1fr; }
      .jobs-visual { display: none; }
    }

    /* ===== REFERRAL SECTION ===== */
    .referral-section {
      padding: 96px 0;
      background: var(--bg-section);
    }
    .referral-inner {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: clamp(2.5rem, 5vw, 5rem);
      align-items: center;
    }
    .referral-voucher {
      display: flex;
      justify-content: center;
    }
    .voucher-card {
      background: var(--navy);
      color: #fff;
      border-radius: 8px;
      padding: 2rem 2rem 1.75rem;
      text-align: center;
      width: 100%;
      max-width: 240px;
      position: relative;
      box-shadow: var(--shadow-lg);
    }
    .voucher-badge {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .2rem .7rem;
      border-radius: 2px;
      margin-bottom: 1.25rem;
    }
    .voucher-discount {
      font-family: 'Fraunces', serif;
      font-size: 5rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
      margin-bottom: .25rem;
    }
    .voucher-discount span { font-size: 2.5rem; vertical-align: super; }
    .voucher-label {
      color: rgba(255,255,255,.75);
      font-size: .9375rem;
      margin-bottom: 1.5rem;
    }
    .voucher-divider {
      height: 1px;
      background: rgba(255,255,255,.15);
      margin-bottom: 1.25rem;
    }
    .voucher-fine {
      color: rgba(255,255,255,.5);
      font-size: .78rem;
      line-height: 1.4;
    }
    .referral-text h2 { margin: .75rem 0 1.25rem; }
    .referral-text p { margin-bottom: 1rem; color: var(--text); }
    .referral-how { background: var(--bg-white); border-left: 3px solid var(--accent); padding: .875rem 1.25rem; border-radius: 0 4px 4px 0; margin-bottom: 1.75rem !important; }
    @media (max-width: 767px) {
      .referral-section { padding: 64px 0; }
      .referral-inner { grid-template-columns: 1fr; }
      .referral-voucher { margin-bottom: .5rem; }
      .voucher-card { max-width: 200px; }
      .voucher-discount { font-size: 4rem; }
      .referral-text .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
        justify-content: center;
      }
    }
    .blog-teaser-section { background: var(--bg-section); }
    .blog-teaser-header { margin-bottom: 2rem; }
    .blog-teaser-header p { color: var(--text-muted); max-width: 540px; margin: .5rem 0 0; }
    .blog-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
    @media (max-width: 767px) { .blog-teaser-grid { grid-template-columns: 1fr; } }
    @media (min-width: 768px) and (max-width: 1023px) { .blog-teaser-grid { grid-template-columns: 1fr 1fr; } }
    .blog-teaser-card { background: var(--bg-white); border-radius: var(--radius); padding: 1.375rem; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; gap: .5rem; }
    @media (hover: hover) { .blog-teaser-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,.1); } }
    .blog-teaser-cat { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); }
    .blog-teaser-title { font-family: 'Fraunces', serif; font-size: 1.0625rem; line-height: 1.35; color: var(--navy); text-decoration: none; display: block; }
    .blog-teaser-title:hover { color: var(--accent); }
    .blog-teaser-date { font-size: .8125rem; color: var(--text-muted); margin-top: auto; }
    .blog-teaser-cta { text-align: center; }
    /* ---- opt-2026-09: Social Proof im Hero, CTA-Hierarchie, kompakte Sektionen ---- */
    .hero-proof { display: inline-flex; align-items: center; gap: .5rem; flex-basis: 100%; margin-top: .25rem; color: #fff; font-size: .9375rem; text-decoration: none; }
    .hero-proof[hidden] { display: none; }
    .hero-proof .stars { color: #FFC107; letter-spacing: .08em; font-size: 1rem; }
    .hero-proof strong { font-weight: 700; }
    .hero-proof span.cnt { color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: 3px; }
    .btn--outline-light { color: #fff; border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.06); }
    @media (hover:hover) { .btn--outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); } }
    .hero-link { display: inline-flex; align-items: center; gap: .4rem; min-height: 48px; padding: 0 .5rem; color: #fff; font-weight: 600; font-size: .9375rem; text-decoration: underline; text-underline-offset: 4px; }
    .hero-link svg { width: 16px; height: 16px; }
    @media (min-width: 1024px) { .details-grid { grid-template-columns: repeat(2, 1fr); } }
    .jobs-inner { grid-template-columns: 1fr; }
    .jobs-text p { max-width: 62ch; }
