@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/barlow-300.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/barlow-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/barlow-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/barlow-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-900.ttf') format('truetype');
}

/* Saira variable italic — kept as fallback */
@font-face {
  font-family: 'Saira';
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 50% 125%;
  font-display: swap;
  src: url('assets/fonts/saira-italic-var.ttf') format('truetype-variations'),
       url('assets/fonts/saira-italic-var.ttf') format('truetype');
}

/* Dirty Ego display font — hero headline "WERBUNG MIT BISS!" */
@font-face {
  font-family: 'Dirty Ego';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/DIRTYEGO.ttf') format('truetype');
}

/* ===== index.html ===== */
:root {
    --black: #0e0e0e;
    --dark: #1a1a1a;
    --accent: #e31e24;
    --accent2: #ff6b35;
    --light: #f5f4f0;
    --white: #ffffff;
    --mid: #6b6b6b;
    --border: #e0ddd8;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(14,14,14,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .nav-logo span { color: var(--accent); }

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

  .nav-links a {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 2px;
    opacity: 1 !important;
  }

  /* ── HERO ── */
  .hero {
    height: 100vh;
    min-height: 640px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--black);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(14,14,14,0.85) 0%, rgba(14,14,14,0.4) 60%, rgba(14,14,14,0.7) 100%),
      url('assets/projects/porsche-ads-tec-lkw-schraeg-01.webp') center/cover no-repeat;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px 80px;
    max-width: 800px;
  }

  .hero-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--accent);
  }

  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(64px, 9vw, 120px);
    line-height: 0.92;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--accent);
    display: block;
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 44px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: #bf1a1f; transform: translateY(-1px); }

  .btn-ghost {
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.85;
    transition: opacity 0.2s;
  }

  .btn-ghost:hover { opacity: 1; }
  .btn-ghost::before { content: ''; width: 20px; height: 1px; background: currentColor; }

  .hero-phone {
    position: absolute;
    right: 48px;
    bottom: 80px;
    z-index: 2;
    text-align: right;
  }

  .hero-phone small {
    display: block;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
  }

  .hero-phone a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  /* ── STATS STRIP ── */
  .stats {
    background: var(--accent);
    padding: 0;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }

  .stat {
    padding: 36px 40px;
    border-right: 1px solid rgba(255,255,255,0.2);
    text-align: center;
  }

  .stat:last-child { border-right: none; }

  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
    display: block;
  }

  /* ── SERVICES ── */
  .services {
    padding: 100px 48px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.01em;
  }

  .section-link {
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    transition: opacity 0.2s;
  }

  .section-link:hover { opacity: 0.7; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
  }

  .service-card {
    background: var(--white);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

  .service-card:hover .service-arrow { opacity: 1; color: var(--accent); }

  .service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--border);
    margin-bottom: 40px;
    transition: color 0.25s;
  }

  .service-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
  }

  .service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    transition: color 0.25s;
  }

  .service-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--mid);
    transition: color 0.25s;
  }

  .service-arrow {
    position: absolute;
    right: 28px;
    bottom: 28px;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.25s;
  }

  /* ── ABOUT SPLIT ── */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }

  .about-image {
    background: url('assets/projects/mercedes-gle-vollfolierung-matt-schwarz.webp') center/cover no-repeat;
    position: relative;
  }

  .about-image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--accent);
    padding: 20px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
  }

  .about-content {
    background: var(--light);
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 20px;
  }

  .about-content p strong {
    color: var(--black);
    font-weight: 600;
  }

  .about-list {
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
  }

  .about-list li {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .about-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  /* ── PORTFOLIO ── */
  .portfolio {
    padding: 100px 48px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 4px;
  }

  .portfolio-item {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    cursor: pointer;
  }

  .portfolio-item:first-child {
    grid-row: 1 / 3;
  }

  .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s;
    filter: brightness(0.85);
  }

  .portfolio-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.65);
  }

  .portfolio-item:hover .portfolio-info { opacity: 1; }

  .portfolio-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(14,14,14,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .portfolio-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
  }

  .portfolio-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
  }

  /* placeholder colors for portfolio items */
  .p1 { background: linear-gradient(135deg, #2a2a3e, #1a1a2e); }
  .p2 { background: linear-gradient(135deg, #1e2d1e, #2d3e2d); }
  .p3 { background: linear-gradient(135deg, #2e1e1e, #3e2d1e); }
  .p4 { background: linear-gradient(135deg, #1e1e2e, #2e2e1e); }
  .p5 { background: linear-gradient(135deg, #2e2e2e, #1e2e2e); }

  .portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: var(--black);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before {
    content: 'WERBE FORMAT';
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    letter-spacing: -0.02em;
    pointer-events: none;
  }

  .cta-banner h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
  }

  .cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    position: relative;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
  }

  .btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 15px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
  }

  /* ── PROCESS ── */
  .process {
    padding: 100px 48px;
    background: var(--light);
  }

  .process-inner {
    max-width: 1300px;
    margin: 0 auto;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
    z-index: 0;
  }

  .process-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
    margin: 0 auto 24px;
    transition: background 0.2s, border-color 0.2s;
  }

  .process-step:hover .step-num {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
  }

  .step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .step-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--mid);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 64px 48px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1300px;
    margin: 0 auto 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .footer-logo span { color: var(--accent); }

  .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
  }

  .footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
  }

  .footer-contact a:hover { color: var(--white); }

  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--white); }

  .footer-hours {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
  }

  .footer-hours strong {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
  }

  .footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
  }

  .footer-legal {
    display: flex;
    gap: 24px;
  }

  .footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: rgba(255,255,255,0.6); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-tag  { animation: fadeUp 0.6s ease 0.2s both; }
  .hero h1   { animation: fadeUp 0.6s ease 0.35s both; }
  .hero-sub  { animation: fadeUp 0.6s ease 0.5s both; }
  .hero-actions { animation: fadeUp 0.6s ease 0.65s both; }
  .hero-phone   { animation: fadeUp 0.6s ease 0.5s both; }

