  /* =============================================================
   LOCAL FONTS (DSGVO-konform — kein Google Fonts CDN)
   ============================================================= */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('fonts/oswald-variable.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Kalam';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/kalam-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Kalam';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/kalam-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Shadows Into Light';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/shadows-into-light.woff2') format('woff2');
}

:root {
    --cream: #FAF7F2;
    --sand: #F0E9DD;
    --green: #1F3A2E;
    --green-2: #2B4A3A;
    --amber: #D99026;
    --amber-dk: #B97717;
    --mint: #E8EDE5;
    --ink: #2A2A28;
    --muted: #6b6b66;
    --border: rgba(31, 58, 46, 0.12);

    --f-cond: "Oswald", "Barlow Condensed", "Helvetica Neue", Arial, sans-serif;
    --f-body: "Inter", "Söhne", -apple-system, "Helvetica Neue", Arial, sans-serif;
    --f-script: "Shadows Into Light", "Kalam", cursive;
    --f-script-bold: "Kalam", cursive;

    --maxw: 1240px;
  }

  * { box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
  }
  body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  button { font: inherit; cursor: pointer; }

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

  /* Typography */
  .eyebrow {
    font-family: var(--f-cond);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    font-size: 14px;
    color: var(--green);
  }
  .script {
    font-family: var(--f-script);
    font-weight: 400;
    color: var(--amber);
    line-height: 1.05;
    letter-spacing: 0.01em;
  }
  /* fettere Variante für große Claims */
  .script-bold {
    font-family: var(--f-script-bold);
    font-weight: 700;
    color: var(--amber);
    line-height: 1.05;
  }
  h1, h2, h3 {
    font-family: var(--f-cond);
    text-transform: uppercase;
    color: var(--green);
    letter-spacing: 0.01em;
    font-weight: 600;
    margin: 0;
    line-height: 1.02;
    text-wrap: balance;
  }
  h2 { font-size: clamp(34px, 4.4vw, 56px); }
  h3 { font-size: 22px; letter-spacing: 0.04em; }
  p  { margin: 0 0 1em 0; color: var(--ink); }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
    white-space: nowrap;
  }
  .btn-amber {
    background: var(--amber);
    color: #fff;
    box-shadow: 0 6px 18px -8px rgba(217,144,38,0.55);
  }
  .btn-amber:hover { background: var(--amber-dk); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
  }
  .btn-ghost:hover { background: var(--green); color: #fff; }
  .btn-lg { padding: 18px 32px; font-size: 18px; }

  /* Header */
  header.site {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--green);
    border-bottom: 1px solid rgba(250,247,242,0.08);
    box-shadow: 0 2px 14px -8px rgba(0,0,0,0.3);
  }
  .nav {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 0;
  }
  .logo-img {
    width: 108px;
    height: 108px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
  }
  .brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--cream);
    font-family: var(--f-cond);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-left: 4px;
  }
  .brand-name strong {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.06em;
  }
  .brand-name > span {
    font-weight: 500;
    font-size: 26px;
    color: var(--amber);
    margin-top: 2px;
    letter-spacing: 0.04em;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
    margin-right: auto;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--cream);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    padding: 6px 0;
    position: relative;
    transition: color .2s ease;
  }
  .nav-links a:hover { color: var(--amber); }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
  }
  .nav-links a:hover::after { transform: scaleX(1); }
  .header-cta {
    margin-left: auto;
  }
  .header-phone {
    background: var(--amber);
    color: #fff;
    padding: 11px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
    white-space: nowrap;
  }
  .header-phone:hover { background: var(--amber-dk); transform: translateY(-1px); }
  .hamburger {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    color: var(--cream);
  }

  /* Hero */
  .hero {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 0 90px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-text .eyebrow {
    display: inline-block;
    margin-bottom: 22px;
  }
  .hero-headline {
    font-size: clamp(38px, 4.8vw, 60px);
    line-height: 1.1;
    color: var(--green);
    font-weight: 500;
    letter-spacing: 0.015em;
    margin-bottom: 22px;
  }
  .hero-headline .accent { color: var(--green-2); }
  .hero-script {
    font-size: clamp(38px, 4.6vw, 58px);
    margin: 0 0 30px;
    display: block;
    transform: rotate(-1.5deg);
    transform-origin: left center;
    color: var(--amber);
    line-height: 1.05;
    /* faux-bold für Shadows Into Light */
    text-shadow: 0.4px 0 0 currentColor, -0.4px 0 0 currentColor;
  }
  .hero-body {
    font-size: 19px;
    max-width: 520px;
    color: var(--ink);
    margin-bottom: 32px;
    line-height: 1.6;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .trust-strip {
    /* deprecated — Element wurde aus Hero entfernt */
    display: none;
  }

  /* Hero image collage */
  .hero-art {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 620px;
  }
  .hero-art .frame {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
    background: var(--sand);
    box-shadow: 0 30px 60px -30px rgba(31,58,46,0.35);
  }
  .hero-art .frame-main {
    inset: 0 0 12% 18%;
  }
  .hero-art .frame-sub {
    width: 52%;
    aspect-ratio: 1;
    bottom: 0;
    left: 0;
    border: 8px solid var(--cream);
    box-shadow: 0 20px 40px -20px rgba(31,58,46,0.35);
  }
  .hero-badge {
    position: absolute;
    right: -8px;
    top: 22px;
    background: var(--green);
    color: var(--cream);
    border-radius: 999px;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--f-cond);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.1;
    font-weight: 600;
    font-size: 14px;
    transform: rotate(8deg);
    z-index: 3;
    box-shadow: 0 12px 28px -10px rgba(31,58,46,0.5);
  }
  .hero-badge strong {
    display: block;
    font-size: 32px;
    color: var(--amber);
    margin-bottom: 2px;
  }

  /* Image placeholder */
  .ph {
    width: 100%;
    height: 100%;
    background:
      repeating-linear-gradient(135deg, rgba(31,58,46,0.06) 0 2px, transparent 2px 14px),
      linear-gradient(180deg, #d9cdb8 0%, #c5b59a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-family: "ui-monospace", "SF Mono", Menlo, monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-align: center;
    padding: 14px;
  }

  /* Section base */
  section {
    padding: 100px 0;
    position: relative;
  }
  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .section-head .script {
    font-size: 36px;
    line-height: 1.05;
    margin-top: 10px;
    display: inline-block;
    transform: rotate(-1.5deg);
    /* faux-bold */
    text-shadow: 0.4px 0 0 currentColor, -0.4px 0 0 currentColor;
  }
  .section-head .lead {
    max-width: 460px;
    color: var(--muted);
    font-size: 16px;
    margin: 0;
  }

  /* Services */
  .services {
    background: var(--cream);
  }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .service-card {
    background: var(--sand);
    padding: 36px 32px 30px;
    border-radius: 6px;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -25px rgba(31,58,46,0.3);
  }
  .service-icon {
    width: 46px;
    height: 46px;
    color: var(--green);
  }
  .service-card h3 { font-size: 24px; letter-spacing: 0.04em; }
  .service-card p  { color: var(--ink); margin: 0; }
  .service-card ul {
    margin: 6px 0 10px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
    color: var(--green-2);
    font-size: 15px;
  }
  .service-card li::before {
    content: "—";
    color: var(--amber);
    margin-right: 10px;
    font-weight: 700;
  }
  .service-link {
    margin-top: auto;
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid var(--amber);
    align-self: flex-start;
    padding-bottom: 2px;
    transition: color .15s;
  }
  .service-link:hover { color: var(--amber-dk); }

  /* Why us */
  .why {
    background: var(--mint);
  }
  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
  }
  .pillar .big {
    font-family: var(--f-cond);
    font-weight: 700;
    color: var(--amber);
    font-size: clamp(72px, 9vw, 120px);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .pillar .big span { color: var(--amber); }
  .pillar h3 { margin-top: 8px; font-size: 20px; letter-spacing: 0.05em; color: var(--green); }
  .pillar p { color: var(--ink); max-width: 320px; margin: 10px auto 0; font-size: 15px; }
  .why-claim {
    margin-top: 80px;
    text-align: center;
  }
  .why-claim .script {
    font-size: clamp(50px, 7vw, 88px);
    display: inline-block;
    transform: rotate(-1.5deg);
    line-height: 1.05;
    /* faux-bold für Shadows Into Light bei großen Größen */
    text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
  }
  .why-claim .by {
    display: block;
    margin-top: 22px;
    font-family: var(--f-cond);
    color: var(--green);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 13px;
  }

  /* Process */
  .process { background: var(--cream); position: relative; }
  .steps-wrap {
    position: relative;
    padding: 20px 0 10px;
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
  }
  /* Verbindungslinie zwischen Step-Nummern (Segment-basiert, JS-positioniert) */
  .steps-line {
    position: absolute;
    /* JS positioniert nichts hier — Segmente sind absolute innerhalb */
    pointer-events: none;
    z-index: 0;
    inset: 0;
  }
  /* Einzelne Segmente — JS erzeugt sie dynamisch (steps.length - 1 Stück) */
  .steps-segment {
    /* position, top, left, width, height: via JS */
  }
  .steps-segment .segment-track {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
      rgba(31,58,46,0.22) 0 6px,
      transparent 6px 12px);
    border-radius: 2px;
  }
  .steps-segment .segment-progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--amber);
    border-radius: 2px;
    transition: width .15s ease-out;
  }
  .step {
    position: relative;
    z-index: 1;
    padding: 0 6px;
    text-align: center;
  }
  .step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--green);
    border: 3px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-cond);
    font-weight: 600;
    font-size: 32px;
    margin: 0 auto 22px;
    box-shadow: 0 8px 22px -10px rgba(31,58,46,0.35);
    position: relative;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s, color .25s;
  }
  .step-num::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--amber);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity .3s ease, transform .3s ease;
  }
  .step:hover .step-num {
    background: var(--amber);
    color: #fff;
    transform: scale(1.08);
  }
  .step:hover .step-num::before {
    opacity: 0.35;
    transform: scale(1);
  }
  .step h3 { font-size: 18px; letter-spacing: 0.05em; margin-bottom: 8px; }
  .step p { color: var(--muted); font-size: 15px; margin: 0; }
  .process-cta {
    margin-top: 70px;
    text-align: center;
  }

  /* Referenzen */
  .refs { background: var(--sand); }
  .gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 170px;
    gap: 14px;
  }
  .tile {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #d9cdb8;
    cursor: pointer;
    border: 0;
    padding: 0;
    text-align: left;
    color: inherit;
    font: inherit;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
    display: flex;
    flex-direction: column;
  }
  .tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -20px rgba(31,58,46,0.4);
  }
  .tile-media {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }
  .tile-media .ph {
    width: 100%;
    height: 100%;
    font-size: 11px;
  }
  /* Info-Bar unten — immer sichtbar, in Cream, keine Überlappung mit Placeholder */
  .tile-info {
    background: var(--cream);
    padding: 12px 14px 13px;
    border-top: 1px solid rgba(31,58,46,0.08);
    flex-shrink: 0;
  }
  .tile-info .tag {
    display: block;
    font-family: var(--f-cond);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 10.5px;
    color: var(--amber);
    margin-bottom: 3px;
  }
  .tile-info .name {
    display: block;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--green);
    line-height: 1.3;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  /* Klick-Indikator (Zoom-Icon) — nur auf Hover über Foto */
  .tile-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(31,58,46,0.85);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 2;
  }
  .tile:hover .tile-zoom,
  .tile:focus-visible .tile-zoom {
    opacity: 1;
    transform: scale(1);
  }
  .tile-zoom svg { width: 18px; height: 18px; }
  /* "+N Fotos" Badge */
  .tile-count {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(250,247,242,0.95);
    color: var(--green);
    font-family: var(--f-cond);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 5px 11px;
    border-radius: 999px;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none;
  }

  .tile.a { grid-column: span 2; grid-row: span 2; }
  .tile.b { grid-column: span 2; grid-row: span 1; }
  .tile.c { grid-column: span 2; grid-row: span 2; }
  .tile.d { grid-column: span 2; grid-row: span 1; }
  .tile.e { grid-column: span 3; grid-row: span 2; }
  .tile.f { grid-column: span 3; grid-row: span 2; }

  /* ===== Lightbox / Modal ===== */
  .modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(15, 25, 20, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .3s ease;
  }
  .modal.open {
    display: flex;
    opacity: 1;
  }
  .modal-panel {
    background: var(--cream);
    border-radius: 10px;
    max-width: 1200px;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
  }
  .modal.open .modal-panel {
    transform: none;
  }
  .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: var(--cream);
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 8px 20px -8px rgba(0,0,0,0.4);
    transition: background .2s, transform .15s;
  }
  .modal-close:hover { background: var(--green-2); transform: scale(1.06); }
  .modal-close svg { width: 20px; height: 20px; }
  .modal-header {
    padding: 36px 44px 22px;
    border-bottom: 1px solid var(--border);
  }
  .modal-header .tag {
    font-family: var(--f-cond);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    color: var(--amber);
    margin-bottom: 8px;
    display: inline-block;
  }
  .modal-header h3 {
    font-size: clamp(26px, 3.4vw, 38px);
    color: var(--green);
    margin: 0 0 8px;
  }
  .modal-header .modal-sub {
    color: var(--muted);
    font-size: 15px;
    margin: 0;
  }
  /* Desktop: Collage */
  .modal-body {
    padding: 32px 44px 36px;
  }
  .collage {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 130px;
    gap: 12px;
  }
  .collage-item {
    overflow: hidden;
    border-radius: 6px;
    background: #d9cdb8;
    position: relative;
  }
  .collage-item .ph { font-size: 11px; }
  .collage-item.size-lg { grid-column: span 4; grid-row: span 2; }
  .collage-item.size-md { grid-column: span 2; grid-row: span 2; }
  .collage-item.size-sm { grid-column: span 2; grid-row: span 1; }
  .collage-item.size-wide { grid-column: span 3; grid-row: span 1; }

  .modal-footer {
    padding: 22px 44px 32px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
  }

  /* Mobile slideshow */
  .slideshow { display: none; }
  .slideshow-frame {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
    background: #d9cdb8;
  }
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s ease;
  }
  .slide.active { opacity: 1; }
  .slide .ph { width: 100%; height: 100%; font-size: 12px; }
  .slide-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    gap: 12px;
  }
  .slide-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: var(--cream);
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .15s;
    flex-shrink: 0;
  }
  .slide-btn:hover { background: var(--green-2); transform: scale(1.05); }
  .slide-btn:disabled { opacity: 0.35; cursor: not-allowed; }
  .slide-btn svg { width: 20px; height: 20px; }
  .slide-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  .slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: background .2s, transform .2s;
    cursor: pointer;
    border: 0;
    padding: 0;
  }
  .slide-dot.active {
    background: var(--amber);
    transform: scale(1.4);
  }
  .slide-counter {
    font-family: var(--f-cond);
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }

  /* Testimonials */
  .testimonials { background: var(--cream); }
  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .test-card {
    background: var(--sand);
    padding: 32px 30px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .test-card .stars { color: var(--amber); letter-spacing: 2px; font-size: 18px; }
  .test-card blockquote {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    quotes: "„" "“";
  }
  .test-card blockquote::before { content: open-quote; }
  .test-card blockquote::after  { content: close-quote; }
  .test-card .who {
    margin-top: auto;
    border-top: 1px solid rgba(31,58,46,0.12);
    padding-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--green);
    color: var(--cream);
    display: grid; place-items: center;
    font-family: var(--f-cond);
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .who-meta strong { display: block; color: var(--green); font-size: 15px; }
  .who-meta span  { color: var(--muted); font-size: 13px; }
  .google-row {
    margin-top: 36px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
  }
  .google-row a {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid var(--amber);
    padding-bottom: 2px;
  }

  /* About */
  .about { background: var(--cream); }
  .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
  }
  .portrait {
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    background: var(--sand);
    position: relative;
    box-shadow: 0 30px 60px -30px rgba(31,58,46,0.35);
  }
  .about h2 { margin-bottom: 22px; }
  .about p { font-size: 17px; line-height: 1.7; color: var(--ink); }
  .about .signature {
    font-family: var(--f-script);
    color: var(--green);
    font-size: 38px;
    line-height: 1;
    margin-top: 12px;
    display: inline-block;
    transform: rotate(-3deg);
  }
  .meister-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    padding: 10px 18px;
    background: var(--mint);
    border: 1.5px solid var(--green);
    border-radius: 999px;
    font-family: var(--f-cond);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
  }
  .meister-badge svg { color: var(--amber); width: 18px; height: 18px; }

  /* Contact */
  .contact { background: var(--sand); padding-top: 100px; }
  .contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 80px -40px rgba(31,58,46,0.4);
  }
  .contact-left {
    background: var(--green);
    color: var(--cream);
    padding: 60px 52px;
  }
  .contact-left .eyebrow { color: var(--amber); }
  .contact-left h2 { color: var(--cream); margin-top: 8px; margin-bottom: 26px; }
  .big-phone {
    font-family: var(--f-cond);
    font-weight: 600;
    color: var(--amber);
    font-size: clamp(38px, 4.4vw, 56px);
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1;
    display: inline-block;
    margin-bottom: 10px;
  }
  .big-phone:hover { text-decoration: underline; text-underline-offset: 6px; }
  .contact-left .tap-hint {
    color: rgba(250,247,242,0.85);
    font-size: 16px;
    margin-bottom: 36px;
  }
  .contact-info {
    display: grid;
    gap: 18px;
    margin-bottom: 32px;
    border-top: 1px solid rgba(250,247,242,0.18);
    padding-top: 28px;
  }
  .contact-info .row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .contact-info svg { width: 20px; height: 20px; color: var(--amber); flex: none; margin-top: 2px; }
  .contact-info strong {
    display: block;
    font-family: var(--f-cond);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: var(--amber);
    font-weight: 500;
    margin-bottom: 4px;
  }
  .contact-info span { color: var(--cream); font-size: 15px; line-height: 1.5; }
  .whats-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background .2s;
  }
  .whats-btn:hover { background: #1eb557; }
  .whats-btn svg { width: 20px; height: 20px; }

  .contact-right {
    background: var(--cream);
    padding: 60px 52px;
  }
  .contact-right h3 { font-size: 28px; letter-spacing: 0.03em; margin-bottom: 6px; }
  .contact-right > p.lead {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 15px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
  }
  .field label {
    font-family: var(--f-cond);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 500;
    color: var(--green);
  }
  .field label .req { color: var(--amber); }
  .field label .pref {
    text-transform: none;
    font-family: var(--f-body);
    letter-spacing: 0;
    color: var(--muted);
    font-size: 11px;
    margin-left: 6px;
    font-weight: 400;
  }
  .field input, .field select, .field textarea {
    border: 1.5px solid rgba(31,58,46,0.18);
    background: #fff;
    border-radius: 4px;
    padding: 13px 14px;
    font-size: 15px;
    font-family: var(--f-body);
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(31,58,46,0.08);
  }
  .field.invalid input, .field.invalid select, .field.invalid textarea {
    border-color: #c63b1f;
    background: #fcf3f1;
  }
  .field textarea { resize: vertical; min-height: 110px; }
  .file-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .file-row label.up {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px dashed var(--green);
    color: var(--green);
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background: var(--mint);
    transition: background .15s;
  }
  .file-row label.up:hover { background: #dde4d8; }
  .file-row label.up input { display: none; }
  .file-row .filename { color: var(--muted); font-size: 13px; }
  .check-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 8px 0 20px;
    font-size: 13px;
    color: var(--ink);
    line-height: 1.5;
  }
  .check-row input { margin-top: 3px; }
  .check-row a { color: var(--green); text-decoration: underline; }
  .submit {
    width: 100%;
    background: var(--amber);
    color: #fff;
    border: 0;
    padding: 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.02em;
    transition: background .2s, transform .15s;
  }
  .submit:hover { background: var(--amber-dk); transform: translateY(-1px); }
  .or-call {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: var(--muted);
  }
  .or-call a {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid var(--amber);
    padding-bottom: 2px;
  }
  .success {
    background: var(--mint);
    border: 1.5px solid var(--green);
    border-radius: 6px;
    padding: 28px;
    text-align: center;
    display: none;
  }
  .success.show { display: block; animation: fadeUp .4s ease both; }
  .success h3 { color: var(--green); margin-bottom: 8px; font-size: 22px; }
  .success p { color: var(--ink); margin: 0; }

  /* Footer */
  footer.site {
    background: var(--green);
    color: var(--cream);
    padding: 80px 0 28px;
  }
  footer .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(250,247,242,0.18);
  }
  footer .logo-img { width: 120px; height: 120px; }
  .brand-name--footer strong { font-size: 32px; }
  .brand-name--footer > span { font-size: 30px; }
  footer .foot-tag {
    font-family: var(--f-script);
    color: var(--amber);
    font-size: 36px;
    line-height: 1;
    margin: 22px 0 0;
    display: inline-block;
    transform: rotate(-2deg);
  }
  footer h4 {
    font-family: var(--f-cond);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--amber);
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 18px;
  }
  footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }
  footer li a, footer p {
    color: rgba(250,247,242,0.88);
    text-decoration: none;
    font-size: 14.5px;
    line-height: 1.55;
  }
  footer li a:hover { color: var(--amber); }
  footer .copyright {
    margin-top: 24px;
    color: rgba(250,247,242,0.55);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Floating call button (mobile) */
  .float-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 100;
    background: var(--amber);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px -10px rgba(217,144,38,0.7);
    text-decoration: none;
    animation: pulse 2.4s ease infinite;
  }
  .float-call svg { width: 26px; height: 26px; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 12px 30px -10px rgba(217,144,38,0.7), 0 0 0 0 rgba(217,144,38,0.45); }
    50%      { box-shadow: 0 12px 30px -10px rgba(217,144,38,0.7), 0 0 0 14px rgba(217,144,38,0); }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
  }

  /* === Mobile Off-Canvas Menu === */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(15,25,20,0.55);
    display: none;
    opacity: 0;
    transition: opacity .3s ease;
  }
  .mobile-menu.open {
    display: block;
    opacity: 1;
  }
  .mobile-menu-inner {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(85vw, 360px);
    background: var(--green);
    padding: 80px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    box-shadow: -20px 0 50px -10px rgba(0,0,0,0.4);
  }
  .mobile-menu.open .mobile-menu-inner {
    transform: none;
  }
  .mobile-menu-inner a {
    color: var(--cream);
    text-decoration: none;
    font-family: var(--f-cond);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 20px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid rgba(250,247,242,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-menu-inner a:hover { color: var(--amber); }
  .mobile-menu-inner .mobile-call {
    margin-top: 24px;
    background: var(--amber);
    color: #fff;
    border-radius: 999px;
    padding: 14px 22px;
    justify-content: center;
    border-bottom: 0;
    font-size: 17px;
    letter-spacing: 0.02em;
    text-transform: none;
    font-family: var(--f-body);
    font-weight: 600;
  }
  .mobile-menu-inner .mobile-call:hover { background: var(--amber-dk); color: #fff; }

  /* ===== Responsive ===== */

  /* --- Section-Head Wrap-Verhalten verbessern (allgemein) --- */
  /* Bereits in .section-head: align-items: flex-end + flex-wrap.
     Auf schmaleren Screens den Lead-Text unter den Heading-Block schieben. */

  /* --- Bis 1100px: Lead-Text rutscht unter den Heading-Block --- */
  @media (max-width: 1100px) {
    .section-head { align-items: flex-start; }
    .section-head .lead { max-width: 100%; }
  }

  /* --- Bis 1024px: Tablet-Layout --- */
  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .hamburger { display: inline-flex; }
    .header-phone span.num { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-art { max-width: 460px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .portrait { max-width: 380px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    footer .foot-grid { grid-template-columns: 1fr 1fr; }
    .test-grid { grid-template-columns: repeat(2, 1fr); }
    .test-grid .test-card:nth-child(3) { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; width: 100%; }
    /* Collage auf Tablet kompakter */
    .collage { grid-auto-rows: 110px; }
    /* Service Grid bleibt 2x2 */
  }

  /* --- Bis 860px: Pillars zentrieren, Process zur Mobile-Version --- */
  @media (max-width: 860px) {
    .pillars { grid-template-columns: 1fr; gap: 50px; max-width: 480px; margin: 0 auto; }
    .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; }
    .tile.a { grid-column: span 2; grid-row: span 2; }
    .tile.b { grid-column: span 2; grid-row: span 1; }
    .tile.c { grid-column: span 2; grid-row: span 2; }
    .tile.d { grid-column: span 2; grid-row: span 1; }
    .tile.e { grid-column: span 2; grid-row: span 2; }
    .tile.f { grid-column: span 2; grid-row: span 2; }
  }

  /* --- Bis 720px: Smartphone-Layout --- */
  @media (max-width: 720px) {
    section { padding: 60px 0; }
    .container { padding: 0 20px; }
    h2 { font-size: clamp(28px, 8.5vw, 38px); }

    /* Header siehe unten — eigener Block am Ende der CSS-Datei */

    /* Hero */
    .hero { padding: 50px 0 64px; min-height: auto; }
    .hero-text .eyebrow { margin-bottom: 14px; font-size: 11.5px; }
    .hero-headline { font-size: clamp(30px, 7.5vw, 42px); margin-bottom: 14px; line-height: 1.15; font-weight: 500; }
    .hero-script { font-size: clamp(30px, 8vw, 42px); margin-bottom: 22px; }
    .hero-body { font-size: 16px; margin-bottom: 26px; }
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-ctas .btn { justify-content: center; width: 100%; }
    /* Hero Art kompakter — Badge auf Mobile ausblenden */
    .hero-art { max-width: 360px; }
    .hero-badge { display: none; }

    /* Section-Head */
    .section-head { margin-bottom: 36px; gap: 18px; }
    .section-head .script { font-size: 32px; }

    /* Services */
    .service-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 30px 26px 28px; }

    /* Why */
    .pillars { gap: 44px; }
    .why-claim { margin-top: 50px; }

    /* Process auf Mobile: vertikal — JS-Animation aktiv, gleiches Verhalten wie Desktop */
    .steps { grid-template-columns: 1fr; gap: 36px; }
    .steps-line { display: block; }
    /* Vertikale Track-Schraffur */
    .steps-segment[data-orientation="v"] .segment-track {
      background: repeating-linear-gradient(180deg,
        rgba(31,58,46,0.22) 0 6px,
        transparent 6px 12px);
    }
    /* Progress wächst vertikal nach unten */
    .steps-segment[data-orientation="v"] .segment-progress {
      bottom: auto;
      right: 0;
      transition: height .15s ease-out;
    }
    .step {
      text-align: left;
      padding: 0 0 0 84px;
      position: relative;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .4s ease, transform .4s ease;
    }
    .step.active {
      opacity: 1;
      transform: translateY(0);
    }
    .step-num {
      position: absolute;
      left: 0;
      top: 0;
      margin: 0;
      width: 60px;
      height: 60px;
      font-size: 24px;
      transform: scale(1);
    }
    .process-cta { margin-top: 44px; }

    /* Gallery: 1 Spalte voll, Bilder bekommen ordentlich Höhe */
    .gallery { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 14px; }
    .tile.a, .tile.b, .tile.c, .tile.d, .tile.e, .tile.f {
      grid-column: span 1;
      grid-row: span 1;
    }
    .tile { min-height: 240px; }
    .tile-media { min-height: 200px; }
    .tile-zoom { display: none; }
    .tile-info { padding: 12px 14px 13px; }
    .tile-info .name { font-size: 14px; white-space: normal; }
    .tile-info .tag { font-size: 10px; }
    .tile-count { font-size: 10.5px; padding: 4px 10px; }

    /* Testimonials */
    .test-grid { grid-template-columns: 1fr; gap: 16px; }
    .test-grid .test-card:nth-child(3) { grid-column: auto; max-width: none; margin: 0; }

    /* About */
    .about .signature { font-size: 32px; }

    /* Modal mobile: Slideshow zeigen, Collage verstecken */
    .modal { padding: 0; }
    .modal-panel {
      border-radius: 0;
      max-height: 100vh;
      height: 100vh;
    }
    .modal-close {
      top: 12px;
      right: 12px;
      width: 40px;
      height: 40px;
    }
    .modal-header { padding: 24px 22px 18px; }
    .modal-header h3 { font-size: 21px; }
    .modal-body { padding: 22px 22px 24px; }
    .collage { display: none; }
    .slideshow { display: block; }
    .modal-footer {
      padding: 18px 22px 28px;
      flex-direction: column;
      align-items: stretch;
    }
    .modal-footer .btn { justify-content: center; width: 100%; }

    /* Contact */
    .form-row { grid-template-columns: 1fr; }
    .contact-left, .contact-right { padding: 40px 26px; }

    /* Footer */
    footer.site { padding: 60px 0 24px; }
    footer .foot-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
    .float-call { display: inline-flex; }
  }

  /* --- Bis 380px: Sehr kleine Screens --- */
  @media (max-width: 380px) {
    .container { padding: 0 16px; }
    /* Header siehe Mobile-Block am Ende */
    .hero-headline { font-size: clamp(28px, 8vw, 36px); }
    .hero-script { font-size: clamp(26px, 7.5vw, 34px); }
    .hero-body { font-size: 15px; }
    .service-card { padding: 26px 22px 24px; }
    .service-card h3 { font-size: 22px; }
  }

/* ===========================================================
   UNTERSEITEN — ergänzende Styles
   =========================================================== */

/* Active state in nav */
.nav-links a.active {
  color: var(--amber);
}
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ===== PAGE HERO (kleinere Hero für Unterseiten) ===== */
.page-hero {
  background: var(--cream);
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow {
  margin-bottom: 20px;
  display: inline-block;
}
.page-hero h1 {
  font-family: var(--f-cond);
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  color: var(--green);
  letter-spacing: 0.005em;
  margin: 0 0 24px;
  max-width: 900px;
}
.page-hero-body {
  font-size: 19px;
  max-width: 640px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

/* Inline script-Akzent in Headlines */
.script-inline {
  font-family: var(--f-script);
  font-weight: 400;
  color: var(--amber);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.85em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-1.5deg) translateY(2px);
  text-shadow: 0.4px 0 0 currentColor, -0.4px 0 0 currentColor;
}

/* ===== LEISTUNGEN-DETAIL ===== */
.service-detail {
  padding: 90px 0;
}
.service-detail:nth-child(even) {
  background: var(--sand);
}
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-inner {
  direction: rtl;
}
.service-detail:nth-child(even) .service-detail-inner > * {
  direction: ltr;
}
.service-detail .media {
  aspect-ratio: 4/3;
  background: #d9cdb8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-family: var(--f-cond);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 30px;
}
.service-detail .content .eyebrow {
  margin-bottom: 14px;
  display: inline-block;
}
.service-detail h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: var(--green);
  margin: 0 0 20px;
  line-height: 1.15;
}
.service-detail .lead {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 560px;
}
.service-detail ul.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.service-detail ul.bullets li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.5;
}
.service-detail ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--amber);
}
.service-detail .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== REFERENZEN-FILTER ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--green);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-btn:hover {
  border-color: var(--green);
}
.filter-btn.active {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

/* Stats banner über Galerie */
.stats-banner {
  background: var(--green);
  color: var(--cream);
  padding: 60px 0;
}
.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.stat .big {
  font-family: var(--f-cond);
  font-weight: 700;
  color: var(--amber);
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat h3 {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 14px 0 0;
  color: rgba(250,247,242,0.85);
}

/* Tile-Filtering */
.tile.hidden {
  display: none;
}

/* ===== ÜBER UNS ===== */
.story-section {
  padding: 100px 0;
}
.story-section.alt {
  background: var(--sand);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.story-grid.reverse .story-media {
  order: 2;
}
.story-media {
  aspect-ratio: 4/5;
  background: #d9cdb8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-family: var(--f-cond);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 30px;
  text-align: center;
}
.story-text .eyebrow {
  margin-bottom: 14px;
  display: inline-block;
}
.story-text h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 22px;
  color: var(--green);
  line-height: 1.15;
}
.story-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 18px;
}
.story-text .signature-line {
  font-family: var(--f-script);
  color: var(--amber);
  font-size: 38px;
  line-height: 1;
  margin-top: 24px;
  display: inline-block;
  transform: rotate(-2deg);
  text-shadow: 0.4px 0 0 currentColor, -0.4px 0 0 currentColor;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 26px;
}
.value-card .value-icon {
  width: 44px;
  height: 44px;
  color: var(--amber);
  margin-bottom: 18px;
}
.value-card h3 {
  font-size: 18px;
  color: var(--green);
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}
.value-card p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

/* ===== KONTAKT-SEITE ===== */
.contact-page {
  padding: 80px 0 100px;
  background: var(--cream);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--green);
  color: var(--cream);
  padding: 50px 44px;
  border-radius: 10px;
  position: sticky;
  top: 90px;
}
.contact-info-card .eyebrow {
  color: var(--amber);
  margin-bottom: 16px;
  display: inline-block;
}
.contact-info-card h2 {
  color: var(--cream);
  font-size: clamp(28px, 3.4vw, 36px);
  margin: 0 0 28px;
  line-height: 1.2;
}
.contact-big-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--amber);
  color: #fff;
  padding: 22px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 22px;
  font-family: var(--f-cond);
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  transition: background .2s, transform .15s;
}
.contact-big-phone:hover {
  background: var(--amber-dk);
  transform: translateY(-1px);
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.contact-info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(250,247,242,0.92);
  font-size: 15.5px;
  line-height: 1.5;
}
.contact-info-list svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--amber);
  margin-top: 2px;
}
.contact-info-list a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,160,32,0.4);
  transition: border-color .2s;
}
.contact-info-list a:hover {
  border-bottom-color: var(--amber);
}
.contact-info-card .divider {
  margin: 32px 0;
  height: 1px;
  background: rgba(250,247,242,0.15);
}
.contact-info-card .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
}
.contact-info-card .whatsapp-btn:hover {
  background: #1DA851;
}

