    :root {
      --cream: #fff8e7;
      --warm-white: #fffcf2;
      --wood-dark: #2e1814;
      --wood-mid: #6b3a1f;
      --wood-light: #fbbb00;
      --wood-warm: #fdd05a;
      --text-dark: #1a0e0b;
      --text-mid: #5a3a2a;
      --text-light: #9a7a6a;
      --border: #f0dfa0;
    }

    * { box-sizing: border-box; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm-white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: .4;
    }

    /* ── NAVIGATION ── */
    .navbar {
      background: var(--wood-dark) !important;
      padding: 0;
      border-bottom: 3px solid #fbbb00;
    }

    .navbar-brand {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--cream) !important;
      letter-spacing: 0;
    }

    #logo-header {
      transition: height 0.3s ease;
    }

    .navbar-brand span {
      color: var(--wood-warm);
    }

    .nav-link {
      color: rgba(245,240,232,.7) !important;
      font-size: .9rem;
      letter-spacing: 0.03em;
      font-weight: 500;
      padding: 8px 16px !important;
      transition: color .2s;
      display: inline-block;
      transform: scaleY(1.25);
      transform-origin: center;
    }

    .nav-link:hover { color: var(--wood-warm) !important; }
    .nav-link.active-section { color: var(--wood-warm) !important; }

    .nav-cta {
      background: #fbbb00 !important;
      color: var(--wood-dark) !important;
      border-radius: 2px !important;
      font-weight: 700 !important;
    }

    .nav-cta:hover { background: var(--wood-warm) !important; }

    .navbar-toggler { border-color: #fbbb00; }
    .navbar-toggler-icon { filter: invert(1); }

    /* ── HERO SLIDESHOW ── */
    .hero {
      min-height: 75vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* Slides – Hintergrundbilder */
    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.4s ease-in-out;
      animation: none;
      overflow: hidden;
    }

    .hero-slide.active {
      opacity: 1;
      animation: kenburns 8s ease-out forwards;
    }

    /* Das eigentliche Foto als img-Tag – object-fit:cover streckt es zuverlässig */
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      pointer-events: none;
    }

    /* Ken-Burns-Effekt: leichtes Hereinzoomen */
    @keyframes kenburns {
      0%   { transform: scale(1);    }
      100% { transform: scale(1.06); }
    }

    /* Fallback-Hintergrund falls Bild lädt */
    .hero-slide:nth-child(1) { background: #1a0f08; }
    .hero-slide:nth-child(2) { background: #2c1f14; }
    .hero-slide:nth-child(3) { background: #3d2214; }
    .hero-slide:nth-child(4) { background: #4a2f1c; }
    .hero-slide:nth-child(5) { background: #2e1a10; }
    .hero-slide:nth-child(6) { background: #3a2418; }
    .hero-slide:nth-child(7) { background: #251508; }
    .hero-slide:nth-child(8) { background: #331d12; }
    .hero-slide:nth-child(9)  { background: #1e1108; }
    .hero-slide:nth-child(10) { background: #2a1a0e; }
    .hero-slide:nth-child(11) { background: #301c10; }
    .hero-slide:nth-child(12) { background: #221409; }

    /* Dunkles Overlay damit Text lesbar bleibt */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(20,12,6,.82) 0%,
        rgba(20,12,6,.55) 55%,
        rgba(20,12,6,.2)  100%
      );
      z-index: 1;
    }

    /* Fortschrittsbalken unten */
    .hero-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: rgba(255,255,255,.12);
      z-index: 10;
    }

    .hero-progress-bar {
      height: 100%;
      background: #fbbb00;
      width: 0%;
      transition: width linear;
    }

    /* Slide-Dots */
    .hero-dots {
      position: absolute;
      bottom: 32px;
      right: 40px;
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(245,240,232,.3);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all .3s;
    }

    .hero-dot.active {
      background: #fbbb00;
      transform: scale(1.3);
    }

    /* Pfeil-Buttons */
    .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(245,240,232,.08);
      border: 1px solid rgba(245,240,232,.2);
      color: var(--cream);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      transition: all .25s;
      backdrop-filter: blur(4px);
    }

    .hero-arrow:hover {
      background: rgba(200,137,90,.3);
      border-color: #fbbb00;
      color: var(--wood-warm);
    }

    .hero-arrow-prev { left: 24px; }
    .hero-arrow-next { right: 24px; }

    @media (max-width: 576px) {
      .hero-arrow { display: none; }
      .hero-dots { right: 50%; transform: translateX(50%); }
    }

    /* Slide-Titel (optional je Slide) */
    .slide-caption {
      position: absolute;
      top: 50%;
      right: 48px;
      transform: translateY(-50%);
      z-index: 5;
      text-align: right;
      opacity: 0;
      transition: opacity .6s ease .8s;
      pointer-events: none;
    }

    .hero-slide.active ~ .slide-caption,
    .hero.show-caption .slide-caption { opacity: 1; }

    /* Hintergrund-Muster */
    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(200,137,90,.015) 40px,
        rgba(200,137,90,.015) 41px
      );
      pointer-events: none;
    }

    .hero-glow {
      position: absolute;
      right: -100px;
      top: 50%;
      transform: translateY(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(200,137,90,.08) 0%, transparent 70%);
      pointer-events: none;
      z-index: 2;
    }

    .hero-label {
      font-size: .75rem;
      letter-spacing: 0;

      color: #fbbb00;
      font-weight: 500;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-label::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: #fbbb00;
    }

    .hero h1 {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.05;
      margin-bottom: 28px;
    }

    .hero h1 em {
      color: var(--wood-warm);

    }

    .hero-sub {
      font-size: 1.1rem;
      color: rgba(245,240,232,.6);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 44px;
      font-weight: 300;
    }

    .btn-wood {
      background: #fbbb00;
      color: #2e1814;
      border: none;
      border-radius: 2px;
      padding: 16px 36px;
      font-family: 'DM Sans', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: 0;

      text-decoration: none;
      transition: all .25s;
      display: inline-block;
    }

    .btn-wood:hover {
      background: #fdd05a;
      color: #2e1814;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200,137,90,.3);
    }

    .btn-outline-wood {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(245,240,232,.3);
      border-radius: 2px;
      padding: 15px 36px;
      font-family: 'DM Sans', sans-serif;
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: 0;

      text-decoration: none;
      transition: all .25s;
      display: inline-block;
    }

    .btn-outline-wood:hover {
      border-color: #fbbb00;
      color: #fbbb00;
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 60px;
      padding-top: 48px;
      border-top: 1px solid rgba(245,240,232,.1);
    }

    .hero-stat-num {
      font-family: 'DM Sans', sans-serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--wood-warm);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: .75rem;
      letter-spacing: 0;

      color: rgba(245,240,232,.5);
      margin-top: 6px;
    }

    /* Right side image mockup */
    .hero-visual {
      position: relative;
      height: 100%;
    }

    .hero-img-frame {
      position: absolute;
      right: -40px;
      top: 50%;
      transform: translateY(-50%);
      width: 480px;
      height: 560px;
      border: 1px solid rgba(200,137,90,.3);
    }

    .hero-img-fill {
      position: absolute;
      inset: 20px -20px -20px 20px;
      background: linear-gradient(135deg, #3d2a1a 0%, #5c3a22 50%, #2c1f14 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wood-grain-svg {
      opacity: .15;
      width: 80%;
    }

    /* ── INTRO BAND ── */
    .intro-band {
      background: #fbbb00;
      padding: 20px 0;
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      gap: 48px;
      animation: marquee 20s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      font-size: .8rem;
      letter-spacing: 0;

      color: var(--wood-dark);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .marquee-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--wood-dark);
      opacity: .4;
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── LEISTUNGEN ── */
    .section-label {
      font-size: .75rem;
      letter-spacing: 0;

      color: #fbbb00;
      font-weight: 500;
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.15;
    }

    .section-title em { color: var(--wood-mid);  }

    .leistung-card {
      background: var(--cream);
      border: 1px solid var(--border);
      padding: 40px 36px;
      height: 100%;
      position: relative;
      transition: all .3s;
      overflow: hidden;
    }

    .leistung-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: #fbbb00;
      transition: width .3s;
    }

    .leistung-card:hover::before { width: 100%; }
    .leistung-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,31,20,.08); }

    .leistung-num {
      font-family: 'DM Sans', sans-serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--wood-warm);
      opacity: .3;
      line-height: 1;
      margin-bottom: 20px;
    }

    .leistung-icon {
      font-size: 1.8rem;
      color: var(--wood-mid);
      margin-bottom: 16px;
    }

    .leistung-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text-dark);
    }

    .leistung-text {
      color: var(--text-mid);
      font-size: .95rem;
      line-height: 1.7;
      font-weight: 300;
    }

    /* ── ÜBER UNS ── */
    .ueber-uns {
      background: var(--wood-dark);
      position: relative;
      overflow: hidden;
    }

    .ueber-uns::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, transparent, #fbbb00, transparent);
    }

    .ueber-quote {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 600;
      color: var(--cream);
      line-height: 1.5;
      margin-bottom: 32px;
    }

    .ueber-quote span { color: var(--wood-warm); }

    .feature-list { list-style: none; padding: 0; }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(245,240,232,.08);
      color: rgba(245,240,232,.75);
      font-size: .95rem;
      font-weight: 300;
    }

    .feature-list li:last-child { border-bottom: none; }

    .feature-list li i {
      color: #fbbb00;
      font-size: 1.1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .wood-block {
      background: linear-gradient(135deg, #4a2f1c 0%, #6b4226 40%, #3d2214 100%);
      height: 100%;
      min-height: 400px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wood-rings {
      position: absolute;
      inset: 40px;
      border: 1px solid rgba(200,137,90,.2);
      border-radius: 50%;
    }

    .wood-rings::before {
      content: '';
      position: absolute;
      inset: 30px;
      border: 1px solid rgba(200,137,90,.15);
      border-radius: 50%;
    }

    .wood-rings::after {
      content: '';
      position: absolute;
      inset: 60px;
      border: 1px solid rgba(200,137,90,.1);
      border-radius: 50%;
    }

    .years-badge {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .years-badge .num {
      font-family: 'DM Sans', sans-serif;
      font-size: 5rem;
      font-weight: 900;
      color: var(--wood-warm);
      line-height: 1;
    }

    .years-badge .label {
      font-size: .8rem;
      letter-spacing: 0;

      color: rgba(245,240,232,.5);
      margin-top: 8px;
    }

    /* ── REFERENZEN ── */
    .referenz-card {
      background: var(--cream);
      border: 1px solid var(--border);
      padding: 32px;
      position: relative;
      height: 100%;
    }

    .referenz-card::before {
      content: '"';
      font-family: 'DM Sans', sans-serif;
      font-size: 5rem;
      color: var(--wood-warm);
      opacity: .25;
      position: absolute;
      top: 12px;
      left: 24px;
      line-height: 1;
    }

    .referenz-text {
      color: var(--text-mid);
      font-size: .95rem;
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 24px;
      padding-top: 32px;
    }

    .referenz-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .referenz-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--wood-mid), #fbbb00);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.1rem;
      color: var(--cream);
      font-weight: 700;
      flex-shrink: 0;
    }

    .referenz-name {
      font-weight: 700;
      font-size: .95rem;
      color: var(--text-dark);
    }

    .referenz-loc {
      font-size: .8rem;
      color: var(--text-light);
      margin-top: 2px;
    }

    .stars { color: #fbbb00; font-size: .85rem; margin-bottom: 4px; }

    /* ── KONTAKT ── */
    .kontakt-section {
      background: var(--cream);
      border-top: 1px solid var(--border);
    }

    .kontakt-info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
    }

    .kontakt-info-item:last-child { border-bottom: none; }

    .kontakt-icon {
      width: 48px;
      height: 48px;
      background: var(--wood-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .kontakt-icon i { color: var(--wood-warm); font-size: 1.1rem; }

    .kontakt-label {
      font-size: .75rem;
      letter-spacing: 0;

      color: var(--text-light);
      margin-bottom: 4px;
    }

    .kontakt-val {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-dark);
    }

    .form-control, .form-select {
      border: 1px solid var(--border);
      border-radius: 2px;
      padding: 14px 18px;
      background: var(--warm-white);
      color: var(--text-dark);
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      transition: border-color .2s;
    }

    .form-control:focus, .form-select:focus {
      border-color: #fbbb00;
      box-shadow: 0 0 0 3px rgba(200,137,90,.1);
      background: white;
    }

    .form-label {
      font-size: .75rem;
      letter-spacing: 0;

      color: var(--text-mid);
      font-weight: 500;
      margin-bottom: 8px;
    }

    textarea.form-control { resize: none; }

    /* ── FOOTER ── */
    footer {
      background: var(--wood-dark);
      border-top: 3px solid var(--wood-mid);
    }

    .footer-brand {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--cream);
    }

    .footer-brand span { color: var(--wood-warm); }

    .footer-text {
      color: rgba(245,240,232,.45);
      font-size: .85rem;
      line-height: 1.7;
      font-weight: 300;
    }

    .footer-heading {
      font-size: .75rem;
      letter-spacing: 0;

      color: #fbbb00;
      margin-bottom: 20px;
    }

    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(245,240,232,.5);
      text-decoration: none;
      font-size: .9rem;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--wood-warm); }

    .footer-bottom {
      border-top: 1px solid rgba(245,240,232,.1);
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      color: rgba(245,240,232,.3);
      font-size: .8rem;
      margin: 0;
    }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }



    /* ── GALERIE ALLE FOTOS ── */
    .galerie-grid-all {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-top: 56px;
    }
    .galerie-grid-all .galerie-item { height: 200px; cursor: pointer; }
    @media (max-width: 992px) { .galerie-grid-all { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 576px) { .galerie-grid-all { grid-template-columns: repeat(2, 1fr); } }

    /* ── LIGHTBOX ── */
    #lightbox {
      position: fixed; inset: 0; z-index: 10000;
      background: rgba(20,10,5,.95);
      display: none; align-items: center; justify-content: center;
    }
    #lightbox.open { display: flex; }
    #lightbox img {
      max-width: 90vw; max-height: 88vh;
      object-fit: contain;
      box-shadow: 0 8px 48px rgba(0,0,0,.6);
      display: block;
    }
    .lb-close {
      position: absolute; top: 20px; right: 28px;
      color: var(--cream); font-size: 2rem; cursor: pointer;
      background: none; border: none; line-height: 1;
      opacity: .7; transition: opacity .2s;
    }
    .lb-close:hover { opacity: 1; }
    .lb-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      color: var(--cream); font-size: 1.6rem; cursor: pointer;
      background: rgba(245,240,232,.08); border: 1px solid rgba(245,240,232,.2);
      width: 52px; height: 52px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: all .2s; backdrop-filter: blur(4px);
    }
    .lb-arrow:hover { background: rgba(251,187,0,.25); border-color: #fbbb00; color: var(--wood-warm); }
    .lb-prev { left: 20px; }
    .lb-next { right: 20px; }
    .lb-counter {
      position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
      color: rgba(245,240,232,.45); font-size: .8rem; letter-spacing: 0;
    }
    @media (max-width: 576px) { .lb-arrow { display: none; } }

    /* ── FOTO-GALERIE (unter Leistungen) ── */
    .galerie-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 260px 260px;
      gap: 8px;
      margin-top: 56px;
    }
    .galerie-item { overflow: hidden; position: relative; cursor: pointer; z-index: 1; }
    .galerie-grid-all .galerie-item::after { content: ''; position: absolute; inset: 0; border: 2px solid rgba(200,137,90,.25); margin: 10px; pointer-events: none; z-index: 2; }
    .galerie-item:first-child { grid-row: 1 / 3; }
    .galerie-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .5s ease; }
    .galerie-item:hover img { transform: scale(1.06); }
    .galerie-overlay { position: absolute; inset: 0; background: rgba(44,31,20,0); transition: background .3s; display: flex; align-items: center; justify-content: center; }
    .galerie-item:hover .galerie-overlay { background: rgba(44,31,20,.4); }
    .galerie-overlay i { color: white; font-size: 1.8rem; opacity: 0; transition: opacity .3s; }
    .galerie-item:hover .galerie-overlay i { opacity: 1; }
    @media (max-width: 768px) {
      .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
      .galerie-item:first-child { grid-row: auto; }
    }

    /* ── REFERENZ-FOTOS ── */
    .referenz-card-wrap { overflow: hidden; border: 1px solid var(--border); height: 100%; }
    .referenz-card-wrap:hover .referenz-foto { transform: scale(1.04); }
    .referenz-foto { width: 100%; height: 190px; object-fit: cover; object-position: center; display: block; transition: transform .4s ease; }
    .referenz-card { border: none !important; }
    @media (max-width: 768px) {
      .hero-stats { gap: 28px; }
    }

    /* ── MOBILE FIXES ── */
    @media (max-width: 767px) {

      /* Logo auf Mobile etwas größer */
      #logo-header { max-height: 56px !important; height: 56px !important; width: auto !important; }

      /* Hero: kompakte Höhe, Padding anpassen */
      .hero { min-height: 60vh; padding: 80px 0 60px; }
      .hero h1 { font-size: clamp(2rem, 10vw, 3rem); margin-bottom: 16px; }
      .hero-sub { font-size: .95rem; margin-bottom: 28px; max-width: 100%; }
      .hero-label { font-size: .7rem; letter-spacing: 0; margin-bottom: 14px; }

      /* Buttons im Hero nebeneinander oder untereinander – volle Breite */
      .hero .d-flex.flex-wrap { flex-direction: column; gap: 12px !important; }
      .btn-wood, .btn-outline-wood { width: 100%; text-align: center; padding: 14px 24px; }

      /* Dots mittig zentriert */
      .hero-dots { bottom: 16px; right: 50%; transform: translateX(50%); }

      /* Section-Abstände auf Mobile reduzieren */
      section[style*="padding-top:96px"],
      .ueber-uns[style*="padding-top:96px"] { padding-top: 56px !important; padding-bottom: 56px !important; }

      /* Section-Titel kleiner */
      .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

      /* Leistungs-Karten: Padding reduzieren */
      .leistung-card { padding: 28px 22px; }
      .leistung-num { font-size: 2.5rem; }

      /* Über uns / Meister: Foto volle Breite */
      .ueber-uns .col-lg-5 img { width: 100%; }

      /* Werkstatt Bilder: fixe Höhe reduzieren */
      .col-lg-8 img[style*="height:420px"] { height: 220px !important; }
      .col-lg-4 img[style*="height:300px"],
      .col-lg-6 img[style*="height:380px"],
      .col-md-6 img[style*="height:340px"] { height: 200px !important; }

      /* Galerie-Grid: 2 Spalten, kleinere Kacheln */
      .galerie-grid-all { grid-template-columns: repeat(2, 1fr) !important; gap: 6px; }
      .galerie-grid-all .galerie-item { height: 140px; }

      /* Kontakt: Cards untereinander, kompakter */
      .kontakt-info-item { padding: 16px 0; gap: 14px; }
      .kontakt-val { font-size: .9rem; }

      /* Philosophie-Cards: Padding */
      .col-lg-4 > div[style*="border:1px solid rgba(200,137,90"] { padding: 24px 20px; }

      /* Abschluss-Zitat im Philosophie-Block */
      blockquote[style*="font-size:clamp(1.2rem"] { font-size: 1.1rem !important; }
      .d-flex.justify-content-center { flex-direction: column; align-items: center; gap: 12px !important; }

      /* Materialpartner-Box: kleinere Schrift */
      div[style*="font-family:'DM Sans',sans-serif;font-weight:700;font-size:1rem"] { font-size: .85rem !important; }

      /* Werkstatt CTA-Box */
      div[style*="display:flex;align-items:center;justify-content:space-between"] { flex-direction: column; align-items: flex-start !important; }

      /* Footer: Abstände */
      .footer-bottom { flex-direction: column; text-align: center; }

      /* Cookie-Banner */
      #cookieBanner .container > div { flex-direction: column; gap: 16px !important; }
    }

    @media (max-width: 400px) {
      .hero h1 { font-size: 1.9rem; }
      .galerie-grid-all .galerie-item { height: 110px; }
    }

  /* ── SCROLL-TO-TOP BUTTON ── */
  #scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 1050;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background: var(--wood-dark);
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
  }
  #scrollTopBtn.visible {
    opacity: 1;
  }
  #scrollTopBtn { display: flex; }
  .prologixx-link:hover {
    color: #c8102e !important;
    background: #fff;
    outline: 2px solid #c8102e;
    border-radius: 2px;
    text-decoration: none !important;
    padding: 0 2px;
  }