/* ===== leistungen.html ===== */
:root {
    --black: #0e0e0e;
    --dark: #1a1a1a;
    --accent: #e31e24;
    --light: #f5f4f0;
    --white: #ffffff;
    --mid: #6b6b6b;
    --border: #e0ddd8;
  }
  body { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 72px;
    background: rgba(14,14,14,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 22px; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--white); }
  .nav-links .nav-cta { background: var(--accent); color: var(--white) !important; padding: 9px 20px; border-radius: 2px; }

  /* ── PAGE HERO ── */
  .page-hero {
    height: 50vh; min-height: 360px;
    position: relative; display: flex; align-items: flex-end;
    background: var(--black); overflow: hidden; padding-top: 72px;
  }
  .page-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(14,14,14,0.94) 45%, rgba(14,14,14,0.55) 100%);
  }
  .page-hero::after {
    content: ''; position: absolute; top: 0; bottom: 0; right: 38%;
    width: 3px; background: var(--accent); transform: skewX(-5deg); opacity: 0.5;
  }
  .page-hero-content { position: relative; z-index: 2; padding: 0 48px 64px; animation: fadeUp 0.7s ease 0.1s both; }
  .breadcrumb { font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
  .breadcrumb span { color: var(--accent); }
  .page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(56px, 8vw, 100px); font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 0.92; letter-spacing: -0.01em; }
  .page-hero h1 em { font-style: normal; color: var(--accent); display: block; }
  .page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.55); margin-top: 20px; max-width: 480px; line-height: 1.65; }

  /* ── INTRO STRIP ── */
  .intro-strip { background: var(--light); border-bottom: 1px solid var(--border); padding: 48px; }
  .intro-strip-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
  .intro-strip-text { font-size: 17px; line-height: 1.7; color: #444; }
  .intro-strip-text strong { color: var(--black); font-weight: 600; }

  /* ── FILTER BAR ── */
  .filter-bar { padding: 24px 48px; border-bottom: 1px solid var(--border); position: sticky; top: 72px; background: var(--white); z-index: 50; }
  .filter-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .filter-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); margin-right: 6px; }
  .filter-btn { padding: 7px 16px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--border); background: transparent; color: var(--mid); cursor: pointer; border-radius: 2px; transition: all 0.18s; }
  .filter-btn:hover, .filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

  /* ── BUTTONS ── */
  .btn-primary { background: var(--accent); color: var(--white); padding: 15px 32px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s; display: inline-block; }
  .btn-primary:hover { background: #bf1a1f; }
  .btn-dark { background: var(--black); color: var(--white); padding: 16px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 2px; display: inline-block; transition: background 0.2s; }
  .btn-dark:hover { background: #222; }
  .btn-outline-white { border: 2px solid rgba(255,255,255,0.45); color: var(--white); padding: 15px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 2px; display: inline-block; transition: border-color 0.2s; }
  .btn-outline-white:hover { border-color: rgba(255,255,255,0.9); }

  /* ── SERVICES GRID ── */
  .services-section { padding: 80px 48px 100px; max-width: 1300px; margin: 0 auto; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }

  .service-card { background: var(--white); position: relative; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; text-decoration: none; color: inherit; transition: background 0.25s; }
  .service-card.featured { grid-column: span 2; flex-direction: row; }
  .service-card:hover { background: var(--black); }
  .service-card:hover .sc-name, .service-card:hover .sc-desc { color: var(--white); }
  .service-card:hover .sc-num { color: rgba(255,255,255,0.05); }
  .service-card:hover .sc-arrow { opacity: 1; color: var(--accent); }
  .service-card:hover .sc-tag { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.4); }
  .service-card:hover .sc-footer { border-color: rgba(255,255,255,0.1); }

  .sc-image { overflow: hidden; flex-shrink: 0; }
  .service-card:not(.featured) .sc-image { height: 190px; }
  .service-card.featured .sc-image { width: 44%; min-height: 320px; }
  .sc-image-bg { width: 100%; height: 100%; min-height: inherit; background-size: cover; background-position: center; transition: transform 0.5s ease; display: flex; align-items: center; justify-content: center; font-size: 60px; }
  .service-card:hover .sc-image-bg { transform: scale(1.06); }

  .sc-body { padding: 28px 28px 24px; display: flex; flex-direction: column; flex: 1; }
  .service-card.featured .sc-body { padding: 48px 44px; justify-content: center; }
  .sc-num { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--border); margin-bottom: 18px; transition: color 0.25s; }
  .sc-badge { display: inline-block; background: var(--accent); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; margin-left: 8px; border-radius: 1px; vertical-align: middle; }
  .sc-icon { font-size: 26px; margin-bottom: 10px; display: block; line-height: 1; }
  .sc-name { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px; transition: color 0.25s; line-height: 1.1; }
  .service-card.featured .sc-name { font-size: 30px; }
  .sc-desc { font-size: 13px; line-height: 1.65; color: var(--mid); transition: color 0.25s; flex: 1; }
  .service-card.featured .sc-desc { font-size: 15px; max-width: 380px; }
  .sc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
  .sc-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--border); color: var(--mid); padding: 3px 9px; border-radius: 2px; transition: all 0.25s; }
  .sc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); transition: border-color 0.25s; }
  .sc-link-text { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
  .sc-arrow { font-size: 16px; color: var(--mid); opacity: 0.4; transition: opacity 0.25s, color 0.25s; }

  /* ── PROCESS ── */
  .process { background: var(--black); padding: 100px 48px; }
  .process-inner { max-width: 1300px; margin: 0 auto; }
  .section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
  .section-label::before { content: ''; width: 24px; height: 2px; background: var(--accent); }
  .process-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 4vw, 56px); font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 64px; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
  .process-steps::before { content: ''; position: absolute; top: 27px; left: 8%; right: 8%; height: 1px; background: rgba(255,255,255,0.08); }
  .process-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
  .step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--dark); border: 2px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: var(--accent); margin: 0 auto 28px; transition: background 0.2s, border-color 0.2s; }
  .process-step:hover .step-num { background: var(--accent); border-color: var(--accent); color: var(--white); }
  .step-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
  .step-desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.42); }

  /* ── MATERIALS ── */
  .materials { padding: 60px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .materials-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: center; }
  .materials h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; text-transform: uppercase; line-height: 1.1; }
  .materials h3 span { color: var(--accent); }
  .materials-logos { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
  .mat-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: #bbb; transition: color 0.2s; white-space: nowrap; }
  .mat-logo:hover { color: var(--black); }

  /* ── CTA BANNER ── */
  .cta-banner { background: var(--accent); padding: 80px 48px; text-align: center; position: relative; overflow: hidden; }
  .cta-banner::before { content: 'ANFRAGEN'; position: absolute; font-family: 'Barlow Condensed', sans-serif; font-size: 200px; font-weight: 900; color: rgba(255,255,255,0.07); top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; }
  .cta-banner h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 16px; position: relative; }
  .cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 40px; position: relative; }
  .cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; position: relative; }

  /* ── FOOTER ── */
  footer { background: var(--dark); padding: 64px 48px 32px; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1300px; margin: 0 auto 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px; color: var(--white); text-transform: uppercase; margin-bottom: 16px; }
  .footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
  .footer-contact a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
  .footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
  .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-hours { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.9; }
  .footer-hours strong { color: rgba(255,255,255,0.75); font-weight: 500; }
  .footer-bottom { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: rgba(255,255,255,0.55); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  /* ── DETAIL OVERLAY ── */
  .detail-page { display: none; position: fixed; inset: 0; background: var(--white); z-index: 200; overflow-y: auto; padding-top: 72px; }
  .detail-page.visible { display: block; animation: fadeUp 0.35s ease both; }
  .detail-close { position: fixed; top: 88px; right: 32px; z-index: 210; width: 48px; height: 48px; background: var(--black); color: var(--white); border: none; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; border-radius: 2px; transition: background 0.2s; }
  .detail-close:hover { background: var(--accent); }

  .detail-hero { height: 55vh; min-height: 400px; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
  .detail-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
  .detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0.3) 60%); }
  .detail-hero-content { position: relative; z-index: 2; padding: 0 64px 56px; max-width: 900px; }
  .detail-hero h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(52px, 7vw, 92px); font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 0.92; }
  .detail-hero h2 em { font-style: normal; color: var(--accent); display: block; }

  .detail-body { display: grid; grid-template-columns: 1fr 340px; max-width: 1300px; margin: 0 auto; padding: 80px 48px; gap: 0; }
  .detail-main { padding-right: 72px; border-right: 1px solid var(--border); }
  .detail-sidebar { padding-left: 52px; }
  .detail-intro { font-size: 20px; font-weight: 300; line-height: 1.7; color: #333; margin-bottom: 32px; }
  .detail-text { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 18px; }
  .detail-text strong { color: var(--black); font-weight: 600; }
  .detail-list { list-style: none; margin: 28px 0; }
  .detail-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; line-height: 1.6; padding: 14px 0; border-bottom: 1px solid var(--border); color: #444; }
  .detail-list li:first-child { border-top: 1px solid var(--border); }
  .detail-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 7px; flex-shrink: 0; }

  .detail-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 48px; }
  .gallery-item { height: 200px; background-size: cover; background-position: center; background-color: var(--light); overflow: hidden; transition: transform 0.4s ease; }
  .gallery-item:hover { transform: scale(1.03); }
  .gallery-item:first-child { grid-column: span 2; height: 280px; }

  .sidebar-card { background: var(--light); padding: 28px; margin-bottom: 20px; }
  .sidebar-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
  .sidebar-card p { font-size: 14px; line-height: 1.65; color: var(--mid); }
  .sidebar-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--black); text-decoration: none; display: block; margin: 12px 0 6px; transition: color 0.2s; }
  .sidebar-phone:hover { color: var(--accent); }
  .sidebar-email { font-size: 14px; color: var(--accent); text-decoration: none; }

  .related-services { margin-top: 4px; }
  .related-services h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); margin-bottom: 12px; }
  .related-link { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--black); font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .related-link:hover { color: var(--accent); }
  .related-link span { color: var(--mid); font-size: 15px; }

