    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { font-size: 16px; scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: #2b2b2b;
      background: #fff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ═══ LOADING ═══ */
    .loading-screen { position: fixed; inset: 0; z-index: 9999; background: #fff; display: flex; justify-content: center; align-items: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
    .loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .logo-container { position: relative; width: 500px; max-width: 90vw; }
    .logo-container img.sizer { width: 100%; height: auto; display: block; visibility: hidden; }
    .letter { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('../img/logo.svg'); background-size: 100% 100%; background-repeat: no-repeat; opacity: 0; transform: translateY(15px); animation: letterIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; filter: brightness(0); }
    @keyframes letterIn { to { opacity: 1; transform: translateY(0); } }
    .letter-P { clip-path: inset(0 83% 0 0); animation-delay: 0.15s; }
    .letter-r { clip-path: inset(0 75% 0 14.5%); animation-delay: 0.3s; }
    .letter-o { clip-path: inset(0 58% 0 23%); animation-delay: 0.45s; }
    .letter-b { clip-path: inset(0 41% 0 40%); animation-delay: 0.6s; }
    .letter-a { clip-path: inset(0 21% 0 57%); animation-delay: 0.75s; }
    .letter-u { clip-path: inset(0 0 0 77%); animation-delay: 0.9s; }

    .main-content { opacity: 0; transition: opacity 0.8s ease 0.2s; }
    .main-content.visible { opacity: 1; }

    /* ═══ HERO ═══ */
    .hero-wrapper { position: relative; height: 160vh; background: #fff; }
    .hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
    .hero { position: relative; width: 100%; height: 100%; min-height: 640px; overflow: hidden; will-change: transform, border-radius; }
    .hero-bg { position: absolute; inset: -20px; background: url('../img/hero.png') center/cover no-repeat; background-color: #333; animation: heroZoom 25s ease-in-out infinite alternate; will-change: transform; }
    @keyframes heroZoom { 0% { transform: scale(1); } 100% { transform: scale(1.06); } }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(18,18,18,0.18) 0%, rgba(22,22,22,0.32) 30%, rgba(25,25,25,0.52) 55%, rgba(28,28,28,0.65) 100%); }

    /* ═══ HEADER ═══ */
    .site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 100; padding: 0 clamp(24px, 5vw, 80px); opacity: 0; transition: opacity 0.8s ease 0.4s; }
    .main-content.visible .site-header { opacity: 1; }
    .header-inner { display: flex; align-items: center; height: 90px; }
    .brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
    .brand-logo { height: 28px; width: auto; display: block; filter: brightness(0) invert(1); }

    .nav-desktop { display: flex; align-items: center; gap: 38px; position: absolute; left: 50%; transform: translateX(-50%); }
    .nav-link { font-size: 0.88rem; font-weight: 400; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 0.005em; position: relative; padding-bottom: 2px; transition: color 0.3s ease; cursor: pointer; }
    .nav-link:hover { color: #fff; }
    .nav-link .nav-plus { font-weight: 300; margin-left: 4px; opacity: 0.5; display: inline-block; transition: transform 0.3s ease; }
    .nav-link.is-open .nav-plus { transform: rotate(45deg); }
    .nav-link.is-open { color: #fff; }

    .nav-contact-btn { display: flex; align-items: center; gap: 0; background: rgba(255,255,255,0.95); color: #2b2b2b; font-family: inherit; font-size: 0.84rem; font-weight: 500; letter-spacing: 0.005em; text-decoration: none; padding: 8px 8px 8px 24px; border-radius: 12px; border: none; cursor: pointer; transition: background 0.3s ease; flex-shrink: 0; margin-left: auto; }
    .nav-contact-btn:hover { background: rgba(255,255,255,1); }
    .contact-arrow { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: #000; border-radius: 8px; margin-left: 14px; transition: transform 0.3s ease; }
    .nav-contact-btn:hover .contact-arrow { transform: translate(1px, -1px); }
    .contact-arrow svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

    /* ═══ MEGA DROPDOWN ═══ */
    .mega-dropdown {
      position: fixed;
      top: 80px;
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      z-index: 9990;
      background: #1a1a1a;
      padding: 32px 36px;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
      width: max-content;
      max-width: 90vw;
    }
    .mega-dropdown.is-open {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }
    .mega-inner { display: flex; gap: 0; }
    .mega-categories { display: flex; gap: 40px; }
    .mega-category { min-width: 140px; }
    .mega-cat-title { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.3); margin-bottom: 18px; letter-spacing: 0.1em; text-transform: uppercase; }
    .mega-cat-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .mega-cat-links a { font-size: 0.88rem; font-weight: 400; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s ease; display: inline; }
    .mega-cat-links a:hover { color: #fff; }
    .mega-cta { width: 220px; flex-shrink: 0; border-left: 1px solid rgba(255,255,255,0.08); padding-left: 36px; margin-left: 40px; display: flex; flex-direction: column; justify-content: flex-start; }
    .mega-cta-avatars { display: none; }
    .mega-cta-text { font-size: 0.85rem; font-weight: 400; color: rgba(255,255,255,0.35); line-height: 1.6; margin-bottom: 20px; }
    .mega-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #1a1a1a; font-family: inherit; font-size: 0.82rem; font-weight: 500; text-decoration: none; padding: 12px 22px; border-radius: 10px; transition: background 0.25s ease; align-self: flex-start; }
    .mega-cta-btn:hover { background: #f0f0f0; }
    .mega-cta-btn svg { width: 12px; height: 12px; stroke: #1a1a1a; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

    /* ═══ HAMBURGER + MOBILE ═══ */
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 200; margin-left: auto; }
    .hamburger span { display: block; width: 26px; height: 1.5px; background: #fff; margin: 6px 0; transition: transform 0.3s ease, opacity 0.3s ease; }
    .hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .nav-mobile { display: none; position: fixed; inset: 0; z-index: 150; background: rgba(20,20,20,0.97); flex-direction: column; justify-content: center; align-items: flex-start; padding: 0 clamp(28px, 8vw, 60px); gap: 0; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; overflow-y: auto; }
    .nav-mobile.open { opacity: 1; visibility: visible; }
    .nav-mobile-link { font-size: 1.6rem; font-weight: 300; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: -0.01em; transition: color 0.25s ease; padding: 18px 0; display: block; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
    .nav-mobile-link:hover { color: #fff; }

    /* Mobile accordion */
    .mobile-accordion-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; cursor: pointer; }
    .mobile-accordion-trigger .mob-plus { font-size: 1.2rem; font-weight: 300; color: rgba(255,255,255,0.4); transition: transform 0.3s ease; }
    .mobile-accordion-trigger.is-open .mob-plus { transform: rotate(45deg); }
    .mobile-accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .mobile-accordion-panel.is-open { max-height: 600px; }
    .mobile-accordion-panel ul { list-style: none; padding: 8px 0 16px 0; }
    .mobile-accordion-panel li { padding: 12px 0; }
    .mobile-accordion-panel a { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s ease; }
    .mobile-accordion-panel a:hover { color: #fff; }

    /* ═══ HERO CONTENT ═══ */
    .hero-content { position: absolute; top: 0; right: 0; bottom: 0; width: 56%; display: flex; flex-direction: column; justify-content: center; padding-right: clamp(24px, 5vw, 80px); padding-left: 20px; opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(0.16,1,0.3,1) 0.7s, transform 1s cubic-bezier(0.16,1,0.3,1) 0.7s; }
    .main-content.visible .hero-content { opacity: 1; transform: translateY(0); }
    .hero-headline { font-size: clamp(52px, 7.2vw, 108px); font-weight: 400; color: #fff; line-height: 1.04; letter-spacing: -0.03em; margin-bottom: 20px; }
    .hero-headline span { display: block; }
    .hero-sub { font-size: clamp(16px, 1.5vw, 22px); font-weight: 400; color: rgba(255,255,255,0.42); letter-spacing: 0.01em; margin-bottom: 44px; }
    .hero-actions { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
    .cta-group { display: flex; align-items: center; gap: 16px; text-decoration: none; cursor: pointer; }
    .cta-icon { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0; }
    .cta-icon svg { width: 15px; height: 15px; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; transition: transform 0.3s ease; }
    .cta-group:hover .cta-icon svg { transform: translate(2px, -2px); }
    .cta-icon--primary { background: rgba(245,241,233,0.92); }
    .cta-icon--primary svg { stroke: #2b2b2b; }
    .cta-icon--secondary { background: transparent; border: 1px solid rgba(255,255,255,0.25); transition: border-color 0.3s ease; }
    .cta-group:hover .cta-icon--secondary { border-color: rgba(255,255,255,0.45); }
    .cta-icon--secondary svg { stroke: rgba(255,255,255,0.75); }
    .cta-label { font-size: 0.92rem; font-weight: 400; letter-spacing: 0.005em; }
    .cta-label--primary { color: rgba(255,255,255,0.88); }
    .cta-label--secondary { color: rgba(255,255,255,0.48); }
    .cta-group:hover .cta-label--primary { color: #fff; }
    .cta-group:hover .cta-label--secondary { color: rgba(255,255,255,0.75); }

    /* ═══ HERO BOTTOM ═══ */
    .hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 clamp(24px, 5vw, 80px) 40px; display: flex; align-items: center; justify-content: space-between; opacity: 0; transition: opacity 0.8s ease 1.2s; }
    .main-content.visible .hero-bottom { opacity: 1; }
    .slide-indicators { display: flex; align-items: center; gap: 14px; }
    .slide-num { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.3); letter-spacing: 0.03em; }
    .slide-num.active { color: #fff; }
    .slide-line { width: 52px; height: 1px; background: rgba(255,255,255,0.45); }
    .scroll-down { font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.42); letter-spacing: 0.03em; display: flex; align-items: center; gap: 8px; cursor: pointer; background: none; border: none; font-family: inherit; transition: color 0.3s ease; }
    .scroll-down:hover { color: rgba(255,255,255,0.7); }
    .scroll-arrow { display: inline-block; transition: transform 0.3s ease; }
    .scroll-down:hover .scroll-arrow { transform: translateY(2px); }
    .film-btn { display: flex; align-items: center; gap: 16px; cursor: pointer; background: none; border: none; font-family: inherit; transition: opacity 0.3s ease; }
    .film-btn:hover { opacity: 0.85; }
    .film-label { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.18em; text-transform: uppercase; }
    .film-play { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.3); transition: border-color 0.3s ease; }
    .film-btn:hover .film-play { border-color: rgba(255,255,255,0.55); }
    .film-play svg { width: 13px; height: 13px; fill: #fff; margin-left: 2px; }

    /* ═══ NEXT SECTION ═══ */
    .section-intro { background: #fff; padding: clamp(60px, 7vw, 110px) clamp(24px, 5vw, 80px); }
    .section-intro-inner { max-width: 1360px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
    .section-intro-left { max-width: 720px; }
    .section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(43,43,43,0.38); margin-bottom: 22px; }
    .section-heading { font-size: clamp(30px, 4.2vw, 56px); font-weight: 300; color: #2b2b2b; line-height: 1.12; letter-spacing: -0.025em; }
    .section-link { font-size: 0.88rem; font-weight: 400; color: #2b2b2b; text-decoration: none; letter-spacing: 0.01em; border-bottom: 1px solid rgba(43,43,43,0.18); padding-bottom: 5px; transition: border-color 0.3s ease; white-space: nowrap; flex-shrink: 0; }
    .section-link:hover { border-color: rgba(43,43,43,0.55); }

    :focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 3px; }
    .section-intro :focus-visible { outline-color: rgba(43,43,43,0.3); }

    /* ═══ OPDRACHTGEVERS ═══ */
    .section-opdrachtgevers { background: #fff; padding: 52px clamp(24px, 5vw, 80px); }
    .opdrachtgevers-inner { max-width: 1360px; margin: 0 auto; display: flex; align-items: center; gap: 56px; }
    .opdrachtgevers-label { font-size: 0.75rem; font-weight: 500; color: rgba(43,43,43,0.25); white-space: nowrap; flex-shrink: 0; letter-spacing: 0.02em; }
    .opdrachtgevers-logos { display: flex; align-items: center; gap: 56px; flex-wrap: wrap; }
    .opdrachtgevers-logos span { font-size: 1.1rem; font-weight: 700; color: rgba(43,43,43,0.1); letter-spacing: 0.06em; white-space: nowrap; text-transform: uppercase; }

    /* ═══ OVER PROBAU ═══ */
    .section-over { background: #fff; padding: clamp(80px, 9vw, 140px) clamp(24px, 5vw, 80px); }
    .over-inner { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .over-text { font-size: 1.05rem; font-weight: 400; color: rgba(43,43,43,0.5); line-height: 1.8; margin-bottom: 16px; }
    .over-text:last-child { margin-bottom: 0; }
    .over-img { width: 100%; border-radius: 16px; aspect-ratio: 3/2; object-fit: cover; margin-top: 8px; }
    /* werkwijze */
    .werkwijze { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(0,0,0,0.06); }
    .werkwijze-stap { padding: 32px 24px 32px 0; border-right: 1px solid rgba(0,0,0,0.06); }
    .werkwijze-stap:last-child { border-right: none; }
    .werkwijze-num { font-size: 0.72rem; font-weight: 600; color: rgba(43,43,43,0.15); letter-spacing: 0.08em; margin-bottom: 16px; }
    .werkwijze-title { font-size: 1rem; font-weight: 600; color: #2b2b2b; margin-bottom: 8px; }
    .werkwijze-desc { font-size: 0.85rem; color: rgba(43,43,43,0.4); line-height: 1.55; }

    /* ═══ DIENSTEN SCROLL SPLIT ═══ */
    .section-diensten { background: #fff; padding: 0; }
    .scroll-split { margin: 0 auto; position: relative; height: 500vh; }
    .scroll-split-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; perspective: 1200px; padding: 10px 0; }
    .split-panels { display: flex; width: 100%; height: calc(100vh - 20px); max-height: 800px; padding: 0 20px; transform-style: preserve-3d; }
    .split-panel { flex: 1; position: relative; transform-style: preserve-3d; will-change: transform; margin-right: -1px; }
    .split-panel-front, .split-panel-back { position: absolute; inset: 0; backface-visibility: hidden; overflow: hidden; }
    .split-panel-front { z-index: 2; }
    .split-panel:first-child .split-panel-front { border-radius: 20px 0 0 20px; }
    .split-panel:last-child .split-panel-front { border-radius: 0 20px 20px 0; }
    .split-panel-front-inner { position: absolute; top: 0; left: 0; width: 500%; height: 100%; }
    .split-panel-front-inner img { width: 100%; height: 100%; object-fit: cover; }
    .split-panel:nth-child(1) .split-panel-front-inner { left: 0%; }
    .split-panel:nth-child(2) .split-panel-front-inner { left: -100%; }
    .split-panel:nth-child(3) .split-panel-front-inner { left: -200%; }
    .split-panel:nth-child(4) .split-panel-front-inner { left: -300%; }
    .split-panel:nth-child(5) .split-panel-front-inner { left: -400%; }
    .split-panel-back { transform: rotateY(180deg); z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border: 1px solid rgba(255,255,255,0.05); }
    .split-back-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
    .split-panel-back--light .split-back-img { opacity: 0.12; }
    .split-panel-back .split-noise { position: absolute; inset: 0; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-repeat: repeat; background-size: 128px; }
    .split-card-num { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; margin-bottom: auto; position: relative; z-index: 2; }
    .split-card-title { font-size: 1.5rem; font-weight: 500; line-height: 1.25; margin-bottom: 12px; position: relative; z-index: 2; }
    .split-card-desc { font-size: 0.85rem; line-height: 1.55; opacity: 0.7; position: relative; z-index: 2; }

    /* ═══ PROJECTEN ACCORDION ═══ */
    .section-projecten { background: #fff; padding: clamp(80px, 9vw, 140px) clamp(24px, 5vw, 80px); }
    .projecten-header { max-width: 1360px; margin: 0 auto 56px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .projecten-accordion { max-width: 1360px; margin: 0 auto; display: flex; height: 520px; gap: 6px; border-radius: 16px; overflow: hidden; }
    .proj-strip { flex: 1; position: relative; overflow: hidden; cursor: pointer; transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1); min-width: 0; }
    .proj-strip:first-child { flex: 5; }
    .proj-strip:first-child .proj-strip-content { opacity: 1; transform: translateY(0); }
    .proj-strip:first-child .proj-strip-vert { opacity: 0; }
    .proj-strip:first-child .proj-strip-overlay { background: rgba(0,0,0,0.15); }
    .projecten-accordion:hover .proj-strip:first-child { flex: 1; }
    .projecten-accordion:hover .proj-strip:first-child .proj-strip-content { opacity: 0; transform: translateY(10px); }
    .projecten-accordion:hover .proj-strip:first-child .proj-strip-vert { opacity: 1; }
    .projecten-accordion:hover .proj-strip:first-child .proj-strip-overlay { background: rgba(0,0,0,0.3); }
    .projecten-accordion:hover .proj-strip:first-child:hover { flex: 5; }
    .projecten-accordion:hover .proj-strip:first-child:hover .proj-strip-content { opacity: 1; transform: translateY(0); }
    .projecten-accordion:hover .proj-strip:first-child:hover .proj-strip-vert { opacity: 0; }
    .projecten-accordion:hover .proj-strip:first-child:hover .proj-strip-overlay { background: rgba(0,0,0,0.15); }
    .proj-strip:hover { flex: 5; }
    .proj-strip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .proj-strip-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); transition: background 0.4s ease; }
    .proj-strip:hover .proj-strip-overlay { background: rgba(0,0,0,0.15); }
    .proj-strip-num { position: absolute; top: 24px; left: 24px; font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
    .proj-strip-content { position: absolute; bottom: 28px; left: 28px; right: 28px; opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s; }
    .proj-strip:hover .proj-strip-content { opacity: 1; transform: translateY(0); }
    .proj-strip-tag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
    .proj-strip-name { font-size: 1.3rem; font-weight: 500; color: #fff; line-height: 1.3; }
    .proj-strip-vert { position: absolute; bottom: 28px; left: 0; right: 0; writing-mode: vertical-rl; text-orientation: mixed; font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.6); white-space: nowrap; letter-spacing: 0.05em; transition: opacity 0.3s ease; margin: 0 auto; width: fit-content; }
    .proj-strip:hover .proj-strip-vert { opacity: 0; }

    /* ═══ WERKEN BIJ ═══ */
    .section-werken { background: #fff; padding: clamp(60px, 7vw, 100px) clamp(24px, 5vw, 80px); }
    .werken-wrap { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 18px; overflow: hidden; min-height: 420px; }
    .werken-img-side { position: relative; overflow: hidden; }
    .werken-img-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .werken-content { background: #1a1a1a; display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 5vw, 72px); }
    .werken-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 24px; }
    .werken-heading { font-size: clamp(24px, 2.8vw, 36px); font-weight: 300; color: #fff; line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 20px; }
    .werken-desc { font-size: 0.95rem; color: rgba(255,255,255,0.35); line-height: 1.65; margin-bottom: 36px; }
    .werken-btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #1a1a1a; font-family: inherit; font-size: 0.88rem; font-weight: 500; text-decoration: none; padding: 14px 28px; border-radius: 12px; transition: background 0.25s ease; align-self: flex-start; }
    .werken-btn:hover { background: #f0f0f0; }
    .werken-btn svg { width: 14px; height: 14px; stroke: #1a1a1a; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* ═══ NIEUWS ═══ */
    .section-nieuws { background: #fff; padding: clamp(48px, 5vw, 80px) clamp(24px, 5vw, 80px) clamp(80px, 9vw, 140px); }
    .nieuws-header { max-width: 1360px; margin: 0 auto 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .nieuws-grid { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; gap: 24px; }
    .nieuws-card:first-child { grid-row: 1 / -1; }
    .nieuws-card:first-child .nieuws-card-img { aspect-ratio: auto; height: 100%; }
    .nieuws-card { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; }
    .nieuws-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.6s ease; }
    .nieuws-card:hover .nieuws-card-img { transform: scale(1.03); }
    .nieuws-card-body { position: absolute; bottom: 20px; right: 20px; left: 20px; background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
    .nieuws-meta { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(43,43,43,0.3); margin-bottom: 12px; }
    .nieuws-title { font-size: 1.1rem; font-weight: 600; color: #2b2b2b; line-height: 1.4; margin-bottom: 20px; }
    .nieuws-arrow { width: 40px; height: 40px; background: #1a1a1a; border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: background 0.25s ease; }
    .nieuws-card:hover .nieuws-arrow { background: #333; }
    .nieuws-arrow svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* ═══ CTA + FOOTER COMBINED ═══ */
    .section-cta-footer { background: #fff; padding: clamp(40px, 5vw, 80px) 20px 8px; }
    .cta-footer-box { background: #1a1a1a; border-radius: 20px; overflow: hidden; }
    .cta-section { padding: clamp(40px, 4vw, 64px) clamp(48px, 5vw, 80px); }
    .cta-top { display: flex; align-items: center; justify-content: space-between; gap: 56px; }
    .cta-left { max-width: 620px; }
    .cta-heading { font-size: clamp(28px, 3.5vw, 46px); font-weight: 300; color: #fff; line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 16px; }
    .cta-sub { font-size: 0.95rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
    .cta-right { display: flex; flex-direction: column; gap: 24px; justify-content: center; margin-left: auto; }
    .cta-contact-item { display: flex; align-items: center; gap: 12px; }
    .cta-contact-label { font-size: 0.92rem; font-weight: 400; color: rgba(255,255,255,0.35); min-width: 40px; }
    .cta-contact-value { font-size: 1.15rem; font-weight: 500; color: #fff; text-decoration: none; transition: opacity 0.25s ease; }
    .cta-contact-value:hover { opacity: 0.75; }
    .cta-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0; }
    .cta-clients { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; padding: 36px clamp(48px, 5vw, 80px); }
    .cta-clients-label { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.85); white-space: nowrap; flex-shrink: 0; }
    .cta-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
    .cta-logos span { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.3); letter-spacing: 0.02em; white-space: nowrap; }
    /* footer inside box */
    .dark-footer { padding: 0 clamp(48px, 5vw, 80px); }
    .dark-footer-top { padding: clamp(36px, 4vw, 56px) 0; border-top: 1px solid rgba(255,255,255,0.08); display: grid; grid-template-columns: 1fr auto auto auto; gap: 64px; }
    .dark-footer .footer-col-title { color: rgba(255,255,255,0.3); }
    .dark-footer .footer-col-links a { color: rgba(255,255,255,0.55); }
    .dark-footer .footer-col-links a:hover { color: #fff; }
    .dark-footer .footer-tagline { color: rgba(255,255,255,0.3); }
    .dark-footer .footer-social { border-color: rgba(255,255,255,0.1); border-radius: 10px; }
    .dark-footer .footer-social:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
    .dark-footer .footer-social svg { fill: rgba(255,255,255,0.5); }
    .dark-footer .footer-social svg rect, .dark-footer .footer-social svg circle { stroke: rgba(255,255,255,0.5); }
    .dark-footer-logo-wrap { text-align: center; overflow: hidden; max-height: clamp(100px, 14vw, 200px); padding: 0; }
    .bottom-bar { display: flex; align-items: center; padding: 14px 8px 10px; gap: 28px; }
    .bottom-bar-logo { height: 18px; width: auto; filter: brightness(0); flex-shrink: 0; }
    .bottom-bar .footer-bottom-link { font-size: 0.78rem; color: #858585; text-decoration: none; transition: color 0.25s ease; }
    .bottom-bar .footer-bottom-link:hover { color: #2b2b2b; }
    .bottom-bar .footer-copy { font-size: 0.78rem; color: #858585; margin-left: auto; white-space: nowrap; }
    .dark-footer-logo { width: 100%; height: auto; filter: brightness(0) invert(1); opacity: 0.06; }
    .dark-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .dark-footer-bottom .footer-bottom-link { color: rgba(255,255,255,0.2); }
    .dark-footer-bottom .footer-bottom-link:hover { color: rgba(255,255,255,0.5); }
    .dark-footer-bottom .footer-copy { color: rgba(255,255,255,0.15); }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 1080px) { .mega-cta { display: none; } }
    @media (max-width: 900px) {
      .nav-desktop { display: none; }
      .nav-contact-btn { display: none; }
      .mega-dropdown { display: none; }
      .hamburger { display: block; }
      .nav-mobile { display: flex; }
      .hero-content { width: 100%; padding: 0 clamp(24px, 7vw, 48px); justify-content: flex-end; padding-bottom: 120px; }
      .hero-headline { font-size: clamp(42px, 12vw, 72px); margin-bottom: 16px; }
      .hero-sub { margin-bottom: 32px; font-size: 16px; }
      .hero-actions { gap: 20px; }
      .cta-icon { width: 44px; height: 44px; border-radius: 10px; }
      .cta-label { font-size: 0.85rem; }
      .header-inner { height: 72px; }
      .hero-bottom { padding-bottom: 28px; }
      .film-btn { display: none; }
      .slide-indicators { display: none; }
      .scroll-down { margin: 0 auto; }
      .section-intro-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
      .over-inner { grid-template-columns: 1fr; gap: 28px; }
      .werkwijze { grid-template-columns: 1fr 1fr; }
      .werkwijze-stap { border-right: none; }
      .split-panels { height: 320px; flex-direction: column; }
      .split-panel-front-inner { width: 100% !important; left: 0 !important; height: 300%; }
      .split-panel:nth-child(2) .split-panel-front-inner { top: -100%; }
      .split-panel:nth-child(3) .split-panel-front-inner { top: -200%; }
      .projecten-accordion { height: 360px; flex-direction: column; }
      .proj-strip:hover { flex: 3; }
      .proj-strip-vert { display: none; }
      .projecten-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .werken-wrap { grid-template-columns: 1fr; }
      .werken-img-side { min-height: 280px; }
      .nieuws-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .nieuws-card:first-child { grid-row: auto; }
      .nieuws-card:first-child .nieuws-card-img { aspect-ratio: 4/3; height: auto; }
      .nieuws-card-body { left: 20px; right: 20px; }
      .cta-top { flex-direction: column; gap: 32px; }
      .cta-clients { flex-direction: column; align-items: flex-start; gap: 24px; }
      .dark-footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
      .dark-footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
      .cta-clients { flex-direction: column; align-items: flex-start; gap: 24px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-col:first-child { padding-right: 0; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    }
    /* ═══ FOOTER ═══ */
    .site-footer { background: #fff; padding: 0 clamp(24px, 5vw, 80px); }
    .footer-top { max-width: 1360px; margin: 0 auto; padding: clamp(56px, 7vw, 100px) 0; display: grid; grid-template-columns: 1fr auto auto auto; gap: 72px; }
    .footer-col:first-child { padding-right: 40px; }
    .footer-logo { height: 26px; width: auto; display: block; margin-bottom: 20px; filter: brightness(0); }
    .footer-tagline { font-size: 1rem; font-weight: 300; color: rgba(43,43,43,0.45); line-height: 1.6; max-width: 280px; }
    .footer-col-title { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #989898; margin-bottom: 24px; }
    .footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .footer-col-links a { font-size: 0.95rem; font-weight: 400; color: #2b2b2b; text-decoration: none; transition: color 0.25s ease; }
    .footer-col-links a:hover { color: #000; }
    .footer-socials { display: flex; gap: 12px; margin-top: 8px; }
    .footer-social { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); transition: border-color 0.25s ease, background 0.25s ease; text-decoration: none; }
    .footer-social:hover { border-color: rgba(0,0,0,0.25); background: rgba(0,0,0,0.03); }
    .footer-social svg { width: 16px; height: 16px; fill: #2b2b2b; }
    .footer-bottom { max-width: 1360px; margin: 0 auto; border-top: 1px solid rgba(0,0,0,0.08); padding: 28px 0 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .footer-bottom-links { display: flex; gap: 28px; }
    .footer-bottom-link { font-size: 0.82rem; font-weight: 400; color: rgba(43,43,43,0.35); text-decoration: none; transition: color 0.25s ease; }
    .footer-bottom-link:hover { color: #2b2b2b; }
    .footer-copy { font-size: 0.82rem; color: rgba(43,43,43,0.3); }

    @media (max-width: 480px) {
      .hero-headline { font-size: 38px; }
      .hero-actions { gap: 16px; }
      .cta-icon { width: 40px; height: 40px; border-radius: 9px; }
      .cta-label { font-size: 0.82rem; }
      .hero-content { padding-bottom: 100px; }
    }