/* Kontakt-Formular Card */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 48px 44px;
}
.contact-form-card h2 {
  font-size: clamp(26px, 3vw, 32px);
  color: var(--green);
  margin: 0 0 8px;
}
.contact-form-card .lead {
  color: var(--muted);
  font-size: 15.5px;
  margin: 0 0 32px;
  line-height: 1.55;
}

/* CTA Banner */
.cta-banner {
  background: var(--sand);
  padding: 80px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--cream);
  border-radius: 12px;
  padding: 50px 56px;
  border: 1px solid var(--border);
}
.cta-inner .eyebrow {
  margin-bottom: 12px;
  display: inline-block;
}
.cta-inner h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--green);
  margin: 0 0 14px;
  line-height: 1.2;
}
.cta-inner p {
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.cta-actions .btn {
  justify-content: center;
}

/* ===== Responsive Overrides für Unterseiten ===== */
@media (max-width: 1024px) {
  .service-detail-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-detail:nth-child(even) .service-detail-inner {
    direction: ltr;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-grid.reverse .story-media {
    order: 0;
  }
  .story-media {
    max-width: 480px;
    aspect-ratio: 4/3;
    margin: 0 auto;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-info-card {
    position: static;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 40px 36px;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 60px 0 50px;
  }
  .page-hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }
  .page-hero-body {
    font-size: 16px;
  }
  .service-detail {
    padding: 60px 0;
  }
  .service-detail h2 {
    font-size: clamp(26px, 7vw, 32px);
  }
  .story-section {
    padding: 64px 0;
  }
  .story-text h2 {
    font-size: clamp(26px, 7vw, 32px);
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .value-card {
    padding: 28px 24px;
  }
  .stats-banner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-info-card {
    padding: 38px 28px;
  }
  .contact-big-phone {
    font-size: 18px;
    padding: 18px 22px;
    justify-content: center;
  }
  .contact-form-card {
    padding: 36px 26px;
  }
  .cta-banner {
    padding: 56px 0;
  }
  .cta-inner {
    padding: 32px 24px;
  }
  .filter-bar {
    margin-bottom: 32px;
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Footer-Bottom */
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 13px;
  color: rgba(250,247,242,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ===========================================================
   PATCH-RUNDE: Header-Skalierung, Process-Animation,
   Why-Section, CTA-Banner Script
   =========================================================== */

/* ---- PUNKT 7: Why-Section auf Sand (statt Mint) ---- */
.why.why-sand {
  background: var(--sand);
}

/* ---- PUNKT 3: CTA-Banner Headline mit prominentem Script-Untertitel ---- */
.cta-headline {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--green);
}
.cta-headline .cta-script {
  display: block;
  font-size: clamp(40px, 5vw, 58px);
  color: var(--amber);
  margin-top: 8px;
  transform: rotate(-1.5deg);
  transform-origin: left center;
  text-transform: none;
  line-height: 1.05;
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

/* ---- PUNKT 4: Process-Animation — Step-Aktivierung scroll-synchron ---- */
.steps-wrap .step {
  opacity: 0.35;
  transition: opacity .35s ease;
}
.steps-wrap .step.active {
  opacity: 1;
}
.steps-wrap .step .step-num {
  background: var(--cream);
  color: var(--green);
  border: 3px solid var(--amber);
  transition: background .3s ease, color .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.steps-wrap .step.active .step-num {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 10px 28px -10px rgba(217,144,38,0.55);
}
/* Mobile: alle Steps direkt aktiv */
@media (max-width: 720px) {
  .steps-wrap .step { opacity: 1; }
  .steps-wrap .step .step-num,
  .steps-wrap .step.active .step-num {
    background: var(--amber);
    color: #fff;
  }
}

/* ---- PUNKT 2: Mobile-Header sauber skalieren ---- */
/* Bei 1024px: Mobile-Menu kommt → Logo + Phone + Hamburger müssen sauber sitzen */
@media (max-width: 1024px) {
  .nav { gap: 14px; }
  .logo { flex-shrink: 1; min-width: 0; }
  .header-phone { flex-shrink: 0; }
  .hamburger { flex-shrink: 0; }
}
/* Ab Tablet runter: Phone-Number-Text ausblenden, nur Icon */
@media (max-width: 900px) {
  .header-phone .num {
    display: none;
  }
  .header-phone {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .header-phone svg {
    width: 20px;
    height: 20px;
  }
}
/* ======== MOBILE HEADER (≤720px) ========
   [Logo + "Tischlerei Ghuneim"]   ...  [Phone] [Hamburger]
   ======================================= */
@media (max-width: 720px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }
  /* Logo links — bleibt natürlich erstes Flex-Element */
  .logo {
    gap: 10px;
    flex-shrink: 1;
    min-width: 0;
  }
  .logo-img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }
  /* Brand-Name auf Mobile sichtbar, kompakter */
  .brand-name {
    display: flex;
    padding-left: 0;
  }
  .brand-name strong { font-size: 16px; letter-spacing: 0.05em; }
  .brand-name > span { font-size: 15px; letter-spacing: 0.04em; }

  /* Phone & Hamburger rechts gruppiert (margin-left: auto schiebt nach rechts) */
  .header-phone {
    margin-left: auto;
    width: 44px;
    height: 44px;
    background: var(--amber);
    color: #fff;
    box-shadow: 0 4px 12px -4px rgba(217, 144, 38, 0.5);
  }
  .header-phone:hover {
    background: var(--amber-dk);
  }
  .hamburger {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(250, 247, 242, 0.08);
    transition: background .2s;
  }
  .hamburger:hover,
  .hamburger:focus-visible {
    background: rgba(250, 247, 242, 0.15);
  }
  .hamburger svg {
    width: 22px;
    height: 22px;
  }
}
/* Sehr klein: Brand-Name weg, Logo etwas kleiner */
@media (max-width: 420px) {
  .brand-name { display: none; }
  .logo-img { width: 60px; height: 60px; }
}
@media (max-width: 360px) {
  .nav { gap: 8px; }
  .logo-img { width: 54px; height: 54px; }
  .header-phone, .hamburger { width: 40px; height: 40px; }
  .header-phone svg { width: 18px; height: 18px; }
  .hamburger svg { width: 20px; height: 20px; }
}

/* ---- Aktiver Nav-Link auch in Mobile-Menu hervorheben ---- */
.mobile-menu-inner a.active {
  color: var(--amber);
}

/* ---- Tile-Cursor verstärken, Klick-Affordance ---- */
.tile {
  cursor: pointer;
}
.tile:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ---- Filter-Buttons: bessere Klick-Affordance ---- */
.filter-btn {
  cursor: pointer;
}
.filter-btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ---- Services-Outro (Hinweis auf weitere Leistungen unter den 4 Cards) ---- */
.services-outro {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
}
.services-outro a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--amber);
  font-weight: 500;
  transition: color .2s;
}
.services-outro a:hover {
  color: var(--amber);
}
.services-outro-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--f-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid var(--amber) !important;
  color: var(--green) !important;
}
@media (max-width: 720px) {
  .services-outro {
    font-size: 15px;
    margin-top: 30px;
  }
  .services-outro-link {
    display: block;
    margin-top: 16px;
  }
}

/* ===========================================================
   LEGAL PAGES — Impressum, Datenschutz, AGB
   =========================================================== */
.legal-hero {
  padding-bottom: 50px;
}
.legal-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
}

.legal-section {
  background: var(--cream);
  padding: 70px 0 100px;
}
.legal-container {
  max-width: 760px;
}
.legal-content {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.legal-content h2 {
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--green);
  text-transform: none;
  letter-spacing: 0.005em;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  line-height: 1.25;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  font-family: var(--f-cond);
  font-weight: 600;
  font-size: 18px;
  color: var(--green);
  text-transform: none;
  margin-top: 32px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.legal-content p {
  margin: 0 0 16px;
  color: var(--ink);
}
.legal-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--amber);
  transition: color .2s, text-decoration-color .2s;
}
.legal-content a:hover {
  color: var(--amber);
  text-decoration-color: var(--amber);
}
.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.legal-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 2px;
  background: var(--amber);
}
.legal-content strong {
  font-weight: 600;
  color: var(--green);
}
.legal-meta {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 32px;
}