/* ===== referenzen.html ===== */
:root {
    --black: #0e0e0e;
    --dark: #1a1a1a;
    --accent: #e31e24;
    --light: #f5f4f0;
    --white: #ffffff;
    --mid: #6b6b6b;
    --border: #e0ddd8;
  }
  .page-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(14,14,14,0.5) 0%, rgba(14,14,14,0.9) 100%);
  }
  .page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.55); margin-top: 20px; max-width: 520px; line-height: 1.65; }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--accent);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat { padding: 28px 40px; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
  .stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900; color: var(--white); display: block; line-height: 1; }
  .stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 4px; display: block; }

  /* ── FILTER ── */
  .filter-bar { padding: 24px 48px; border-bottom: 1px solid var(--border); position: sticky; top: 72px; background: var(--white); z-index: 50; }
  .filter-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
  .filter-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .filter-btn { padding: 7px 16px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--border); background: transparent; color: var(--mid); cursor: pointer; border-radius: 2px; transition: all 0.18s; }
  .view-toggle { display: flex; gap: 4px; }
  .view-btn { width: 36px; height: 36px; border: 1px solid var(--border); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 2px; transition: all 0.18s; font-size: 14px; }
  .view-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }

  /* ── MASONRY GALLERY ── */
  .gallery-section { padding: 48px 48px 80px; max-width: 1300px; margin: 0 auto; }

  /* ── GALLERY GRID (CSS Grid with row/col spanning) ── */
  .masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: clamp(180px, 20vw, 280px);
    gap: 4px;
    grid-auto-flow: dense; /* fills gaps left by spanning items */
  }
  .masonry-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    background: #000;
    min-height: 0; /* grid item fix */
    min-width: 0;
  }
  /* tall = 2 rows tall,  wide = 2 columns wide */
  .masonry-item.tall  { grid-row: span 2; }
  .masonry-item.wide  { grid-column: span 2; }

  /* > targets only the project photo, never the logo badge img */
  .masonry-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s;
    filter: brightness(0.9);
  }
  .masonry-item:hover > img {
    transform: scale(1.06);
    filter: brightness(0.55);
  }
  .masonry-item:hover .item-overlay { opacity: 1; }

  .item-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(14,14,14,0.88) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.3s;
    z-index: 2;
    pointer-events: none;
  }
  .item-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
  .item-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--white); letter-spacing: 0.03em; }
  .item-zoom {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--white);
    opacity: 0; transition: opacity 0.3s;
    z-index: 5;
  }
  .masonry-item:hover .item-zoom { opacity: 1; }

  /* ── CORNER L-BRACKET MARKS ──────────────────────────────────────
     Top-left only — keeps it clean and unambiguous. */
  .masonry-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    background:
      linear-gradient(var(--accent), var(--accent)) 10px 10px / 20px 2px no-repeat,
      linear-gradient(var(--accent), var(--accent)) 10px 10px / 2px 20px no-repeat;
  }

  /* ── LOGO WATERMARK — bottom-right, white, no background ── */
  .wf-logo-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 7;
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0.55;
    /* constrain size so the logo fits regardless of image dimensions */
    width: 72px;
    line-height: 0;
  }
  .masonry-item:hover .wf-logo-badge { opacity: 1; }
  .wf-logo-badge img {
    /* Reset every inherited rule from .masonry-item > img */
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    display: block;
    filter: brightness(0) invert(1);
    pointer-events: none;
    clip-path: none !important;
    transform: none !important;
  }

  /* Grid controls height — no aspect-ratio overrides needed on individual items */

  /* 2-column layout on tablet */
  @media (max-width: 900px) {
    .masonry-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: clamp(160px, 30vw, 260px);
    }
  }
  /* 1-column on mobile — disable spanning */
  @media (max-width: 540px) {
    .masonry-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 56vw;
    }
    .masonry-item.tall,
    .masonry-item.wide { grid-row: span 1; grid-column: span 1; }
  }

  /* placeholder items for missing real photos */
  .masonry-placeholder {
    width: 100%; display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    background: var(--light);
  }
  .masonry-placeholder.tall  { grid-row: span 2; }
  .masonry-placeholder.wide  { grid-column: span 2; }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 300;
    background: rgba(14,14,14,0.95);
    align-items: center; justify-content: center;
    padding: 48px;
  }
  .lightbox.open { display: flex; animation: fadeUp 0.25s ease both; }
  .lightbox-inner { position: relative; max-width: 1000px; width: 100%; }
  .lightbox-img {
    width: 100%; max-height: 80vh; object-fit: contain; display: block;
  }
  .lightbox-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
      linear-gradient(var(--accent), var(--accent)) 10px 10px / 18px 2px no-repeat,
      linear-gradient(var(--accent), var(--accent)) 10px 10px / 2px 18px no-repeat,
      linear-gradient(var(--accent), var(--accent)) calc(100% - 10px) calc(100% - 10px) / 18px 2px no-repeat,
      linear-gradient(var(--accent), var(--accent)) calc(100% - 10px) calc(100% - 28px) / 2px 18px no-repeat;
  }
  .lightbox-close { position: absolute; top: -48px; right: 0; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border: none; color: var(--white); font-size: 18px; cursor: pointer; border-radius: 2px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
  .lightbox-close:hover { background: var(--accent); }
  .lightbox-info { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 16px; text-align: center; }
  .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: none; color: var(--white); width: 48px; height: 48px; cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
  .lightbox-nav:hover { background: var(--accent); }
  .lightbox-nav.prev { left: -64px; }
  .lightbox-nav.next { right: -64px; }

  /* ── CATEGORIES SHOWCASE ── */
  .categories { padding: 0 48px 100px; max-width: 1300px; margin: 0 auto; }
  .cat-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
  .section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 4vw, 48px); font-weight: 900; text-transform: uppercase; line-height: 1; }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
  }
  .cat-card {
    background: var(--black);
    position: relative; overflow: hidden;
    height: 280px; cursor: pointer;
    display: flex; align-items: flex-end;
    text-decoration: none; color: inherit;
  }
  .cat-card-cta {
    background: var(--accent);
    align-items: center; justify-content: center;
    text-align: center;
  }
  .cat-card-cta .cat-card-body { padding: 40px; }
  .cat-card-cta .cat-name { font-size: 28px; }
  .cat-card-cta .cat-count { color: rgba(255,255,255,0.85); margin-top: 8px; }

  .gallery-footer {
    text-align: center;
    margin-top: 64px;
    padding: 0 24px;
  }
  .gallery-footer p {
    font-size: 15px;
    color: var(--mid);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
  }
  .cat-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s, filter 0.4s; filter: brightness(0.5); }
  .cat-card:hover .cat-card-bg { transform: scale(1.06); filter: brightness(0.35); }
  .cat-card-body { position: relative; z-index: 2; padding: 28px; }
  .cat-name { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1.1; margin-bottom: 6px; }
  .cat-count { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .cat-arrow { position: absolute; right: 24px; bottom: 24px; z-index: 2; width: 36px; height: 36px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; opacity: 0; transition: opacity 0.3s; }
  .cat-card:hover .cat-arrow { opacity: 1; }

  /* ── CTA BANNER ── */
  .cta-banner { background: var(--black); padding: 80px 48px; text-align: center; position: relative; overflow: hidden; }
  .cta-banner::before { content: 'REFERENZEN'; position: absolute; font-family: 'Barlow Condensed', sans-serif; font-size: 180px; font-weight: 900; color: rgba(255,255,255,0.025); top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; }
  .cta-banner p { font-size: 17px; color: rgba(255,255,255,0.55); margin-bottom: 40px; position: relative; }
  .btn-primary { background: var(--accent); color: var(--white); padding: 16px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 2px; display: inline-block; transition: background 0.2s; }
  .btn-outline { border: 2px solid rgba(255,255,255,0.3); color: var(--white); padding: 15px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 2px; display: inline-block; transition: border-color 0.2s; }
  .btn-outline:hover { border-color: rgba(255,255,255,0.75); }
  .footer-contact-links a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
  .footer-contact-links a:hover { color: var(--white); }
  .footer-hours-text { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.9; }
  .footer-hours-text strong { color: rgba(255,255,255,0.75); font-weight: 500; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== ueber-uns.html ===== */
:root {
    --black: #0e0e0e;
    --dark: #1a1a1a;
    --accent: #e31e24;
    --light: #f5f4f0;
    --white: #ffffff;
    --mid: #6b6b6b;
    --border: #e0ddd8;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 2px;
  }

  /* ── PAGE HERO ── */
  .page-hero {
    height: 52vh;
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: var(--black);
    overflow: hidden;
    padding-top: 72px;
  }

  .page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14,14,14,0.92) 40%, rgba(14,14,14,0.5) 100%);
  }

  /* diagonal accent line */
  .page-hero::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: 35%;
    width: 3px;
    background: var(--accent);
    transform: skewX(-6deg);
    opacity: 0.6;
  }

  .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px 64px;
  }

  .breadcrumb {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
  }

  .page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(56px, 8vw, 100px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.92;
    letter-spacing: -0.01em;
  }

  .page-hero h1 em {
    font-style: normal;
    color: var(--accent);
    display: block;
  }

  /* ── INTRO SPLIT ── */
  .intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .intro-text {
    padding: 80px 72px 80px 48px;
    border-right: 1px solid var(--border);
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .intro-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 28px;
  }

  .intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
  }

  .intro-text strong {
    color: var(--black);
    font-weight: 600;
  }

  .intro-tagline {
    margin-top: 36px;
    padding: 24px 28px;
    border-left: 4px solid var(--accent);
    background: var(--light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--black);
    line-height: 1.2;
  }

  .intro-tagline em {
    font-style: normal;
    color: var(--accent);
  }

  .intro-visual {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    background: var(--light);
  }

  .intro-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: url('assets/werbe%20format%20-%20loc.png') center/cover no-repeat;
    position: absolute;
    inset: 0;
  }

  .intro-visual-badge {
    position: absolute;
    bottom: 40px;
    left: -1px;
    background: var(--accent);
    color: var(--white);
    padding: 18px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
  }

  /* ── NUMBERS ── */
  .numbers {
    background: var(--black);
    padding: 72px 48px;
  }

  .numbers-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .number-item {
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .number-item:last-child { border-right: none; }

  .number-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: block;
  }

  .number-val span {
    color: var(--accent);
  }

  .number-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    margin-top: 8px;
    display: block;
  }

  /* ── VALUES ── */
  .values {
    padding: 100px 48px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .values-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
  }

  .values-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
  }

  .values-header p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mid);
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
  }

  .value-card {
    background: var(--white);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
  }

  .value-card:hover { background: var(--black); }
  .value-card:hover .value-title,
  .value-card:hover .value-text { color: var(--white); }
  .value-card:hover .value-num { color: rgba(255,255,255,0.05); }

  .value-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(0,0,0,0.04);
    line-height: 1;
    transition: color 0.25s;
    pointer-events: none;
  }

  .value-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.25s;
  }

  .value-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mid);
    transition: color 0.25s;
  }

  /* ── TEAM ── */
  .team {
    background: var(--light);
    padding: 100px 48px;
  }

  .team-inner {
    max-width: 1300px;
    margin: 0 auto;
  }

  .team-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .team-card {
    background: var(--white);
    overflow: hidden;
  }

  .team-photo {
    height: 280px;
    background: var(--border);
    position: relative;
    overflow: hidden;
  }

  .team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    background: linear-gradient(135deg, #e8e4df, #d4d0cb);
    color: rgba(0,0,0,0.15);
  }

  .team-info {
    padding: 24px 28px 28px;
    border-top: 3px solid var(--accent);
  }

  .team-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .team-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }

  .team-bio {
    font-size: 13px;
    line-height: 1.65;
    color: var(--mid);
  }

  /* ── TEAM: single founder spotlight (no photo) ─────────────── */
  .team-single .team-inner {
    max-width: 1100px;
  }
  .team-single .team-header {
    gap: 32px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 48px;
  }
  .team-intro {
    max-width: 420px;
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--mid);
  }

  .team-founder {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    background: var(--white);
    box-shadow:
      0 1px 0 var(--border),
      0 28px 60px rgba(14,14,14,0.06);
    overflow: hidden;
  }

  .team-founder-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: clamp(48px, 10vw, 72px) clamp(32px, 5vw, 48px);
    background:
      radial-gradient(circle at 20% 20%, rgba(227,30,36,0.12) 0%, transparent 45%),
      linear-gradient(160deg, #141414 0%, #252525 45%, #1a1a1a 100%);
    border-right: 1px solid rgba(255,255,255,0.06);
  }

  .team-founder-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent);
  }

  .team-founder-initials {
    position: relative;
    z-index: 1;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(88px, 15vw, 132px);
    line-height: 0.82;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--paper);
    text-shadow: 0 4px 28px rgba(0,0,0,0.35);
  }

  .team-founder-tag {
    position: relative;
    z-index: 1;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(245,245,245,0.45);
    padding-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 8px;
  }

  .team-founder-body {
    padding: clamp(36px, 6vw, 56px) clamp(32px, 6vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    border-top: 3px solid var(--accent);
  }

  .team-founder-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 3.8vw, 40px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    color: var(--black);
  }

  .team-founder-role {
    margin: 0 0 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .team-founder-bio {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    max-width: 52ch;
  }
  .team-founder-bio strong {
    color: var(--black);
    font-weight: 600;
  }

  .team-founder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
  }
  .team-founder-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    transition: color 0.2s ease;
  }
  .team-founder-link:hover {
    color: var(--accent);
  }

  @media (max-width: 800px) {
    .team-founder {
      grid-template-columns: 1fr;
    }
    .team-founder-visual {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      border-right: 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .team-founder-initials {
      font-size: clamp(64px, 18vw, 100px);
    }
    .team-founder-tag {
      margin-top: 0;
      border-top: 0;
      padding-top: 0;
      text-align: right;
      max-width: 140px;
    }
    .team-single .team-header {
      flex-direction: column;
      align-items: stretch;
    }
  }
  .testimonials {
    padding: 100px 48px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .testimonial {
    padding: 40px 36px;
    border: 1px solid var(--border);
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .testimonial:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(227,30,36,0.08);
  }

  .testimonial-quote {
    font-size: 48px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    color: var(--accent);
    line-height: 0.8;
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 28px;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .author-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .author-company {
    font-size: 12px;
    color: var(--mid);
    letter-spacing: 0.05em;
  }

  .stars {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }

  /* ── CERTIFICATES / PARTNERS ── */
  .trust-bar {
    background: var(--light);
    padding: 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .trust-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .trust-items {
    display: flex;
    align-items: center;
    gap: 48px;
    flex: 1;
  }

  .trust-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #bbb;
    white-space: nowrap;
    transition: color 0.2s;
  }

  .trust-item:hover { color: var(--black); }

  /* ── CTA ── */
  .cta-banner {
    background: var(--black);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before {
    content: 'WERBE FORMAT';
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }

  .cta-banner h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
  }

  .cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    position: relative;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
    display: inline-block;
  }

  .btn-outline {
    border: 2px solid rgba(255,255,255,0.25);
    color: var(--white);
    padding: 15px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: border-color 0.2s;
    display: inline-block;
  }

  .btn-outline:hover { border-color: rgba(255,255,255,0.6); }

  .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
  }

  .footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
  }

  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
  }

  .footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-hours {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.9;
  }

  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

  .footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.2s;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .page-hero-content { animation: fadeUp 0.7s ease 0.1s both; }

