
    /* ============================================================
       DESIGN TOKENS
    ============================================================ */
    :root {
      --bg:          #050505;
      --bg2:         #0B0B0B;
      --card:        #111111;
      --border:      rgba(255,255,255,0.10);
      --border-red:  rgba(255,42,42,0.55);
      --text:        #FFFFFF;
      --text2:       rgba(255,255,255,0.60);
      --red:         #FF2A2A;
      --red-hover:   #FF4A4A;
      --red-dim:     rgba(255,42,42,0.12);
      --red-glow:    rgba(255,42,42,0.25);
      --radius-sm:   8px;
      --radius-md:   14px;
      --radius-lg:   20px;
      --radius-xl:   28px;
      --max-w:       1280px;
      --font:        'Space Grotesk', sans-serif;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; font-family: var(--font); }

    /* ============================================================
       UTILITIES
    ============================================================ */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
    }
    .label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text2);
    }
    .label::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
    }
    .red { color: var(--red); }
    .btn-red {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red);
      color: #fff;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 600;
      padding: 13px 24px;
      border-radius: var(--radius-sm);
      border: none;
      transition: background .22s, transform .18s;
    }
    .btn-red:hover { background: var(--red-hover); transform: translateY(-1px); }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--text);
      font-family: var(--font);
      font-size: 14px;
      font-weight: 600;
      padding: 13px 24px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      transition: border-color .22s, background .22s, transform .18s;
    }
    .btn-outline:hover {
      border-color: rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.04);
      transform: translateY(-1px);
    }
    .arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px; height: 18px;
    }

    /* Fade-up animation */
    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .delay-1 { transition-delay: .10s; }
    .delay-2 { transition-delay: .20s; }
    .delay-3 { transition-delay: .30s; }
    .delay-4 { transition-delay: .40s; }
    .delay-5 { transition-delay: .50s; }

    /* ============================================================
       HEADER
    ============================================================ */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(5,5,5,0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .logo {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.04em;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .logo span {
      display: inline-block;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--red);
      margin-left: 1px;
      margin-bottom: 12px;
    }
    nav {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    nav a {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text2);
      position: relative;
      transition: color .2s;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--red);
      transition: width .22s;
    }
    nav a:hover { color: var(--text); }
    nav a:hover::after { width: 100%; }
    .header-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 9px 18px;
      transition: border-color .22s, background .22s;
    }
    .header-cta .cta-arrow {
      color: var(--red);
      font-size: 16px;
      transition: transform .22s;
    }
    .header-cta:hover {
      border-color: var(--red);
      background: var(--red-dim);
    }
    .header-cta:hover .cta-arrow { transform: translate(2px, -2px); }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: .3s;
    }
    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 0;
      background: var(--bg2);
      border-top: 1px solid var(--border);
    }
    .mobile-nav a {
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 500;
      color: var(--text2);
      border-bottom: 1px solid var(--border);
      transition: color .2s, background .2s;
    }
    .mobile-nav a:hover { color: var(--text); background: rgba(255,255,255,0.03); }
    .mobile-nav.open { display: flex; }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      padding: 90px 0 80px;
      background: var(--bg);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .hero-left { display: flex; flex-direction: column; gap: 28px; }
    .hero-heading {
      font-size: clamp(52px, 6vw, 82px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.03em;
    }
    .hero-sub {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text2);
      max-width: 420px;
    }
    .hero-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .hero-right {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .hero-img-wrap {
      position: relative;
      width: 100%;
      max-width: 480px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--border);
    }
    /* Red glow behind hero image */
    .hero-img-wrap::before {
      content: '';
      position: absolute;
      inset: -30%;
      background: radial-gradient(ellipse at 70% 40%, rgba(255,42,42,0.30) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }
    .hero-img-placeholder {
      /* REPLACE: swap this gradient with your actual portrait image */
      background: linear-gradient(145deg, #1a0a0a 0%, #2a0b0b 40%, #0d0d0d 100%);
      width: 100%;
      aspect-ratio: 4/5;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      position: relative;
    }
    .hero-portrait-silhouette {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 35%, rgba(255,42,42,0.18) 0%, transparent 55%),
        linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.6) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-portrait-silhouette svg {
      opacity: 0.18;
      width: 60%;
      fill: #fff;
    }
    .hero-badge {
      position: absolute;
      bottom: 20px;
      right: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(11,11,11,0.90);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 10px 14px;
      z-index: 2;
    }
    .hero-badge-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 13px;
      flex-shrink: 0;
    }
    .hero-badge-info { display: flex; flex-direction: column; gap: 1px; }
    .hero-badge-name { font-size: 13px; font-weight: 700; }
    .hero-badge-role {
      font-size: 11px;
      color: var(--text2);
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .hero-badge-role::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--red);
    }

    /* Logos strip */
    .logos-strip {
      margin-top: 56px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }
    .logos-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .logo-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 9px 18px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text2);
      transition: border-color .2s, color .2s;
      white-space: nowrap;
    }
    .logo-pill:hover { border-color: rgba(255,255,255,0.3); color: var(--text); }
    /* Fixed logo size: height is the sole driving constraint, so every
       SVG/img inside a pill renders at the exact same visual height
       regardless of its native viewBox aspect ratio (a near-square
       badge and a wide wordmark both end up 18px tall). Width scales
       proportionally and is left free; max-width is only a generous
       safety net against an unexpectedly oversized asset. */
    .logo-pill svg,
    .logo-pill img {
      height: 18px;
      width: auto;
      max-width: 260px;
      flex-shrink: 0;
      display: block;
    }

    /* ============================================================
       ABOUT
    ============================================================ */
    #about {
      padding: 100px 0;
      background: var(--bg2);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-left { display: flex; flex-direction: column; gap: 28px; }
    .about-heading {
      font-size: clamp(32px, 3.5vw, 50px);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
    }
    .about-text { font-size: 15px; color: var(--text2); line-height: 1.8; }
    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      padding: 24px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stat { display: flex; flex-direction: column; gap: 4px; }
    .stat-num {
      font-size: 36px;
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .stat-label { font-size: 12px; color: var(--text2); line-height: 1.4; }
    .about-right { position: relative; }
    .about-photo-card {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--border);
      aspect-ratio: 4/3;
      /* VERVANG: wissel deze gradient voor je echte foto */
      background: linear-gradient(145deg, #0e0606 0%, #1c0808 45%, #080808 100%);
    }
    .about-photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    /* Subtiele overlay onderin voor diepte, ongeacht de foto-inhoud */
    .about-photo-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 60% 40%, rgba(255,42,42,0.14) 0%, transparent 55%),
        linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 45%);
      pointer-events: none;
    }

    /* ============================================================
       SERVICES
    ============================================================ */
    #services {
      padding: 100px 0;
      background: var(--bg);
    }
    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 16px;
    }
    .section-title {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-top: 12px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      overflow: hidden;
      transition: border-color .25s, transform .25s, box-shadow .25s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(255,42,42,0.08) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .3s;
    }
    .service-card:hover {
      border-color: var(--border-red);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(255,42,42,0.12);
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 44px; height: 44px;
      border-radius: var(--radius-sm);
      background: var(--red-dim);
      border: 1px solid rgba(255,42,42,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      flex-shrink: 0;
    }
    .service-title { font-size: 17px; font-weight: 700; }
    .service-desc { font-size: 13.5px; color: var(--text2); line-height: 1.7; flex-grow: 1; }

    /* ============================================================
       EXPERIENCE
    ============================================================ */
    #experience {
      padding: 100px 0;
      background: var(--bg2);
    }
    .exp-list { display: flex; flex-direction: column; gap: 0; margin-top: 16px; }
    .exp-item {
      display: grid;
      grid-template-columns: 220px 1fr auto;
      align-items: start;
      gap: 32px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      position: relative;
      padding-left: 28px;
      transition: background .22s;
    }
    .exp-item:first-child { border-top: 1px solid var(--border); }
    .exp-item:hover { background: rgba(255,255,255,0.018); border-radius: var(--radius-sm); }
    /* Red timeline dot */
    .exp-item::before {
      content: '';
      position: absolute;
      left: 0; top: 34px;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 10px var(--red-glow);
    }
    .exp-role { display: flex; flex-direction: column; gap: 3px; }
    .exp-title { font-size: 16px; font-weight: 700; }
    .exp-company { font-size: 13px; color: var(--text2); }
    .exp-desc { font-size: 14px; color: var(--text2); line-height: 1.7; }
    .exp-year {
      font-size: 13px;
      font-weight: 600;
      color: var(--text2);
      white-space: nowrap;
      padding-top: 3px;
    }

    /* ============================================================
       PORTFOLIO
    ============================================================ */
    #portfolio {
      padding: 100px 0;
      background: var(--bg);
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .project-card {
      display: block;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: border-color .25s, transform .25s;
      cursor: pointer;
    }
    .project-card:hover {
      border-color: rgba(255,255,255,0.22);
      transform: translateY(-3px);
    }
    .project-img {
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      position: relative;
    }
    .project-img-inner {
      width: 100%; height: 100%;
      transition: transform .45s ease;
      /* REPLACE: swap these with actual project images */
    }
    .project-card:hover .project-img-inner { transform: scale(1.05); }
    /* Unique placeholder styles per project */
    .pi-1 { background: linear-gradient(135deg, #0a0202 0%, #2a0505 50%, #1a0a0a 100%); }
    .pi-2 { background: linear-gradient(135deg, #02050a 0%, #051525 50%, #0a0a1a 100%); }
    .pi-3 { background: linear-gradient(135deg, #050a05 0%, #0a1a08 50%, #0a0a0a 100%); }
    .pi-4 { background: linear-gradient(135deg, #0a0602 0%, #261505 50%, #100a02 100%); }
    .pi-5 { background: linear-gradient(135deg, #080208 0%, #180618 50%, #0a020a 100%); }
    .pi-6 { background: linear-gradient(135deg, #020808 0%, #041818 50%, #020a0a 100%); }

    .project-img-label {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.18);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    /* Overlay with red tint */
    .project-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    }
    .project-info {
      padding: 16px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .project-meta { display: flex; flex-direction: column; gap: 2px; }
    .project-name { font-size: 15px; font-weight: 700; }
    .project-cat { font-size: 12px; color: var(--text2); }
    .project-link {
      color: var(--text2);
      transition: color .2s, transform .2s;
    }
    .project-card:hover .project-link {
      color: var(--red);
      transform: translate(2px, -2px);
    }
    .view-all-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--red);
      transition: gap .2s;
    }
    .view-all-link:hover { gap: 11px; }

    /* ============================================================
       TESTIMONIAL
    ============================================================ */
    #testimonial {
      padding: 64px 0;
      background: var(--bg2);
    }
    .testimonial-card {
      border: 1px solid var(--border-red);
      border-radius: var(--radius-xl);
      padding: 36px 56px;
      background: var(--card);
      box-shadow: 0 0 80px rgba(255,42,42,0.08), inset 0 0 60px rgba(255,42,42,0.04);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .testimonial-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(255,42,42,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    /* Sterren-rating boven de quote */
    .quote-stars {
      display: flex;
      justify-content: center;
      gap: 4px;
      margin-bottom: 16px;
    }
    .quote-stars svg { width: 18px; height: 18px; fill: var(--red); }
    /* Wrapper die kruisfade tussen reviews mogelijk maakt */
    .quote-content {
      transition: opacity .25s ease;
    }
    .quote-content.fading { opacity: 0; }
    .quote-text {
      font-size: clamp(16px, 1.8vw, 19px);
      font-weight: 500;
      line-height: 1.6;
      letter-spacing: -0.01em;
      max-width: 640px;
      margin: 0 auto 20px;
      color: var(--text);
      /* Vaste hoogte zodat de kaart niet "springt" als reviews van
         wisselende lengte elkaar afwisselen */
      min-height: 4.8em;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .quote-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .quote-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--red-dim);
      border: 1px solid var(--border-red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--red);
      flex-shrink: 0;
    }
    .quote-author-info { text-align: left; }
    .quote-name { font-size: 14px; font-weight: 700; }
    .quote-role { font-size: 12px; color: var(--text2); }
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 7px;
      margin-top: 24px;
    }
    .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .dot.active {
      background: var(--red);
      transform: scale(1.3);
    }

    /* ============================================================
       CTA SECTION
    ============================================================ */
    #cta {
      padding: 40px 0 100px;
      background: var(--bg2);
    }
    .cta-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 48px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      overflow: hidden;
      transition: border-color .3s;
    }
    .cta-card:hover { border-color: var(--border-red); }
    .cta-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 0% 50%, rgba(255,42,42,0.07) 0%, transparent 55%);
      pointer-events: none;
    }
    .cta-left { display: flex; align-items: center; gap: 24px; }
    .cta-icon {
      width: 52px; height: 52px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-red);
      background: var(--red-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      flex-shrink: 0;
      font-size: 22px;
    }
    .cta-text { display: flex; flex-direction: column; gap: 4px; }
    .cta-eyebrow {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
    }
    .cta-heading {
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .cta-sub { font-size: 14px; color: var(--text2); margin-top: 2px; }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 72px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 56px;
      border-bottom: 1px solid var(--border);
    }
    .footer-brand { display: flex; flex-direction: column; gap: 16px; }
    .footer-tagline { font-size: 14px; color: var(--text2); line-height: 1.7; max-width: 240px; }
    .social-row {
      display: flex;
      gap: 12px;
      margin-top: 4px;
    }
    .social-link {
      width: 36px; height: 36px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--text2);
      transition: border-color .2s, color .2s, background .2s;
    }
    .social-link:hover {
      border-color: var(--red);
      color: var(--red);
      background: var(--red-dim);
    }
    .footer-col h4 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text2);
      margin-bottom: 20px;
    }
    .footer-col a, .footer-contact-item {
      display: block;
      font-size: 14px;
      color: var(--text2);
      margin-bottom: 11px;
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--text); }
    .footer-bottom {
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      color: var(--text2);
    }
    .footer-bottom span { display: flex; align-items: center; gap: 5px; }
    .heart { color: var(--red); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .exp-item { grid-template-columns: 180px 1fr auto; gap: 20px; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      nav, .header-cta { display: none; }
      .hamburger { display: flex; }

      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-right { order: -1; }
      .hero-img-wrap { max-width: 100%; }
      .hero-heading { font-size: 42px; }

      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .stats-row { grid-template-columns: repeat(2, 1fr); }

      .services-grid { grid-template-columns: 1fr; }
      .portfolio-grid { grid-template-columns: 1fr; }

      .exp-item { grid-template-columns: 1fr; gap: 8px; padding-left: 22px; }
      .exp-year { grid-row: 1; grid-column: 1; color: var(--red); font-size: 12px; }
      .exp-item::before { top: 4px; }

      .testimonial-card { padding: 28px 20px; }

      .cta-card { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

      #hero, #about, #services, #experience, #portfolio, #cta { padding: 70px 0; }
      #testimonial { padding: 48px 0; }
    }

    @media (max-width: 480px) {
      .hero-heading { font-size: 36px; }
      .about-heading { font-size: 28px; }
      .cta-left { flex-direction: column; }
    }
  
    /* ============================================================
       WORK HERO
       Reuses --bg, --label, --hero-heading scale, --btn-* patterns
       from the homepage. Same spacing rhythm as #hero / #about.
    ============================================================ */
    #work-hero {
      padding: 90px 0 70px;
      background: var(--bg);
    }
    .work-hero-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .work-hero-left { display: flex; flex-direction: column; gap: 24px; }
    .work-hero-heading {
      font-size: clamp(34px, 4.2vw, 54px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.025em;
      max-width: 640px;
    }
    .work-hero-sub {
      font-size: 15.5px;
      line-height: 1.75;
      color: var(--text2);
      max-width: 480px;
    }
    /* Stats card — reuses .card surface language (border/radius/bg)
       from service-card / project-card, laid out like .stats-row */
    .work-stats-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 22px;
      position: relative;
      overflow: hidden;
    }
    .work-stats-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 100% 0%, rgba(255,42,42,0.10) 0%, transparent 60%);
      pointer-events: none;
    }
    .work-stat-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--border);
    }
    .work-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
    .work-stat-num {
      font-size: 30px;
      font-weight: 700;
      letter-spacing: -0.03em;
    }
    .work-stat-label {
      font-size: 13px;
      color: var(--text2);
      text-align: right;
    }

    /* ============================================================
       FILTER PILLS
       Shares pill geometry with .logo-pill (border-radius 999px,
       same padding rhythm) but adds active/inactive states.
    ============================================================ */
    #filters {
      padding: 0 0 56px;
      background: var(--bg);
    }
    .filters-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .filters-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      flex: 1;
      min-width: 0;
    }
    .filter-pill {
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--border);
      background: transparent;
      border-radius: 999px;
      padding: 9px 18px;
      font-size: 13px;
      font-weight: 600;
      font-family: var(--font);
      color: var(--text2);
      white-space: nowrap;
      transition: border-color .2s, color .2s, background .2s;
    }
    .filter-pill:hover {
      border-color: rgba(255,255,255,0.3);
      color: var(--text);
    }
    .filter-pill.active {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }
    .filter-pill.active:hover { background: var(--red-hover); border-color: var(--red-hover); }
    .results-count {
      font-size: 13px;
      font-weight: 600;
      color: var(--text2);
      white-space: nowrap;
    }
    .results-count .red { font-weight: 700; }

    /* ============================================================
       WORK PROJECT GRID
       Extends .project-card from the homepage portfolio section
       with a number, tag pills and longer description.
    ============================================================ */
    #work-grid {
      padding: 0 0 100px;
      background: var(--bg);
    }
    .work-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .work-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: border-color .25s, transform .25s, box-shadow .25s, opacity .3s, scale .3s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }
    .work-card:hover {
      border-color: var(--border-red);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(255,42,42,0.10);
    }
    /* The whole card is wrapped in an <a> so clicking anywhere on it
       opens the project detail page; the anchor itself carries no
       visual styling of its own, it just fills the card. */
    .work-card-link {
      display: flex;
      flex-direction: column;
      height: 100%;
      color: inherit;
    }
    .work-card-img {
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      position: relative;
    }
    .work-card-img-inner {
      width: 100%; height: 100%;
      transition: transform .45s ease;
    }
    .work-card:hover .work-card-img-inner { transform: scale(1.05); }
    .work-card-number {
      position: absolute;
      top: 14px; left: 14px;
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,0.55);
      background: rgba(5,5,5,0.55);
      backdrop-filter: blur(6px);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 4px 9px;
      letter-spacing: 0.04em;
    }
    .work-card-img-label {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255,255,255,0.18);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .work-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    }
    .work-card-body {
      padding: 20px 20px 22px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-grow: 1;
    }
    .work-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }
    .work-card-meta { display: flex; flex-direction: column; gap: 2px; }
    .work-card-name { font-size: 16px; font-weight: 700; }
    .work-card-cat { font-size: 12px; color: var(--red); font-weight: 600; }
    .work-card-arrow {
      color: var(--text2);
      transition: color .2s, transform .2s;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .work-card:hover .work-card-arrow {
      color: var(--red);
      transform: translate(3px, -3px);
    }
    .work-card-desc {
      font-size: 13px;
      color: var(--text2);
      line-height: 1.65;
      flex-grow: 1;
    }
    .work-card-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }
    .work-tag {
      font-size: 11px;
      font-weight: 600;
      color: var(--text2);
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 4px 10px;
    }
    /* Filter exit/enter micro-animation */
    .work-card.hidden-filter {
      display: none;
    }
    .work-card.filtering-out {
      opacity: 0;
      transform: scale(0.96);
    }
    .empty-state {
      display: none;
      text-align: center;
      padding: 64px 24px;
      color: var(--text2);
      font-size: 14px;
      border: 1px dashed var(--border);
      border-radius: var(--radius-lg);
      grid-column: 1 / -1;
    }
    .empty-state.visible { display: block; }

    /* ============================================================
       WORK PAGE — RESPONSIVE
       Same breakpoints (1024px / 768px / 480px) as the homepage.
    ============================================================ */
    @media (max-width: 1024px) {
      .work-grid { grid-template-columns: repeat(2, 1fr); }
      .work-hero-grid { grid-template-columns: 1fr; gap: 36px; }
      .work-stats-card { max-width: 420px; }
    }

    @media (max-width: 768px) {
      .work-grid { grid-template-columns: 1fr; }
      .work-hero-heading { font-size: 30px; }

      .filters-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
      .filters-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .filters-row::-webkit-scrollbar { display: none; }
      .filter-pill { flex-shrink: 0; }
      .results-count { align-self: flex-start; }

      #work-hero, #filters, #work-grid { padding-top: 0; }
      #work-hero { padding: 70px 0 40px; }
      #filters { padding-bottom: 40px; }
      #work-grid { padding-bottom: 70px; }
    }

    @media (max-width: 480px) {
      .work-hero-heading { font-size: 26px; }
      .work-stats-card { padding: 24px; }
    }

    /* ============================================================
       PROJECT DETAIL PAGE
       Reuses --bg/--bg2/--card/--border tokens, .label, .btn-*,
       .work-tag and the section padding rhythm (100px) used
       everywhere else on the site.
    ============================================================ */
    .breadcrumb {
      padding: 28px 0 0;
      background: var(--bg);
    }
    .breadcrumb-row {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text2);
    }
    .breadcrumb-row a { transition: color .2s; }
    .breadcrumb-row a:hover { color: var(--text); }
    .breadcrumb-row .sep { color: rgba(255,255,255,0.25); }
    .breadcrumb-row .current { color: var(--text); }

    #project-hero {
      padding: 32px 0 56px;
      background: var(--bg);
    }
    .project-hero-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .project-hero-heading {
      font-size: clamp(32px, 4.4vw, 56px);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.025em;
      max-width: 760px;
      margin-top: 14px;
    }
    .project-hero-meta-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-width: 220px;
    }
    .project-meta-row {
      display: flex;
      flex-direction: column;
      gap: 3px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }
    .project-meta-row:last-child { border-bottom: none; padding-bottom: 0; }
    .project-meta-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text2);
    }
    .project-meta-value { font-size: 15px; font-weight: 700; }
    .project-hero-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-top: 16px;
    }
    /* "Bekijk live project" knop onderin de meta-card */
    .project-meta-card-cta { margin-top: 4px; }

    #project-body {
      padding: 56px 0 100px;
      background: var(--bg);
    }

    /* ============================================================
       ZIGZAG CONTENT BLOKKEN
       Elk blok bestaat uit tekst + beeld naast elkaar. Even blokken
       tonen tekst links / beeld rechts, oneven blokken draaien dit
       om (.project-block.reverse) zodat het ritme afwisselt — een
       herkenbaar patroon voor case-study pagina's.
    ============================================================ */
    .project-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .project-block:not(:last-child) { margin-bottom: 90px; }
    .project-block.reverse .project-block-text { order: 2; }
    .project-block.reverse .project-block-media { order: 1; }

    .project-block-text { display: flex; flex-direction: column; gap: 16px; }
    .project-block-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
    }
    .project-block-title {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.015em;
      line-height: 1.25;
    }
    .project-block-text-body {
      font-size: 15px;
      color: var(--text2);
      line-height: 1.85;
    }
    .project-block-text-body + .project-block-text-body { margin-top: 12px; }

    .project-block-media {
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--border);
      aspect-ratio: 4/3;
      background: var(--card);
      /* VERVANG: swap voor <img src="..."> of <video> die de hele kaart vult */
    }

    .project-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 4px;
    }
    .project-list-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14.5px;
      color: var(--text2);
      line-height: 1.6;
    }
    .project-list-item::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
      margin-top: 7px;
    }

    .project-nav {
      padding: 56px 0 0;
      background: var(--bg);
    }
    .project-nav-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .project-nav-link {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 22px 24px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      transition: border-color .25s, transform .25s;
    }
    .project-nav-link:hover { border-color: var(--border-red); transform: translateY(-3px); }
    /* .prev needs no overrides — the base .project-nav-link styles
       (left-aligned) are exactly right for it. .next is the one that
       needs to flip alignment, handled below. */
    .project-nav-link.next { text-align: right; align-items: flex-end; }
    .project-nav-direction {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--red);
    }
    .project-nav-title { font-size: 16px; font-weight: 700; }

    /* ============================================================
       PROJECT DETAIL — RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .project-block { grid-template-columns: 1fr; gap: 28px; }
      /* Op tablet/mobiel altijd tekst boven beeld, in document-volgorde
         — de afwisselende links/rechts is alleen zinvol op breed scherm. */
      .project-block.reverse .project-block-text { order: 1; }
      .project-block.reverse .project-block-media { order: 2; }
      .project-block:not(:last-child) { margin-bottom: 56px; }
    }
    @media (max-width: 768px) {
      .project-hero-top { flex-direction: column; }
      .project-hero-meta-card { width: 100%; min-width: 0; }
      .project-nav-row { grid-template-columns: 1fr; }
      .project-nav-link.next { text-align: left; align-items: flex-start; }
      #project-hero { padding: 24px 0 40px; }
      #project-body { padding-bottom: 70px; }
    }

    /* ============================================================
       CONTACT PAGE
       Reuses --bg/--bg2/--card/--border tokens, .label, .btn-*
       and the 100px section rhythm used across the site.
    ============================================================ */
    #contact-hero {
      padding: 70px 0 56px;
      background: var(--bg);
    }
    .contact-hero-heading {
      font-size: clamp(34px, 4.2vw, 54px);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.025em;
      max-width: 620px;
      margin-top: 14px;
    }
    .contact-hero-sub {
      font-size: 15.5px;
      color: var(--text2);
      line-height: 1.75;
      max-width: 480px;
      margin-top: 18px;
    }

    #contact-main {
      padding: 0 0 100px;
      background: var(--bg);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 56px;
      align-items: start;
    }

    /* Contact info column */
    .contact-info-list { display: flex; flex-direction: column; gap: 16px; }
    .contact-info-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 22px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: border-color .25s, transform .25s;
    }
    .contact-info-card:hover { border-color: var(--border-red); transform: translateY(-3px); }
    .contact-info-icon {
      width: 44px; height: 44px;
      border-radius: var(--radius-sm);
      background: var(--red-dim);
      border: 1px solid rgba(255,42,42,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      flex-shrink: 0;
    }
    .contact-info-body { display: flex; flex-direction: column; gap: 3px; }
    .contact-info-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text2);
    }
    .contact-info-value { font-size: 15px; font-weight: 700; }
    .contact-info-value a { transition: color .2s; }
    .contact-info-value a:hover { color: var(--red); }

    .contact-map-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      aspect-ratio: 4/3;
      margin-top: 4px;
    }
    .contact-map-card iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      /* Black & white styling is applied via the filter below */
      filter: grayscale(1) invert(0.92) contrast(0.9);
    }

    /* Form column */
    .contact-form-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 36px;
    }
    .form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
    .form-row-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-label {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text2);
    }
    .form-input,
    .form-textarea {
      width: 100%;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 13px 16px;
      font-family: var(--font);
      font-size: 14.5px;
      color: var(--text);
      transition: border-color .2s, background .2s;
    }
    .form-input::placeholder,
    .form-textarea::placeholder { color: rgba(255,255,255,0.35); }
    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--red);
      background: rgba(255,42,42,0.04);
    }
    .form-textarea { resize: vertical; min-height: 140px; }
    .form-submit-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 8px;
      flex-wrap: wrap;
    }
    .form-status {
      font-size: 13.5px;
      font-weight: 600;
    }
    .form-status.success { color: #4ADE80; }
    .form-status.error { color: var(--red); }

    /* ============================================================
       CONTACT PAGE — RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .form-row-pair { grid-template-columns: 1fr; gap: 0; }
      .contact-form-card { padding: 24px; }
      #contact-hero { padding: 50px 0 36px; }
      #contact-main { padding-bottom: 70px; }
    }
  