@media (max-width: 720px) {
  .legal-section {
    padding: 50px 0 70px;
  }
  .legal-content {
    font-size: 15.5px;
  }
  .legal-content h2 {
    margin-top: 36px;
    margin-bottom: 12px;
  }
}

/* ===========================================================
   ECHTE BILDER — Tile + Story
   =========================================================== */
/* Tile-Bilder: cover, transition für Hover */
.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .3s ease;
}
.tile:hover .tile-media img,
.tile:focus-visible .tile-media img {
  transform: scale(1.04);
  filter: brightness(1.04);
}
/* Subtler Gradient-Overlay für bessere Lesbarkeit der tile-zoom Icons */
.tile-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,58,46,0) 60%, rgba(31,58,46,0.25) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.tile:hover .tile-media::after { opacity: 1; }

/* Story-Bilder: img macht story-media zu echtem Container */
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.story-media {
  overflow: hidden;
  background: none; /* Hintergrund weg, Bild übernimmt */
}

/* Hero-Frame Bilder: cover + smooth zoom on hover */
.hero-art .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================================================
   LEISTUNGEN — Service-Detail Bilder + Icon-Platzhalter
   =========================================================== */
/* Echte Bilder: cover wie überall */
.service-detail .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Eleganter Platzhalter für Services ohne Foto */
.service-detail .media.media-icon {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--amber);
  font-family: var(--f-cond);
}
.service-detail .media.media-icon svg {
  width: 96px;
  height: 96px;
  opacity: 0.85;
}
.service-detail .media.media-icon .media-hint {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.6;
  font-weight: 500;
}

/* Portrait auf Startseite (About-Snippet) */
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