/* ===== kontakt.html ===== */
:root {
    --black: #0e0e0e;
    --dark: #1a1a1a;
    --accent: #e31e24;
    --light: #f5f4f0;
    --white: #ffffff;
    --mid: #6b6b6b;
    --border: #e0ddd8;
  }

  /* ── HERO — split black / accent ── */
  .page-hero {
    margin-top: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
  }
  .hero-left {
    background: rgba(14, 14, 14, 0.86);
    padding: 72px 56px 72px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .hero-left::after {
    content: 'KONTAKT';
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 140px; font-weight: 900;
    color: rgba(255,255,255,0.04);
    bottom: -20px; right: -10px;
    letter-spacing: -0.03em;
    pointer-events: none;
    white-space: nowrap;
  }
  .hero-left h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 7vw, 92px);
    font-weight: 900; text-transform: uppercase;
    color: var(--white); line-height: 0.9;
    letter-spacing: -0.01em;
    position: relative; z-index: 1;
  }
  .hero-left h1 em { font-style: normal; color: var(--accent); display: block; }
  .hero-left p {
    font-size: 16px; color: rgba(255,255,255,0.65);
    margin-top: 20px; line-height: 1.65;
    max-width: 400px; position: relative; z-index: 1;
  }

  .hero-right {
    background: rgba(227, 30, 36, 0.92);
    padding: 72px 48px 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }
  .hero-contact-item { display: flex; align-items: flex-start; gap: 20px; }
  .hc-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .hc-label {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 5px;
  }
  .hc-value {
    font-family: 'Barlow', sans-serif;
    font-size: 17px; font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.01em;
    line-height: 1.4;
    transition: opacity 0.2s;
    display: block;
  }
  .hc-value:hover { opacity: 0.75; }

  /* ── MAIN CONTENT GRID ── */
  .main-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900; text-transform: uppercase;
    line-height: 1; margin-bottom: 36px;
  }

  /* Service selector tabs */
  .service-tabs {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 32px;
  }
  .service-tab {
    padding: 8px 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    border: 1px solid var(--border);
    background: transparent; color: var(--mid);
    cursor: pointer; border-radius: 2px;
    transition: all 0.18s;
  }
  .service-tab:hover, .service-tab.active {
    background: var(--black); color: var(--white); border-color: var(--black);
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-row.full { grid-template-columns: 1fr; }

  .field { display: flex; flex-direction: column; gap: 6px; }
  .field label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }
  .field input, .field textarea, .field select {
    border: 1px solid var(--border);
    background: var(--white);
    padding: 14px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px; color: var(--black);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    appearance: none;
  }
  .field input:focus, .field textarea:focus, .field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(227,30,36,0.08);
  }
  .field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

  .form-check {
    display: flex; align-items: flex-start; gap: 12px;
    margin: 20px 0 28px;
  }
  .form-check input[type="checkbox"] {
    width: 18px; height: 18px; flex-shrink: 0;
    margin-top: 2px; cursor: pointer;
    accent-color: var(--accent);
  }
  .form-check label {
    font-size: 13px; line-height: 1.6;
    color: var(--mid); cursor: pointer;
  }
  .form-check label a { color: var(--accent); text-decoration: none; }

  .btn-submit {
    width: 100%;
    background: var(--accent); color: var(--white);
    padding: 18px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    border: none; border-radius: 2px;
    cursor: pointer; transition: background 0.2s, transform 0.15s;
  }
  .btn-submit:hover { background: #bf1a1f; transform: translateY(-1px); }

  .form-note {
    font-size: 12px; color: var(--mid);
    margin-top: 12px; text-align: center;
    line-height: 1.6;
  }
  .form-status-msg {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
  }
  .form-status-ok {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #43a047;
  }
  .form-status-error {
    background: #fdecea;
    color: #b71c1c;
    border-left: 4px solid var(--accent);
  }
  .btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
  }

  /* ── SIDEBAR INFO ── */
  .info-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }

  .info-card {
    background: var(--light);
    padding: 36px 32px;
    margin-bottom: 3px;
    position: relative;
  }
  .info-card.dark { background: var(--black); }
  .info-card.accent-card { background: var(--accent); }

  .info-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.03em;
    margin-bottom: 20px;
  }
  .info-card.dark h3 { color: var(--white); }
  .info-card.accent-card h3 { color: var(--white); }

  .info-row {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--border);
  }
  .info-card.dark .info-row { border-color: rgba(255,255,255,0.08); }
  .info-row:last-child { border-bottom: none; padding-bottom: 0; }
  .info-row:first-of-type { padding-top: 0; }

  .info-row-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
  .info-row-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 3px;
  }
  .info-card.dark .info-row-label { color: rgba(255,255,255,0.4); }
  .info-row-label:not(.dark *) { color: var(--mid); }
  .info-row-val { font-size: 15px; font-weight: 500; }
  .info-card.dark .info-row-val { color: var(--white); }
  .info-row-val a { color: inherit; text-decoration: none; transition: color 0.2s; }
  .info-card.dark .info-row-val a:hover { color: var(--accent); }

  .hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 24px;
  }
  .hours-day { font-size: 13px; font-weight: 600; }
  .hours-time { font-size: 13px; color: var(--mid); }
  .hours-closed { color: var(--mid); font-style: italic; }

  /* Promise items */
  .promise-list { list-style: none; }
  .promise-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 14px; font-weight: 500; color: var(--white);
  }
  .promise-list li:last-child { border-bottom: none; }
  .promise-list li::before {
    content: '✓';
    font-weight: 900; color: var(--white);
    background: rgba(255,255,255,0.2);
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; flex-shrink: 0;
  }

  /* ── MAP STRIP ── */
  .map-strip {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 480px;
    min-height: 420px;
  }
  .map-embed {
    position: relative;
    overflow: hidden;
  }
  .map-embed iframe {
    width: 100%; height: 100%;
    border: none; display: block;
    filter: grayscale(20%) contrast(1.05);
  }
  .map-info {
    padding: 64px 56px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .map-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px; font-weight: 900;
    text-transform: uppercase; color: var(--white);
    line-height: 1; margin-bottom: 28px;
  }
  .map-info h3 span { color: var(--accent); }
  .map-address {
    font-size: 17px; font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.8; margin-bottom: 28px;
  }
  .map-address strong { color: var(--white); font-weight: 600; }
  .map-directions {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    transition: opacity 0.2s;
  }
  .map-directions:hover { opacity: 0.75; }

  /* ── FAQ STRIP ── */
  .faq { padding: 100px 48px; background: var(--light); }
  .faq-inner { max-width: 900px; margin: 0 auto; }
  .faq-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900; text-transform: uppercase;
    line-height: 1; margin-bottom: 56px;
    text-align: center;
  }
  .faq-item {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    cursor: pointer;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--border); }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.02em;
    user-select: none;
  }
  .faq-toggle {
    width: 32px; height: 32px; flex-shrink: 0;
    background: var(--black); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 300; line-height: 1;
    transition: background 0.2s, transform 0.3s;
  }
  .faq-item.open .faq-toggle { background: var(--accent); transform: rotate(45deg); }
  .faq-a {
    font-size: 15px; line-height: 1.75; color: #555;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding-top 0.35s;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-top: 16px; }
  .main-grid { animation: fadeUp 0.6s ease 0.1s both; }

  /* Shared utility classes for inline-style cleanup */
  .section-title-spaced { margin-bottom: 28px; }
  .btn-align-start { align-self: flex-start; }
  .section-title-lg {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
  }
  .testimonials-title { margin-top: 12px; }


/* Leistung icon assets */
.service-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.service-card-more {
  text-decoration: none;
  color: inherit;
  background: #efefef;
}

.service-card-more .service-arrow {
  opacity: 1;
  color: var(--black);
}

.service-card-more:hover .service-arrow {
  color: var(--accent);
}

.portfolio-icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.95;
}

