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

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

    @font-face {
      font-family: 'Source Sans 3';
      font-style: normal;
      font-weight: 300 700;
      font-display: swap;
      src: url('../fonts/source-sans-3-latin.woff2') format('woff2');
    }

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

    :root {
      --white:      #ffffff;
      --off:        #f4f7fb;
      --light:      #e8eef5;
      --border:     #d4dde8;
      --mid:        #7a8fa6;
      --text:       #2c3540;
      --dark:       #1a2535;
      --blue:       #3192d0;
      --blue-dark:  #2478b5;
      --blue-faint: #f0f7fc;
      --font-head:  'Barlow Condensed', Arial, 'Helvetica Neue', Helvetica, sans-serif;
      --font-body:  'Source Sans 3', Arial, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 18px;
      line-height: 1.68;
      overflow-x: hidden;
    }

    /* ─── HEADER ──────────────────────────────────────────── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 72px;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    }

    .logo { text-decoration: none; display: flex; align-items: center; }
    .logo img { height: 44px; width: auto; display: block; }

    nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    nav a {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      transition: color 0.2s;
    }

    nav a:hover { color: var(--blue); }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 3px solid rgba(49,146,208,0.55);
      outline-offset: 3px;
    }

    .nav-cta {
      background: var(--blue);
      color: var(--white) !important;
      padding: 11px 24px;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--blue-dark) !important; }

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

    .hero-bg-img {
      position: absolute;
      inset: 0;
      background-image: url('../images/8_MW_Treppengelaender.jpg');
      background-size: cover;
      background-position: center 30%;
      opacity: 0.72;
    }

    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(26,37,53,0.65) 0%,
        rgba(26,37,53,0.38) 55%,
        rgba(26,37,53,0.10) 100%
      );
    }

    .shape {
      position: absolute;
      pointer-events: none;
    }

    .shape-1 {
      width: 500px; height: 500px;
      border: 1px solid rgba(49,146,208,0.15);
      top: -80px; right: -80px;
      animation: spinSlow 40s linear infinite;
    }

    .shape-2 {
      width: 300px; height: 300px;
      border: 1px solid rgba(49,146,208,0.1);
      bottom: 60px; right: 200px;
      animation: spinSlow 30s linear infinite reverse;
    }

    .shape-line {
      width: 800px; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(49,146,208,0.4), transparent);
      top: 50%; right: -100px;
      transform: rotate(-12deg);
      animation: slideH 8s ease-in-out infinite alternate;
    }

    .shape-dot {
      width: 6px; height: 6px;
      background: var(--blue);
      border-radius: 50%;
      top: 38%; right: 28%;
      box-shadow: 0 0 20px rgba(49,146,208,0.8);
      animation: blink 3s ease-in-out infinite;
    }

    @keyframes spinSlow { to { transform: rotate(360deg); } }
    @keyframes slideH {
      from { transform: rotate(-12deg) translateX(-60px); }
      to   { transform: rotate(-12deg) translateX(60px); }
    }
    @keyframes blink {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.35; transform: scale(1.8); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 120px 48px 80px;
      width: 100%;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 24px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 36px; height: 2px;
      background: var(--blue);
    }

    .hero-title {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: clamp(3rem, 6.5vw, 6.2rem);
      line-height: 1.0;
      text-transform: uppercase;
      letter-spacing: 0.01em;
      color: var(--white);
      margin-bottom: 20px;
    }

    .hero-title .blue { color: var(--blue); }

    .hero-tagline {
      font-family: var(--font-body);
      font-size: 1.25rem;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.05em;
      margin-bottom: 44px;
    }

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

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--blue);
      color: var(--white);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 16px 32px;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.85);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 16px 32px;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

    /* ─── TICKER ─────────────────────────────────────────── */
    .ticker-wrap {
      background: var(--blue);
      overflow: hidden;
      padding: 16px 0;
    }

    .ticker {
      display: inline-flex;
      animation: ticker 38s linear infinite;
      white-space: nowrap;
    }

    .ticker span {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      padding: 0 30px;
    }

    .ticker-sep { color: rgba(255,255,255,0.4); }

    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── SECTION BASE ───────────────────────────────────── */
    section { padding: 96px 48px; }
    #ueber-uns { scroll-margin-top: 80px; }
    .container { max-width: 1200px; margin: 0 auto; }
    button { border: none; cursor: pointer; background: none; }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 14px;
    }

    .section-eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 2px;
      background: var(--blue);
    }

    .section-title {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: clamp(2rem, 3.8vw, 3.4rem);
      line-height: 1.05;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .section-desc {
      font-size: 1.05rem;
      color: var(--mid);
      max-width: 500px;
      line-height: 1.75;
    }

    /* ─── LEISTUNGEN ─────────────────────────────────────── */
    .services-section { background: var(--white); }

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

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

    .service-card {
      background: var(--white);
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: background 0.25s, transform 0.25s;
      cursor: default;
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 3px;
      background: var(--blue);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }

    .service-card:hover { background: var(--blue-faint); transform: translateY(-3px); }
    .service-card:hover::after { transform: scaleX(1); }

    .service-icon {
      font-size: 2.1rem;
      color: var(--blue);
      margin-bottom: 18px;
      display: block;
      line-height: 1;
    }

    .service-name {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .service-desc {
      font-size: 0.92rem;
      color: var(--mid);
      line-height: 1.6;
    }

    .service-num {
      position: absolute;
      top: 14px; right: 18px;
      font-family: var(--font-head);
      font-weight: 900;
      font-size: 2.8rem;
      color: var(--light);
      line-height: 1;
      transition: color 0.3s;
    }

    .service-card:hover .service-num { color: rgba(49,146,208,0.1); }

    /* ─── PROZESS ────────────────────────────────────────── */
    .process-section {
      background: var(--off);
      padding: 96px 0 96px 48px;
      overflow: hidden;
    }

    .process-header {
      max-width: 1200px;
      padding-right: 48px;
      margin-bottom: 44px;
    }

    .process-scroll-wrap {
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      cursor: grab;
      user-select: none;
      scroll-behavior: smooth;
      scroll-padding-left: 0;
      scroll-snap-type: x mandatory;
    }

    .process-scroll-wrap::-webkit-scrollbar { display: none; }
    .process-scroll-wrap:active { cursor: grabbing; }

    .process-strip {
      display: flex;
      gap: 16px;
      padding-right: 48px;
      width: max-content;
      align-items: stretch;
    }

    .process-card {
      width: 320px;
      height: 440px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      background: var(--dark);
      scroll-snap-align: start;
      scroll-snap-stop: normal;
    }

    .process-card-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0.48;
      transition: opacity 0.4s, transform 0.5s;
    }

    .process-card:hover .process-card-img {
      opacity: 0.62;
      transform: scale(1.05);
    }

    .process-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(26,37,53,0.96) 0%,
        rgba(26,37,53,0.45) 55%,
        rgba(26,37,53,0.15) 100%
      );
    }

    .process-card-num {
      position: absolute;
      top: 22px; left: 26px;
      font-family: var(--font-head);
      font-weight: 900;
      font-size: 4rem;
      line-height: 1;
      color: var(--blue);
      opacity: 0.55;
    }

    .process-card-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 26px 28px;
    }

    .process-card-title {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.55rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 6px;
    }

    .process-card-desc {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.5;
    }

    .process-cta-card {
      width: 280px;
      height: 440px;
      flex-shrink: 0;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 36px;
      position: relative;
      overflow: hidden;
      scroll-snap-align: start;
      scroll-snap-stop: normal;
    }

    .process-cta-card::before {
      content: '';
      position: absolute;
      width: 340px; height: 340px;
      border: 1px solid rgba(255,255,255,0.15);
      top: -100px; right: -100px;
      animation: spinSlow 30s linear infinite;
    }

    .process-cta-card::after {
      content: '';
      position: absolute;
      width: 200px; height: 200px;
      border: 1px solid rgba(255,255,255,0.1);
      bottom: -60px; left: -60px;
      animation: spinSlow 20s linear infinite reverse;
    }

    .process-cta-inner {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .process-cta-label {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: 1.6rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 28px;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      color: var(--blue);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 14px 26px;
      transition: background 0.2s, transform 0.2s;
      border: none;
    }

    .btn-white:hover { background: var(--off); transform: translateY(-2px); }

    /* ─── ÜBER UNS ───────────────────────────────────────── */
    .about-section { background: var(--dark); padding: 0; }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 560px;
    }

    .about-photo {
      position: relative;
      overflow: hidden;
      min-height: 460px;
    }

    .about-photo img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }

    .about-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26,37,53,0.45) 0%, rgba(26,37,53,0.15) 100%);
    }

    .about-photo-badge {
      position: absolute;
      bottom: 32px; right: 32px;
      background: var(--blue);
      padding: 18px 26px;
      text-align: center;
    }

    .badge-year {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: 2.6rem;
      color: var(--white);
      line-height: 1;
      display: block;
    }

    .badge-sub {
      font-family: var(--font-body);
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      margin-top: 4px;
      display: block;
    }

    .about-text {
      padding: 68px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-text .section-eyebrow { color: var(--blue); }
    .about-text .section-eyebrow::before { background: var(--blue); }
    .about-text .section-title { color: var(--white); }

    .about-owner {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 3px;
    }

    .about-role {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.38);
      margin-bottom: 26px;
    }

    .about-body {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.62);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .about-body em { font-style: normal; color: rgba(255,255,255,0.9); }

    .cert-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 12px;
      padding: 11px 18px;
      border: 1px solid rgba(49,146,208,0.35);
      font-family: var(--font-head);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    .cert-dot { width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }

    /* ─── GALERIE ────────────────────────────────────────── */
    .gallery-section {
      background: var(--off);
      padding: 96px 0 96px 48px;
      overflow: hidden;
    }

    .gallery-header {
      max-width: 1200px;
      padding-right: 48px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 44px;
    }

    .btn-outline-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--border);
      color: var(--text);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 12px 22px;
      transition: border-color 0.2s, color 0.2s;
      white-space: nowrap;
    }

    .btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); }

    .gallery-scroll-wrap {
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      cursor: grab;
      user-select: none;
      scroll-behavior: smooth;
      scroll-padding-left: 0;
      scroll-snap-type: x mandatory;
    }

    .gallery-scroll-wrap::-webkit-scrollbar { display: none; }
    .gallery-scroll-wrap:active { cursor: grabbing; }

    .gallery-strip {
      display: flex;
      gap: 16px;
      padding-right: 48px;
      width: max-content;
      align-items: flex-start;
    }

    .gallery-item {
      width: 300px;
      height: 380px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      background: var(--light);
      scroll-snap-align: start;
      scroll-snap-stop: normal;
    }

    .gallery-item:nth-child(even) { margin-top: 44px; }

    .gallery-item img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img { transform: scale(1.06); }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,37,53,0.88) 0%, rgba(26,37,53,0.0) 55%);
      opacity: 0;
      transition: opacity 0.35s;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 22px;
    }

    .gallery-item:hover .gallery-overlay { opacity: 1; }

    .gallery-label {
      font-family: var(--font-head);
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--white);
    }

    .gallery-sub {
      font-family: var(--font-body);
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--blue);
      margin-top: 3px;
    }

    /* ─── KONTAKT ─────────────────────────────────────────── */
    .contact-section { background: var(--white); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
    }

    .contact-left .section-title { margin-bottom: 16px; }

    .contact-left p {
      font-size: 1.05rem;
      color: var(--mid);
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .contact-info-block {
      background: var(--off);
      border: 1px solid var(--border);
      padding: 24px 28px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 32px;
    }

    .info-item {}

    .info-label {
      font-family: var(--font-head);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 3px;
    }

    .info-value {
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.5;
    }

    /* Form */
    .contact-form {}

    .form-note {
      font-size: 0.92rem;
      color: var(--mid);
      line-height: 1.6;
      margin-bottom: 18px;
    }

    .form-group {
      border-bottom: 1px solid var(--border);
    }

    .form-group:first-child { border-top: 1px solid var(--border); }

    .form-group label {
      display: block;
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid);
      padding: 15px 0 0;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      display: block;
      width: 100%;
      background: transparent;
      border: none;
      outline: none;
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--text);
      padding: 6px 0 13px;
      appearance: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #667b93;
      opacity: 1;
    }

    .form-group textarea { height: 90px; resize: none; }

    .form-footer {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: flex-end;
      margin-top: 28px;
    }

    .form-status {
      flex-basis: 100%;
      font-size: 0.92rem;
      color: var(--blue-dark);
      text-align: right;
      min-height: 1.5em;
    }

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

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

    .footer-logo img { height: 36px; filter: brightness(0) invert(1); opacity: 0.8; }

    .footer-brand p {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.38);
      line-height: 1.75;
      margin-top: 16px;
      max-width: 270px;
    }

    .footer-col h4 {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 16px;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }

    .footer-col ul li a,
    .footer-col ul li span {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.42);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.22);
      font-family: var(--font-head);
      letter-spacing: 0.06em;
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.22);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom a:hover { color: var(--blue); }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center;
      gap: 10px 24px;
      min-width: 0;
    }

    .cookie-panel {
      position: fixed;
      left: 24px;
      right: 24px;
      bottom: 24px;
      z-index: 200;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      max-width: 920px;
      margin: 0 auto;
      padding: 18px 20px;
      background: rgba(26,37,53,0.96);
      border: 1px solid rgba(49,146,208,0.45);
      box-shadow: 0 18px 60px rgba(0,0,0,0.28);
      color: rgba(255,255,255,0.78);
      backdrop-filter: blur(14px);
    }

    .cookie-panel.show { display: flex; }

    .cookie-copy {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: start;
    }

    .cookie-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      color: var(--blue);
      border: 1px solid rgba(49,146,208,0.35);
    }

    .cookie-title {
      font-family: var(--font-head);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 3px;
    }

    .cookie-text {
      font-size: 0.9rem;
      line-height: 1.55;
    }

    .cookie-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
      flex-shrink: 0;
    }

    .cookie-link {
      display: inline-flex;
      align-items: center;
      color: rgba(255,255,255,0.7);
      font-family: var(--font-head);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 11px 0;
    }

    .cookie-link:hover { color: var(--blue); }

    .cookie-button {
      background: var(--blue);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 11px 18px;
      transition: background 0.2s, transform 0.2s;
    }

    .cookie-button:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
    }

    /* ─── BURGER MENÜ ───────────────────────────────────── */
    .burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      width: 40px;
      height: 40px;
      padding: 4px;
      background: transparent;
      border: none;
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.2s;
    }

    .burger span {
      display: block;
      height: 2px;
      background: var(--blue);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
      transform-origin: center;
    }

    .burger:hover span,
    .burger.open span { background: var(--blue-dark); }

    .burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: var(--white);
      border-top: 2px solid var(--blue);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      z-index: 99;
      flex-direction: column;
      padding: 8px 0 16px;
    }

    .mobile-nav.open { display: flex; }

    .mobile-nav a {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.15rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      padding: 14px 24px;
      border-bottom: 1px solid var(--light);
      transition: color 0.2s, background 0.2s;
    }

    .mobile-nav a:last-child {
      border-bottom: none;
      background: var(--blue);
      color: var(--white);
      margin: 8px 16px 0;
      text-align: center;
    }

    .mobile-nav a:hover { color: var(--blue); }
    .mobile-nav a:last-child:hover { background: var(--blue-dark); color: var(--white); }

    /* ─── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 1060px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .about-inner { grid-template-columns: 1fr; }
      .about-photo { min-height: 320px; }
      .contact-grid { grid-template-columns: 1fr; gap: 52px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 700px) {
      header { padding: 0 20px; }
      nav { display: none; }
      .burger { display: flex; }
      section { padding: 60px 20px; }
      .gallery-section { padding: 60px 0 60px 20px; }
      .process-section { padding: 60px 0 60px 20px; }
      .process-header { padding-right: 20px; }
      .hero-content { padding: 100px 20px 60px; }
      .hero-title { font-size: 2.4rem; }
      .services-grid { grid-template-columns: 1fr; }
      .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .gallery-overlay { opacity: 1; }
      .form-footer { justify-content: flex-start; }
      .form-status { text-align: left; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .footer-links { justify-content: flex-start; }
      .contact-info-block { grid-template-columns: 1fr; }
      .cookie-panel {
        left: 12px;
        right: 12px;
        bottom: 12px;
        align-items: flex-start;
        flex-direction: column;
      }
      .cookie-actions { justify-content: flex-start; width: 100%; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }
      .ticker { animation: none; transform: none; }
      .shape { animation: none; }
    }

    /* WordPress page/legal templates */
    .wp-page-main {
      min-height: 60vh;
    }

    .legal-hero {
      background: var(--dark);
      color: var(--white);
      padding: 150px 48px 70px;
    }

    .legal-hero-inner,
    .legal-content {
      max-width: 1040px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--blue);
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 16px;
      font-size: 0.82rem;
    }

    .eyebrow::before {
      content: '';
      width: 30px;
      height: 2px;
      background: var(--blue);
      display: block;
    }

    .legal-hero h1 {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 5vw, 4.5rem);
      line-height: 1;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .legal-hero p {
      max-width: 640px;
      color: rgba(255,255,255,0.65);
    }

    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
      color: rgba(255,255,255,0.78);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
    }

    .legal-back:hover {
      color: var(--blue);
    }

    .legal-content {
      padding: 72px 48px 92px;
      display: grid;
      gap: 34px;
    }

    .legal-block {
      border-top: 1px solid var(--border);
      padding-top: 28px;
    }

    .legal-block h2 {
      font-family: var(--font-head);
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .legal-block p {
      margin-bottom: 12px;
      color: var(--text);
      max-width: 72ch;
    }

    .legal-block ul {
      padding-left: 20px;
      margin-bottom: 12px;
    }

    .legal-block li {
      margin-bottom: 6px;
    }

    .legal-block a {
      color: var(--blue);
    }

    .legal-block .muted {
      color: var(--mid);
      font-size: 0.95rem;
    }

    @media (max-width: 700px) {
      .legal-hero {
        padding: 124px 20px 54px;
      }

      .legal-content {
        padding: 52px 20px 70px;
      }
    }