.sc-icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
}

.sc-card-icon-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
}
.service-card:hover .sc-card-icon-img { transform: scale(1.08); }

.masonry-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* Index services section: alternate background test */
.services {
  background: #f1f3f7;
}

.services .service-card {
  background: #f8f9fc;
}

/* Logo image usage (header + footer) */
.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  display: block;
  height: 65px;
  width: auto;
}

.footer-logo img {
  display: block;
  height: 44px;
  width: auto;
}

/* Navigation dropdown for Leistungen sublinks */
.nav-dropdown {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.nav-parent::after {
  content: '▾';
  margin-left: 6px;
  font-size: 11px;
}

.nav-sublinks {
  list-style: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 290px;
  background: rgba(14, 14, 14, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 120;
}

.nav-dropdown:hover .nav-sublinks,
.nav-dropdown:focus-within .nav-sublinks {
  opacity: 1;
  pointer-events: auto;
}

.nav-sublinks li {
  margin: 0;
}

.nav-sublinks a {
  display: block;
  padding: 9px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.nav-sublinks a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

/* Header topbar + responsive navigation */
:root {
  --topbar-height: 34px;
  --nav-height: 72px;
  --header-total-height: 106px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 130;
}

.topbar-inner {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar a,
.topbar span {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.topbar a:hover {
  color: var(--white);
}

nav {
  top: var(--topbar-height) !important;
}

.hero,
.page-hero {
  padding-top: var(--header-total-height) !important;
}

.filter-bar {
  top: var(--header-total-height) !important;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  border-radius: 2px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .topbar-inner,
  nav {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 900px) {
  :root {
    --topbar-height: 30px;
    --header-total-height: 102px;
  }

  .topbar-left span {
    display: none;
  }

  .topbar-inner {
    font-size: 10px;
  }

  nav {
    height: var(--nav-height);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none !important;
    position: fixed;
    top: var(--header-total-height);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-total-height));
    overflow-y: auto;
    background: rgba(14, 14, 14, 0.99);
    padding: 16px 20px 24px !important;
    flex-direction: column;
    gap: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.nav-open .nav-links {
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .nav-dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-sublinks {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    min-width: 0;
    background: transparent;
    border: 0;
    padding: 0 0 8px 14px;
  }

  .nav-sublinks a {
    font-size: 12px;
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.78);
  }

  .nav-parent::after {
    content: '';
    margin: 0;
  }
}

/* ============================================================
   2026 REDESIGN — editorial / mono + spot color
   Overrides previous index.html section vocabulary.
   ============================================================ */
:root {
  --ink: #0a0a0a;
  --ink-2: #131313;
  --ink-3: #1c1c1c;
  --paper: #f5f4f0;
  --paper-2: #ece9e0;
  --paper-3: #e0ddd2;
  --rule-dark: rgba(255,255,255,0.08);
  --rule-light: #d9d6cc;
  --hot: #e31e24;
  --hot-deep: #bf1a1f;
  --measure: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ── ELEVATED BASE ── */
.r26 body, body.r26 { background: var(--paper); color: var(--ink); }

.r26-section { padding: clamp(72px, 10vw, 140px) var(--gutter); position: relative; }
.r26-shell { max-width: var(--measure); margin: 0 auto; position: relative; }
.r26-ink { background: var(--ink); color: var(--paper); }
.r26-paper { background: var(--paper); }
.r26-cream { background: var(--paper-2); }

/* Vertical "01 — LABEL" rail that sits in the left margin */
.r26-rail {
  position: absolute;
  top: clamp(72px, 10vw, 140px);
  left: clamp(20px, 3vw, 36px);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.42);
  display: flex;
  align-items: center;
  gap: 18px;
  pointer-events: none;
}
.r26-rail::after {
  content: '';
  width: 1px;
  height: 64px;
  background: currentColor;
  opacity: 0.5;
}
.r26-ink .r26-rail { color: rgba(245,244,240,0.45); }

/* Eyebrow + display heading — replaces .section-label/.section-title pair */
.r26-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hot);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.r26-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
}
.r26-display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
}
.r26-display em { font-style: normal; color: var(--hot); display: block; }
.r26-display .stroke {
  -webkit-text-stroke: 1.5px currentColor;
  color: transparent;
  display: inline-block;
}

/* ── HERO ── */
.r26-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: var(--header-total-height);
}
.r26-hero-copy {
  position: relative;
  z-index: 3;
  flex: 1;
  padding: clamp(40px, 6vw, 96px) clamp(24px, 4vw, 64px) 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1100px;
}
.r26-hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--hot);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.r26-hero-tag::before {
  content: '';
  width: 36px;
  height: 2px;
  background: currentColor;
}
/* ── HERO HEADLINE (matches the van wrap: "WERBUNG MIT BISS!") ─── */
.r26-hero-headline {
  font-family: 'Dirty Ego';
  display: block;
  margin: 0 0 32px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--paper);
}
.r26-hero-line1 {
  display: block;
  font-family: 'Dirty Ego', 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(32px, 5vw, 82px);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--paper);
  margin-bottom: clamp(0px, 0.2vw, 4px);
}
.r26-hero-biss {
  display: inline-block;
  font-family: 'Dirty Ego', 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(96px, 18vw, 150px);
  line-height: 0.85;
  letter-spacing: 0.04em;
  color: var(--hot);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.25),
    0 12px 32px rgba(227, 30, 36, 0.28);
}
.r26-hero-bang {
  display: inline-block;
  margin-left: 0.02em;
}
.r26-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(245,244,240,0.7);
  max-width: 480px;
  margin: 0 0 36px;
  font-weight: 300;
}
.r26-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* ── HERO MEDIA (video loop + designed fallback) ──────────────── */
.r26-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
}

/* Video sits on top of the pattern fallback. If the file is missing
   or fails to decode, the pattern shows through. */
.r26-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* Animated geometric pattern shown until a video file is added.
   Two layered SVGs drift slowly to suggest motion. */
.r26-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(225,29,52,0.10) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(245,244,240,0.04) 0%, transparent 40%),
    repeating-linear-gradient(135deg,
      rgba(245,244,240,0.018) 0px,
      rgba(245,244,240,0.018) 1px,
      transparent 1px,
      transparent 14px),
    repeating-linear-gradient(45deg,
      rgba(225,29,52,0.025) 0px,
      rgba(225,29,52,0.025) 1px,
      transparent 1px,
      transparent 24px);
  background-size: 100% 100%, 100% 100%, 200px 200px, 200px 200px;
  animation: heroDrift 28s linear infinite;
}
@keyframes heroDrift {
  0%   { background-position: 0% 0%, 0% 0%,   0   0,   0   0; }
  100% { background-position: 0% 0%, 0% 0%, 200px 200px, -200px 200px; }
}

/* Vignette + readability gradient sits above video and pattern */
.r26-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.45) 45%, rgba(10,10,10,0.2) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0) 35%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
}

.r26-hero-foot {
  border-top: 1px solid rgba(245,244,240,0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  position: relative;
  z-index: 3;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
}
.r26-hero-foot > div {
  padding: 22px 28px;
  border-right: 1px solid rgba(245,244,240,0.1);
  font-family: 'Barlow Condensed', sans-serif;
}
.r26-hero-foot > div:last-child { border-right: 0; }
.r26-hero-foot .label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.45);
  margin-bottom: 4px;
}
.r26-hero-foot .value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.r26-hero-foot a.value:hover { color: var(--hot); }

.r26-hero-mark {
  position: absolute;
  bottom: -0.18em;
  left: -0.04em;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(220px, 38vw, 560px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(245,244,240,0.025);
  pointer-events: none;
  white-space: nowrap;
}

/* ── BUTTONS (refreshed) ── */
.r26-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.r26-btn--solid { background: var(--hot); color: var(--paper); }
.r26-btn--solid:hover { background: var(--hot-deep); transform: translateY(-2px); }
.r26-btn--ink   { background: var(--ink); color: var(--paper); }
.r26-btn--ink:hover { background: var(--hot); }
.r26-btn--paper { background: var(--paper); color: var(--ink); }
.r26-btn--paper:hover { background: var(--hot); color: var(--paper); }
.r26-btn--ghost {
  background: transparent;
  color: inherit;
  padding: 18px 0;
  border-bottom: 1px solid currentColor;
}
.r26-btn--ghost:hover { color: var(--hot); }
.r26-btn .arrow { display: inline-block; transition: transform 0.25s; }
.r26-btn:hover .arrow { transform: translateX(6px); }

/* ── SERVICES INDEX (vertical hover-expand list) ── */
/* ── SERVICES INDEX (homepage) ───────────────────────────────── */
.r26-services-head {
  max-width: 880px;
  margin-bottom: clamp(56px, 7vw, 96px);
  text-align: left;
}
.r26-services-head .r26-display {
  margin-top: 14px;
  margin-bottom: 28px;
}
.r26-services-lede {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 640px;
  margin: 0;
  font-weight: 300;
}
.r26-services-lede strong { color: var(--ink); font-weight: 600; }

/* ── HEX GRID (services index) ───────────────────────────────── */
.hex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 56px) clamp(24px, 2.5vw, 44px);
  align-items: start;
}
.hex-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 8px 12px;
  transition: transform 0.4s ease;
}
.hex-card:hover { transform: translateY(-6px); }

/* Hexagon frame: outer fill = border color, inner pseudo = paper bg
   creating a clean 1.5px hex outline that holds the icon. */
.hex-frame {
  position: relative;
  width: 132px;
  height: 152px; /* ratio 1 : 1.155 (regular hexagon) */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rule-light);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin-bottom: 22px;
  transition: background 0.35s ease, transform 0.4s ease;
}
.hex-frame::before {
  content: '';
  position: absolute;
  inset: 1.5px;
  background: var(--paper);
  clip-path: inherit;
  transition: background 0.35s ease;
}
.hex-frame img {
  position: relative;
  z-index: 1;
  width: 56%;
  height: 56%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.hex-card:hover .hex-frame {
  background: var(--hot);
  transform: rotate(-3deg);
}
.hex-card:hover .hex-frame img { transform: scale(1.06); }

.hex-name {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
  max-width: 220px;
  transition: color 0.3s ease;
}
.hex-card:hover .hex-name { color: var(--hot); }

.hex-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0;
  max-width: 220px;
  font-weight: 400;
}

/* "Mehr" / "All services" arrow card at the end of the grid */
.hex-card--more {
  justify-content: center;
  align-self: center;
  padding-top: 0;
  padding-bottom: 24px;
}
.hex-arrow {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid var(--rule-light);
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  margin-bottom: 16px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.hex-card--more:hover .hex-arrow {
  background: var(--hot);
  border-color: var(--hot);
  color: var(--paper);
  transform: translateX(6px) rotate(-3deg);
}
.hex-more-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hex-card--more:hover .hex-more-label { color: var(--hot); }

@media (max-width: 1080px) {
  .hex-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .hex-grid { grid-template-columns: repeat(2, 1fr); }
  .hex-frame { width: 116px; height: 134px; }
}
@media (max-width: 420px) {
  .hex-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT (asymmetric with mark) ── */
.r26-about {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.r26-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
  position: relative;
  z-index: 2;
}
/* Studio location panel (map + info card) */
.r26-about-location {
  position: relative;
  min-height: clamp(440px, 56vw, 640px);
  overflow: hidden;
  background: var(--ink-2);
}
.r26-about-map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.r26-about-map-embed .wf-map-gate { border-radius: 0; }
.r26-about-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
.r26-about-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(35%) contrast(0.95) brightness(0.98);
  transition: filter 0.4s ease;
}
.r26-about-location:hover .r26-about-map { filter: none; }
.r26-about-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  background: var(--hot);
  color: var(--paper);
  padding: 14px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(10,10,10,0.18);
}
.r26-about-stamp::before {
  content: '— ';
  margin-right: 6px;
}

/* Floating info card overlay (bottom-left) */
.r26-about-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  max-width: 360px;
  z-index: 2;
  background: var(--paper);
  padding: 26px 28px 22px;
  box-shadow: 0 18px 40px rgba(10,10,10,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.r26-about-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-light);
}
.r26-about-card-city {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.r26-about-card-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.r26-about-card-rows > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: start;
}
.r26-about-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 3px;
}
.r26-about-card-value {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}
.r26-about-card-value a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.r26-about-card-value a:hover { color: var(--hot); }

.r26-about-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.r26-about-card-cta:hover {
  background: var(--hot);
  transform: translateX(4px);
}
.r26-about-card-cta .arrow { font-size: 16px; }

@media (max-width: 720px) {
  .r26-about-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px 22px;
  }
  .r26-about-card-rows > div { grid-template-columns: 88px 1fr; gap: 10px; }
  .r26-about-stamp { top: 16px; right: 16px; }
}
.r26-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 4vw, 40px) 0;
}
.r26-about-copy p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  color: var(--ink-3);
  margin: 0 0 18px;
}
.r26-about-copy p strong { color: var(--ink); font-weight: 600; }
.r26-about-points {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.r26-about-points li {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.3;
}
.r26-about-points li::before {
  content: '+';
  color: var(--hot);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 16px;
  margin-top: -2px;
}
.r26-about-mark {
  position: absolute;
  top: 50%;
  right: -2vw;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(280px, 36vw, 540px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(10,10,10,0.04);
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
}

/* ── PORTFOLIO (name tiles) ── */
.r26-work {
  background: var(--ink);
  color: var(--paper);
}
.r26-work .r26-eyebrow { color: var(--hot); }
.r26-work .r26-display { color: var(--paper); }
.r26-work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: clamp(240px, 28vw, 320px);
  gap: 4px;
}
.r26-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(20px, 2vw, 32px);
  text-decoration: none;
  color: var(--paper);
  background: var(--ink-2);
  transition: transform 0.4s ease;
}
.r26-tile.feature { grid-row: span 2; }
.r26-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.r26-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--tile-bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.r26-tile:hover::after { transform: scale(1.05); }
.r26-tile:hover::before { opacity: 0.85; }
.r26-tile-tone-1 { background: linear-gradient(135deg, #1a1a1a 0%, #2a1414 100%); }
.r26-tile-tone-2 { background: linear-gradient(135deg, #131313 0%, #1c1410 100%); }
.r26-tile-tone-3 { background: linear-gradient(135deg, #1a1a1a 0%, #0e1d1d 100%); }
.r26-tile-tone-4 { background: linear-gradient(135deg, #1a1410 0%, #0e0e0e 100%); }
.r26-tile-tone-5 { background: linear-gradient(135deg, #1f1414 0%, #110b0b 100%); }
.r26-tile-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.r26-tile-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hot);
}
.r26-tile-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--paper);
}
.r26-tile.feature .r26-tile-name { font-size: clamp(36px, 4.4vw, 64px); }
.r26-tile-num {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(245,244,240,0.55);
}
.r26-tile-arrow {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.35s, transform 0.35s, background 0.25s, color 0.25s;
}
.r26-tile:hover .r26-tile-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--hot);
  color: var(--paper);
}

/* ── PROCESS RIBBON ── */
.r26-flow {
  background: var(--paper-2);
}
.r26-flow-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.r26-flow-head .meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
  border-left: 2px solid var(--hot);
  padding-left: 14px;
}
.r26-flow-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.r26-flow-step {
  position: relative;
  padding: 36px 28px 36px 28px;
  border-right: 1px solid var(--rule-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  transition: background 0.35s ease;
}
.r26-flow-step:last-child { border-right: 0; }
.r26-flow-step:hover { background: var(--paper); }
.r26-flow-step-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.r26-flow-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--ink);
  -webkit-text-stroke: 1.5px var(--ink);
  -webkit-text-fill-color: transparent;
  transition: -webkit-text-fill-color 0.35s, color 0.35s;
}
.r26-flow-step:hover .r26-flow-num {
  -webkit-text-fill-color: var(--hot);
  -webkit-text-stroke-color: var(--hot);
}
.r26-flow-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--hot);
  letter-spacing: 0.2em;
}
.r26-flow-step:last-child .r26-flow-arrow { display: none; }
.r26-flow-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.r26-flow-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-3);
  opacity: 0.8;
}

/* ── CTA BANNER ── */
.r26-cta {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 8vw, 120px) var(--gutter);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.r26-cta-shell {
  max-width: var(--measure);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
.r26-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7.5vw, 128px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0;
}
.r26-cta h2 em { font-style: normal; color: var(--hot); display: block; }
.r26-cta-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 8px;
}
.r26-cta-side p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(245,244,240,0.65);
  margin: 0 0 8px;
  max-width: 360px;
}
.r26-cta-bg {
  position: absolute;
  inset: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(180px, 28vw, 400px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(227,30,36,0.06);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-transform: uppercase;
  z-index: 1;
}

/* ── FOOTER REFRESH ── */
.r26-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 7vw, 96px) var(--gutter) 28px;
  border-top: 1px solid var(--rule-dark);
}
.r26-footer-shell { max-width: var(--measure); margin: 0 auto; }
.r26-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule-dark);
  margin-bottom: 28px;
}
.r26-footer-brand img { height: 56px; width: auto; display: block; margin-bottom: 22px; }
.r26-footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,244,240,0.55);
  margin: 0 0 24px;
  max-width: 340px;
}
.r26-footer-contact { display: flex; flex-direction: column; gap: 8px; }
.r26-footer-contact a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.r26-footer-contact a::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--hot);
  display: inline-block;
}
.r26-footer-contact a:hover { color: var(--hot); }
.r26-footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.4);
  margin: 0 0 18px;
}
.r26-footer-col ul { list-style: none; padding: 0; margin: 0; }
.r26-footer-col li { margin-bottom: 10px; }
.r26-footer-col a {
  font-size: 14px;
  color: rgba(245,244,240,0.7);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.r26-footer-col a:hover { color: var(--hot); padding-left: 6px; }
.r26-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.r26-footer-bottom p {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.32);
  margin: 0;
}
.r26-footer-legal { display: flex; gap: 24px; }
.r26-footer-legal a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.32);
  text-decoration: none;
  transition: color 0.2s;
}
.r26-footer-legal a:hover { color: var(--hot); }

/* ── TOPBAR + NAV refinement ── */
.r26-topbar {
  background: var(--ink);
  color: rgba(245,244,240,0.65);
  font-family: 'Barlow Condensed', sans-serif;
}
.r26-topbar a { color: rgba(245,244,240,0.7); text-decoration: none; }
.r26-topbar a:hover { color: var(--hot); }
.r26-topbar-inner {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.r26-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.r26-social a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,244,240,0.25);
  border-radius: 50%;
  font-size: 10px;
  letter-spacing: 0;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.r26-social a:hover { border-color: var(--hot); background: var(--hot); color: var(--paper); }

/* ── PAGE HERO refresh (inner pages) ── */
.r26-page-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding-top: var(--header-total-height);
  min-height: clamp(380px, 50vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.r26-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) brightness(0.55);
}
.r26-page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 60%, rgba(227,30,36,0.4) 100%);
}
.r26-page-hero-shell {
  position: relative;
  z-index: 2;
  max-width: var(--measure);
  margin: 0 auto;
  width: 100%;
  padding: 56px var(--gutter) clamp(48px, 6vw, 80px);
}
.r26-crumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.5);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.r26-crumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.r26-crumb a:hover { color: var(--hot); }
.r26-crumb span { color: var(--hot); }
.r26-crumb .sep { color: rgba(245,244,240,0.25); }
.r26-page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0;
}
.r26-page-hero h1 em { font-style: normal; color: var(--hot); display: block; }
.r26-page-hero-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: rgba(245,244,240,0.72);
  max-width: 520px;
  margin: 22px 0 0;
}
.r26-page-hero-num {
  position: absolute;
  bottom: -0.2em;
  right: 2vw;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(220px, 30vw, 460px);
  line-height: 0.8;
  color: rgba(245,244,240,0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 1;
}

/* ── INNER LEISTUNG DETAIL ── */
.r26-leistung {
  background: var(--paper);
  padding: clamp(56px, 7vw, 100px) var(--gutter);
}
.r26-leistung-shell {
  max-width: var(--measure);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.r26-leistung-main h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
}
.r26-leistung-lead {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0 0 28px;
  font-weight: 300;
}
.r26-leistung-features {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule-light);
}
.r26-leistung-features li {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-3);
  padding: 18px 0 18px 36px;
  border-bottom: 1px solid var(--rule-light);
  position: relative;
}
.r26-leistung-features li::before {
  content: counter(li-num, decimal-leading-zero);
  counter-increment: li-num;
  position: absolute;
  left: 0;
  top: 19px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--hot);
}
.r26-leistung-features { counter-reset: li-num; }

.r26-leistung-aside {
  position: sticky;
  top: calc(var(--header-total-height) + 24px);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.r26-aside-card {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 28px;
}
.r26-aside-card .r26-eyebrow { color: var(--hot); margin-bottom: 14px; }
.r26-aside-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245,244,240,0.7);
  margin: 0 0 22px;
}
.r26-aside-card .r26-btn { width: 100%; justify-content: space-between; padding: 14px 18px; }
.r26-aside-back {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border: 1px solid var(--rule-light);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.r26-aside-back:hover { background: var(--ink); color: var(--paper); }

.r26-related {
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--rule-light);
  padding-top: 32px;
}
.r26-related h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 18px;
}
.r26-related-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 4px;
}
.r26-related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: var(--paper-2);
  text-decoration: none;
  color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, padding 0.2s;
}
.r26-related-list a:hover { background: var(--ink); color: var(--paper); padding-left: 28px; }
.r26-related-list a span { color: var(--hot); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .r26-rail { display: none; }
}

@media (max-width: 1024px) {
  .r26-work-grid { grid-template-columns: 1fr 1fr; }
  .r26-tile.feature { grid-row: auto; }
  .r26-flow-track { grid-template-columns: 1fr 1fr; }
  .r26-flow-step:nth-child(2n) { border-right: 0; }
  .r26-cta-shell { grid-template-columns: 1fr; }
  .r26-about-grid { grid-template-columns: 1fr; }
  .r26-about-points { grid-template-columns: 1fr; }
  .r26-leistung-shell { grid-template-columns: 1fr; }
  .r26-leistung-aside { position: static; }
  .r26-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .r26-hero-biss { font-size: clamp(72px, 22vw, 180px); }
  .r26-hero-line1 { font-size: clamp(26px, 8vw, 56px); }
  .r26-hero-foot { grid-template-columns: 1fr 1fr; }
  .r26-hero-foot > div:nth-child(2n) { border-right: 0; }
  .r26-hero-foot > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule-dark); }
  .r26-flow-track { grid-template-columns: 1fr; }
  .r26-flow-step { border-right: 0; border-bottom: 1px solid var(--rule-light); }
  .r26-flow-step:last-child { border-bottom: 0; }
  .r26-work-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .r26-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .r26-cta h2 { font-size: clamp(40px, 12vw, 60px); }
  .r26-page-hero h1 { font-size: clamp(40px, 11vw, 72px); }
}

/* ── PROJECT GALLERY (on leistung-*.html pages) ──────────────────── */
.leistung-gallery-shell {
  display: block !important;
  padding-top: 24px;
  padding-bottom: 64px;
}
.leistung-gallery-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-light);
}
.leistung-gallery-head h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin: 0;
}
.leistung-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.leistung-gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.leistung-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s;
}
.leistung-gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}
.leistung-gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.78) 100%);
  color: #fff;
  transform: translateY(20%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.leistung-gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.lg-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.lg-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 900px) {
  .leistung-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .leistung-gallery { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (impressum / datenschutz)
═══════════════════════════════════════════════════════════════ */
.legal-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 32px 96px;
  line-height: 1.85;
  color: var(--ink-2, #444);
}
.legal-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink, #0e0e0e);
  margin-bottom: 16px;
}
.legal-section h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 28px 0 10px;
}
.legal-section p { margin-bottom: 14px; }
.legal-section a { color: var(--accent); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-list {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-list li { margin-bottom: 6px; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
}
.legal-table th {
  background: var(--light);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.legal-btn-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
  font-family: inherit;
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════════ */
#wf-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark, #1a1a1a);
  color: var(--paper, #f5f4f0);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
#wf-cookie-banner.wf-cookie-visible { transform: translateY(0); }
#wf-cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,244,240,0.8);
  min-width: 220px;
}
#wf-cookie-banner a { color: var(--accent); text-decoration: none; }
#wf-cookie-banner a:hover { text-decoration: underline; }
.wf-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.wf-cookie-btn {
  padding: 10px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.wf-cookie-btn--accept {
  background: var(--accent, #e31e24);
  color: #fff;
}
.wf-cookie-btn--accept:hover { background: #bf1a1f; }
.wf-cookie-btn--reject {
  background: rgba(255,255,255,0.08);
  color: rgba(245,244,240,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}
.wf-cookie-btn--reject:hover { background: rgba(255,255,255,0.15); }

/* Google Maps consent gate */
.wf-map-gate {
  width: 100%; height: 100%;
  background: var(--dark, #1a1a1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.6;
}
.wf-map-gate strong { display: block; color: #fff; font-size: 17px; margin-bottom: 4px; }
.wf-map-gate-btn {
  padding: 12px 28px;
  background: var(--accent, #e31e24);
  color: #fff;
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.wf-map-gate-btn:hover { background: #bf1a1f; }

/* ============================================================
   ACCESSIBILITY — skip link + focus visible
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--hot, #e31e24);
  color: #fff;
  padding: 12px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: top 0.15s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Universal keyboard focus ring — applies only when navigating via keyboard,
   never on mouse clicks, so designed hover states aren't double-stamped. */
:focus-visible {
  outline: 2px solid var(--hot, #e31e24);
  outline-offset: 3px;
  border-radius: 2px;
}
/* On dark surfaces, keep the ring red but bump offset so it's never lost
   against the brand red itself. */
.r26-ink :focus-visible,
.r26-hero :focus-visible,
.r26-work :focus-visible,
.r26-cta :focus-visible,
.r26-footer :focus-visible,
.r26-topbar :focus-visible,
nav :focus-visible {
  outline-color: #fff;
}
/* Buttons that ARE the brand red — switch to white ring instead of red-on-red. */
.r26-btn--solid:focus-visible,
.btn-primary:focus-visible,
.btn-submit:focus-visible,
.nav-cta:focus-visible,
.wf-map-gate-btn:focus-visible {
  outline-color: #fff;
  outline-offset: 3px;
}


/* =====================================================================
   MOBILE / RESPONSIVE — comprehensive breakpoints for all inner pages
   ===================================================================== */

/* ── 900 px: first tablet break ─────────────────────────────────────── */
@media (max-width: 900px) {

  /* ── r26-page-hero shell padding ── */
  .r26-page-hero-shell { padding-left: 24px; padding-right: 24px; }

  /* ── ÜBER UNS: intro split ── */
  .intro { grid-template-columns: 1fr; }
  .intro-text { padding: 56px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .intro-visual { min-height: 300px; }
  .team-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
  .team-header p { max-width: 100%; }

  /* ── LEISTUNGEN: services grid ── */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: 1 / -1; flex-direction: column; }
  .service-card.featured .sc-image { width: 100%; min-height: 220px; }
  .service-card.featured .sc-body { padding: 32px 28px; }

  /* ── LEISTUNGEN: process steps 2-col ── */
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .process-step { padding: 0 16px 40px; }

  /* ── ÜBER UNS: values ── */
  .values-grid { grid-template-columns: 1fr 1fr; }
  .values-header { grid-template-columns: 1fr; gap: 20px; }

  /* ── KONTAKT: hero split → stack ── */
  .page-hero { grid-template-columns: 1fr; }
  .hero-left { padding: 56px 24px 48px; }
  .hero-right { padding: 48px 24px 56px; }

  /* ── KONTAKT: map strip → stack ── */
  .map-strip { grid-template-columns: 1fr; }
  .map-embed { min-height: 300px; }
  .map-info { padding: 48px 24px; }

  /* ── KONTAKT: info sidebar ── */
  .info-sidebar { grid-template-columns: 1fr; }

  /* ── SHARED old footer ── */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── 768 px: tablets / large phones ────────────────────────────────── */
@media (max-width: 768px) {

  /* ── r26-page-hero ── */
  .r26-page-hero { min-height: clamp(280px, 45vh, 380px); }
  .r26-page-hero-shell { padding-left: 20px; padding-right: 20px; padding-bottom: 40px; }

  /* ── LEISTUNGEN: padding & intro ── */
  .intro-strip { padding: 32px 20px; }
  .intro-strip-inner { grid-template-columns: 1fr; gap: 20px; }
  .filter-bar { padding: 16px 20px; }
  .services-section { padding: 48px 20px 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; }
  .process { padding: 60px 20px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .materials { padding: 48px 20px; }
  .materials-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 60px 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-actions .btn-primary,
  .cta-actions .btn-dark,
  .cta-actions .btn-outline-white { text-align: center; }

  /* ── REFERENZEN: padding & stats ── */
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 20px; }
  .gallery-section { padding: 32px 16px 60px; }

  /* ── ÜBER UNS: numbers ── */
  .numbers { padding: 48px 20px; }
  .numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .number-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 28px 20px; }
  .number-item:nth-child(2n) { border-left: 1px solid rgba(255,255,255,0.08); }
  .number-item:nth-last-child(-n+2) { border-bottom: none; }
  .number-val { font-size: 56px; }
  .values { padding: 60px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .team { padding: 60px 20px; }

  /* ── KONTAKT: layout ── */
  .main-grid { padding: 48px 20px; }
  .faq { padding: 60px 20px; }
  .faq-title { margin-bottom: 36px; }

  /* ── SHARED old footer ── */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── 540 px: phones ──────────────────────────────────────────────────── */
@media (max-width: 540px) {

  /* ── r26-page-hero ── */
  .r26-page-hero h1 { font-size: clamp(36px, 12vw, 60px); }
  .r26-page-hero-sub { font-size: 14px; }

  /* ── LEISTUNGEN ── */
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 0 0 32px; }
  .services-grid { grid-template-columns: 1fr; }

  /* ── REFERENZEN: filter bar scrollable ── */
  .filter-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .filter-inner { flex-wrap: nowrap; min-width: max-content; }
  .stats-bar { grid-template-columns: 1fr 1fr; }

  /* ── ÜBER UNS ── */
  .intro-text { padding: 40px 20px; }
  .intro-tagline { font-size: 20px; padding: 18px 20px; }
  .numbers-inner { grid-template-columns: 1fr; }
  .number-item { border-left: none !important; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .number-item:last-child { border-bottom: none; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 32px 24px; }

  /* ── KONTAKT: hero ── */
  .hero-left { padding: 48px 20px 40px; }
  .hero-right { padding: 40px 20px 48px; gap: 24px; }
  .hc-icon { width: 40px; height: 40px; font-size: 18px; }

  /* ── KONTAKT: map ── */
  .map-embed { min-height: 240px; }
  .map-info { padding: 40px 20px; }
}
