@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600;700&display=swap');

  :root{
    --bg: #FAFAF8;
    --bg-alt: #F1F0EC;
    --navy: #1E3A5F;
    --navy-deep: #0F2136;
    --navy-soft: #2C4C74;
    --line: #E2DFD7;
    --text: #263140;
    --text-soft: #5B6773;
    --white: #FFFFFF;
    --radius-ui: 6px;
    --page-max: 1180px;
    --page-pad: 32px;
  }

  *{ box-sizing: border-box; margin:0; padding:0; }
  html{ scroll-behavior: smooth; }

  body{
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
  }

  body::before{
    content:'';
    position: absolute;
    inset: 0;
    min-height: 100%;
    pointer-events: none;
    z-index: 999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
  }

  h1, h2, h3, .display{
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
  }

  a{ color: inherit; text-decoration: none; }
  img{ max-width: 100%; display: block; }
  section{ scroll-margin-top: 76px; }

  .skip-link{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 16px;
    background: var(--white);
    color: var(--navy-deep);
    border: 2px solid var(--navy);
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
  }
  .skip-link:focus{
    clip: auto;
    clip-path: none;
    width: auto;
    height: auto;
    overflow: visible;
    white-space: normal;
  }

  /* Single consistent width system used everywhere */
  .container{
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--page-pad);
  }

  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
    outline: 2px solid var(--navy);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  }

  .hex{ clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }

  /* ---------- Header ---------- */
  header{
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: background 0.35s ease, border-color 0.35s ease;
  }

  header.scrolled{
    background: var(--navy);
    border-bottom-color: rgba(255,255,255,0.12);
  }

  .nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
  }

  .logo{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .logo img{ height: 32px; width: auto; }
  .logo-icon-white{ display: none; }
  header.scrolled .logo-icon-navy{ display: none; }
  header.scrolled .logo-icon-white{ display: block; }

  .logo-word{
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: color 0.35s ease;
  }
  .logo-word .dot{ color: var(--navy-soft); margin: 0 1px; transition: color 0.35s ease; }
  header.scrolled .logo-word{ color: var(--white); }
  header.scrolled .logo-word .dot{ color: #A9C1DB; }

  .nav-links{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1;
    justify-content: center;
  }

  .nav-links li a{
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-soft);
    transition: color 0.2s ease;
    white-space: nowrap;
  }
  .nav-links li a:hover{ color: var(--navy); }
  header.scrolled .nav-links li a{ color: #C3D0DE; }
  header.scrolled .nav-links li a:hover{ color: var(--white); }

  .nav-cta{
    padding: 10px 22px;
    background: var(--navy);
    color: var(--white) !important;
    border-radius: var(--radius-ui);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.35s ease, color 0.35s ease, transform 0.2s ease, box-shadow 0.35s ease;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -6px rgba(30,58,95,0.5);
  }
  .nav-cta:hover{ background: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(30,58,95,0.55); }
  header.scrolled .nav-cta{
    background: var(--white);
    color: var(--navy-deep) !important;
    box-shadow: 0 6px 16px -6px rgba(0,0,0,0.35);
  }
  header.scrolled .nav-cta:hover{ background: #E9EEF4; }

  .menu-toggle{ display:none; background:none; border:none; cursor:pointer; padding:8px; flex-shrink:0; }
  .menu-toggle span{ display:block; width:22px; height:2px; background: var(--navy-deep); margin: 4px 0; transition: background 0.35s ease; }
  header.scrolled .menu-toggle span{ background: var(--white); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

  /* ---------- Hero ---------- */
  .hero{
    position: relative;
    background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 70px;
  }

  .hero-blobs{
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .hero-blobs::before,
  .hero-blobs::after{
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
  }
  .hero-blobs::before{
    width: 560px;
    height: 560px;
    top: -140px;
    left: -80px;
    background: radial-gradient(circle, rgba(255,255,255,0.09) 0%, transparent 70%);
  }
  .hero-blobs::after{
    width: 420px;
    height: 420px;
    bottom: -120px;
    left: 30%;
    background: radial-gradient(circle, rgba(169,193,219,0.10) 0%, transparent 70%);
  }

  .hero-glow{
    position: absolute;
    top: 50%; right: 10%;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
  }

  .hero-svg{
    display: block;
    width: 100%;
    max-width: 480px;
  }
  .hero-visual{
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 480px;
  }
  .hero-visual::before{
    content: '';
    position: absolute;
    inset: 12% 4% 8% 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(169,193,219,0.14), transparent 68%);
    filter: blur(22px);
  }
  .hero-panel,
  .hero-device,
  .hero-tool{ fill: rgba(255,255,255,0.055); stroke: rgba(255,255,255,0.3); stroke-width: 1.5; }
  .hero-device{ fill: rgba(15,33,54,0.48); }
  .hero-tool{ fill: rgba(255,255,255,0.08); }
  .hero-line{ stroke: rgba(255,255,255,0.19); stroke-width: 1.5; }
  .hero-dot{ fill: rgba(255,255,255,0.38); }
  .hero-fill-strong{ fill: rgba(255,255,255,0.32); }
  .hero-fill-soft{ fill: rgba(255,255,255,0.14); }
  .hero-panel-soft{ fill: rgba(255,255,255,0.065); stroke: rgba(255,255,255,0.19); stroke-width: 1.1; }
  .hero-visual-label{
    position: absolute;
    right: 12px;
    bottom: 20px;
    color: #8FA3B9;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero-inner{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 var(--page-pad);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
  }

  .hero-text{ max-width: 620px; }

  .eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #A9C1DB;
    font-weight: 600;
    margin-bottom: 26px;
  }
  .eyebrow::before{
    content:'';
    width: 7px;
    height: 7px;
    background: #A9C1DB;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  }

  /* Sectie-titel variant: lijn - tekst - lijn, geen stipje */
  .eyebrow-lined{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 26px;
  }
  .eyebrow-lined::before,
  .eyebrow-lined::after{
    content: '';
    width: 34px;
    height: 1px;
    background: var(--line);
  }
  .eyebrow-lined.on-dark::before,
  .eyebrow-lined.on-dark::after{
    background: rgba(255,255,255,0.22);
  }

  .hero h1{
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
  }
  .hero h1 em{ font-style: italic; color: #C9D8E8; }

  .hero p.lead{
    font-size: 18px;
    color: #C3D0DE;
    max-width: 520px;
    margin-bottom: 40px;
  }

  .hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }

  .btn{
    padding: 15px 30px;
    border-radius: var(--radius-ui);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
  }
  .btn-primary{ background: var(--white); color: var(--navy-deep); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.35); }
  .btn-primary:hover{ background: #E9EEF4; transform: translateY(-1px); }
  .btn-outline{
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.35);
  }
  .btn-outline:hover{ border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

  .hero-meta{
    display: flex;
    gap: 32px;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.14);
    max-width: 520px;
  }
  .hero-meta div{
    transition: transform 0.25s ease;
  }
  .hero-meta div:hover{
    transform: translateY(-2px);
  }
  .hero-meta div:hover strong{
    color: #C9D8E8;
  }
  .hero-meta div strong{
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 2px;
    transition: color 0.25s ease;
  }
  .hero-meta div span{ font-size: 12.5px; color: #9FB2C6; }

  .scroll-cue{
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #8FA3B9;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .scroll-cue .line{
    width: 1px; height: 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollpulse 2s ease-in-out infinite;
  }
  @keyframes scrollpulse{
    0%, 100%{ opacity: 0.3; }
    50%{ opacity: 1; }
  }

  /* ---------- Section shared ---------- */
  section{ padding: 108px 0; position: relative; }

  /* Scroll-reveal: elementen starten onzichtbaar en licht verlaagd,
     komen in beeld zodra ze de viewport binnenkomen (via JS class .in-view) */
  .reveal{
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in-view{
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-group .reveal:nth-child(1){ transition-delay: 0s; }
  .reveal-group .reveal:nth-child(2){ transition-delay: 0.08s; }
  .reveal-group .reveal:nth-child(3){ transition-delay: 0.16s; }
  .reveal-group .reveal:nth-child(4){ transition-delay: 0.24s; }

  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity: 1; transform: none; transition: none; }
  }

  .section-head{
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
  }
  .section-head .eyebrow-lined{ color: var(--navy-soft); justify-content: center; }
  .section-head h2{ font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
  .section-head p{ color: var(--text-soft); font-size: 16.5px; }

  /* ---------- Diensten ---------- */
  .services{
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .service-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 48px;
    row-gap: 0;
  }

  .service-card{
    background: transparent;
    padding: 38px 0;
    position: relative;
    cursor: default;
    transition: transform 0.3s ease, background 0.3s ease;
    border-top: 1px solid var(--line);
    isolation: isolate;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
  }
  .service-card::before{
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 42px;
    height: 2px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .service-card:hover{
    transform: translateY(-2px);
  }
  .service-card:hover::before{
    transform: scaleX(1);
  }
  .service-card::after{
    position: absolute;
    top: 14px;
    right: 4px;
    z-index: 0;
    color: rgba(30,58,95,0.055);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 92px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.06em;
    transition: color 0.25s ease, transform 0.25s ease;
  }
  .service-card:nth-child(1)::after{ content: '01'; }
  .service-card:nth-child(2)::after{ content: '02'; }
  .service-card:nth-child(3)::after{ content: '03'; }
  .service-card:nth-child(4)::after{ content: '04'; }
  .service-card:nth-child(5)::after{ content: '05'; }
  .service-card > *{ position: relative; z-index: 1; }
  .service-card:hover::after{
    color: rgba(30,58,95,0.085);
    transform: translateY(-2px);
  }

  .service-card h3{ font-size: 21px; margin-bottom: 12px; }
  .service-card p{ color: var(--text-soft); font-size: 15px; margin-bottom: 18px; }

  .service-tags{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 4px;
  }
  .service-tags span{
    font-size: 11.5px;
    font-weight: 500;
    color: var(--navy-soft);
    padding: 0 10px 0 0;
    border-right: 1px solid var(--line);
  }
  .service-tags span:last-child{ border-right: 0; }
  .service-card:nth-child(4),
  .service-card:nth-child(5){ grid-column: span 3; }
  .service-card:nth-child(4),
  .service-card:nth-child(5){ border-bottom: 1px solid var(--line); }

  /* ---------- Projecten ---------- */
  .projects-section{
    background: var(--bg-alt);
    background-image:
      radial-gradient(circle at 88% 18%, rgba(30,58,95,0.07), transparent 27%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='420' viewBox='0 0 360 420'%3E%3Cg fill='none' stroke='%231E3A5F' stroke-opacity='.13' stroke-width='1.2'%3E%3Cpath d='M180 20l110 64v128l-110 64-110-64V84z'/%3E%3Cpath d='M282 230l64 37v74l-64 37-64-37v-74z'/%3E%3Cpath d='M55 300l42 24v49l-42 24-42-24v-49z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center, right 38px top 92px;
    background-size: auto, 430px 500px;
    overflow: hidden;
  }
  .section-accent::before{
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 22px;
    height: 22px;
    transform: translateX(-50%);
    background: var(--navy);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 3;
  }
  .projects-section::after{
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    right: -290px;
    top: 80px;
    border: 1px solid rgba(30,58,95,0.13);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    pointer-events: none;
  }
  .projects-grid{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
  }

  .project-card{
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    grid-column: span 4;
    box-shadow: 0 24px 55px -42px rgba(15,33,54,0.38);
    border-radius: var(--radius-ui);
  }
  .project-card-featured{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
    align-items: stretch;
  }
  .project-card-featured .project-media{
    aspect-ratio: auto;
    min-height: 390px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .project-card-featured .project-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 42px;
  }
  .project-card-featured h3{ font-size: 27px; }
  .project-media{
    aspect-ratio: 16/11;
    background: linear-gradient(150deg, var(--bg-alt) 0%, #EAE7DF 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    cursor: zoom-in;
  }

  .project-media::after{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,33,54,0.28);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
  }
  .project-media:hover::after{ opacity: 1; }

  .project-media .zoom-hint{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 6px 16px -6px rgba(15,33,54,0.4);
  }
  .project-media:hover .zoom-hint{ opacity: 1; transform: scale(1); }
  .project-media .zoom-hint svg{ width: 15px; height: 15px; color: var(--navy-deep); }

  .project-media:focus-visible{
    outline: 2px solid var(--navy);
    outline-offset: -2px;
  }
  .project-media img{
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
  }

  /* Staande (portret) screenshots, zoals PWA-schermen, verliezen te veel content
     in het standaard 16:11 breedbeeld-vak. Toon een groter deel van het beeld door
     een smaller, hoger vak te gebruiken, zodat de kern van de app zichtbaar blijft. */
  .project-media-portrait{
    aspect-ratio: 4/5;
  }
  .project-media-portrait img{
    object-position: top center;
  }
  @media (min-width: 640px){
    .project-media-portrait{ aspect-ratio: 3/4; }
  }

  .project-placeholder{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #A8A499;
  }
  .project-placeholder svg{ width: 40px; height: 40px; opacity: 0.6; }
  .project-placeholder span{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .project-body{ padding: 28px 26px 30px; }

  .project-tag{
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy-soft);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .project-tag::before{
    content: '';
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: #708090;
  }
  .status-development .project-tag::before{ background: #C18A32; }
  .status-complete .project-tag::before{ background: #3D8A63; }
  .status-beta .project-tag::before{ background: #4E78A5; }
  .status-custom .project-tag::before{ background: #7A668F; }

  .project-card h3{ font-size: 19px; margin-bottom: 10px; }
  .project-card p{ color: var(--text-soft); font-size: 14.5px; margin-bottom: 16px; }
  .project-card p:last-child{ margin-bottom: 0; }
  .project-card .project-outcome{
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-size: 13px;
  }
  .project-outcome span{
    display: block;
    margin-bottom: 5px;
    color: var(--navy-soft);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .project-link{
    font-size: 13.5px;
    font-weight: 500;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .project-link svg{ width: 13px; height: 13px; transition: transform 0.2s ease; }

  .projects-more{
    text-align: center;
    margin-top: 48px;
  }

  /* ---------- Lightbox ---------- */
  .lightbox{
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10,20,32,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  }
  .lightbox.open{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0s linear 0s;
  }

  .lightbox-figure{
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    transform: scale(0.97);
    transition: transform 0.25s ease;
  }
  .lightbox.open .lightbox-figure{ transform: scale(1); }

  .lightbox-figure img{
    max-width: 100%;
    max-height: 86vh;
    width: auto;
    height: auto;
    display: block;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  }

  .lightbox-caption{
    text-align: center;
    color: #C3D0DE;
    font-size: 13.5px;
    margin-top: 16px;
  }

  .lightbox-close{
    position: fixed;
    top: 24px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .lightbox-close:hover{ background: rgba(255,255,255,0.2); }
  .lightbox-close svg{ width: 18px; height: 18px; color: var(--white); }

  @media (max-width: 640px){
    .lightbox{ padding: 24px 16px; }
    .lightbox-close{ top: 16px; right: 16px; width: 38px; height: 38px; }
  }

  /* ---------- Werkwijze ---------- */
  .process-section{
    --process-bg: #F6F5F2;
    background: var(--process-bg);
    border-bottom: 1px solid var(--line);
  }
  .process-wrap{ position: relative; }

  .process-line{
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--line);
    overflow: hidden;
  }
  .process-line::after{
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s ease;
  }
  .process-line.in-view::after{
    transform: scaleX(1);
  }

  .process{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
  }

  .process-step{ position: relative; padding-top: 66px; }

  .process-step-num{
    position: absolute;
    top: 0; left: 0;
    width: 48px; height: 44px;
    background: var(--process-bg);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--navy);
    z-index: 1;
  }

  .process-step .step-label{
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy-soft);
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
  }
  .process-step h3{ font-size: 22px; margin-bottom: 12px; }
  .process-step p{ color: var(--text-soft); font-size: 15px; }

  /* ---------- Over mij ---------- */
  .about{ background: var(--navy); color: var(--bg); overflow: hidden; position: relative; }

  .about::after{
    content:'';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 70% 60% at 20% 30%, black 10%, transparent 70%);
  }
  .about::before{
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    top: -100px;
    right: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
  }

  .about-inner{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    align-items: center;
  }

  .about-visual{
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, #23405F 0%, #0F2136 100%);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 90px -30px rgba(0,0,0,0.5);
    overflow: hidden;
    border-radius: var(--radius-ui);
  }
  .about-visual::before{
    content:'';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    z-index: 2;
    pointer-events: none;
  }
  .about-portrait{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.94) contrast(1.02);
    transition: transform 0.6s ease;
  }
  .about-visual:hover .about-portrait{ transform: scale(1.015); }

  .about h2{ color: var(--bg); font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 22px; }
  .about .eyebrow-lined{ color: #A9C1DB; }

  .contact-eyebrow-lined{ color: var(--navy-soft); justify-content: center; }
  .about p{ color: #B9C3CE; font-size: 16px; margin-bottom: 18px; max-width: 500px; }
  .about .about-intro{
    color: var(--white);
    font-family: 'Fraunces', serif;
    font-size: 20px;
    line-height: 1.5;
  }

  .about-stats{ display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
  .about-stats div{
    padding-left: 16px;
    border-left: 2px solid rgba(255,255,255,0.18);
    transition: border-color 0.25s ease;
  }
  .about-stats div:hover{
    border-left-color: #A9C1DB;
  }
  .about-stats div strong{
    display: block; font-family: 'Fraunces', serif; font-size: 28px; color: var(--white);
  }
  .about-stats div span{ font-size: 12.5px; color: #8A97A5; }

  .about-quote{
    max-width: 520px;
    margin-top: 30px;
    padding: 18px 0 18px 22px;
    border-left: 2px solid #A9C1DB;
    color: #D8E2EC;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.55;
  }

  /* ---------- Veelgestelde vragen ---------- */
  .faq{ background: var(--bg-alt); border-bottom: 1px solid var(--line); }
  .faq-inner{
    display: grid;
    grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
    gap: 90px;
    align-items: start;
  }
  .faq-intro{ position: sticky; top: 112px; }
  .faq-intro .eyebrow-lined{ color: var(--navy-soft); }
  .faq-intro h2{ font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; }
  .faq-intro p{ color: var(--text-soft); font-size: 15.5px; }
  .faq-list{ border-top: 1px solid var(--line); }
  .faq-list details{ border-bottom: 1px solid var(--line); }
  .faq-list summary{
    position: relative;
    padding: 24px 46px 24px 0;
    color: var(--navy-deep);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 19px;
    font-weight: 500;
    list-style: none;
    cursor: pointer;
  }
  .faq-list summary::-webkit-details-marker{ display: none; }
  .faq-list summary::after{
    content: '+';
    position: absolute;
    top: 22px;
    right: 4px;
    color: var(--navy-soft);
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.2s ease;
  }
  .faq-list details[open] summary::after{ transform: rotate(45deg); }
  .faq-list details p{
    max-width: 620px;
    padding: 0 46px 24px 0;
    color: var(--text-soft);
    font-size: 15px;
  }
  .faq-list summary:focus-visible{
    outline: 2px solid var(--navy);
    outline-offset: 4px;
  }

  /* ---------- Contact ---------- */
  .contact{ text-align: center; }

  .contact-box{
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 68px 58px;
    position: relative;
    box-shadow: 0 50px 100px -45px rgba(15,33,54,0.28);
    border-radius: var(--radius-ui);
  }
  .contact-box::before{
    content:'';
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    width: 30px; height: 30px;
    background: var(--navy);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    box-shadow: 0 8px 20px -6px rgba(30,58,95,0.5);
  }

  .contact-box h2{ font-size: 30px; margin-bottom: 14px; }
  .contact-box p{ color: var(--text-soft); margin-bottom: 38px; }

  form{ display: grid; gap: 18px; text-align: left; }
  .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

  label{
    display: block; font-size: 13px; font-weight: 500;
    color: var(--navy-deep); margin-bottom: 7px;
  }

  input, textarea{
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-ui);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  input:focus, textarea:focus{ outline: none; border-color: var(--navy); background: var(--white); }
  textarea{ resize: vertical; min-height: 110px; }

  form button{
    margin-top: 8px;
    padding: 15px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-ui);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 14px 28px -14px rgba(30,58,95,0.5);
  }
  form button:hover{ background: var(--navy-deep); }

  .contact-alt{ margin-top: 30px; font-size: 14px; color: var(--text-soft); }
  .contact-alt a{ color: var(--navy); font-weight: 500; border-bottom: 1px solid var(--line); }
  .contact-alt a:hover{ border-color: var(--navy); }

  .contact-status{
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 500;
    min-height: 18px;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .contact-status.visible{ opacity: 1; }
  .contact-status.success{ color: #2E7D4F; }
  .contact-status.error{ color: #B3413C; }
  .form-privacy{
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 12.5px;
    line-height: 1.55;
  }
  .contact-assurances{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 26px 0 34px;
    padding: 0;
    list-style: none;
  }
  .contact-assurances li{
    position: relative;
    padding-left: 18px;
    color: var(--text-soft);
    font-size: 13px;
  }
  .contact-assurances li::before{
    content: '';
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--navy-soft);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  }

  #contact-submit-btn.is-loading{
    opacity: 0.75;
    cursor: default;
  }

  /* ---------- Footer ---------- */
  footer{ border-top: 1px solid rgba(255,255,255,0.12); padding: 40px 0; background: var(--navy); }
  .footer-inner{
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-inner .logo img{ height: 24px; }
  .footer-inner .logo-word{ font-size: 16px; }
  footer .copy{ font-size: 13px; color: var(--text-soft); }
  footer .logo-icon-navy{ display: none; }
  footer .logo-icon-white{ display: block; }
  footer .logo-word{ color: var(--white); }
  footer .logo-word .dot{ color: #A9C1DB; }
  footer .copy{ color: #C3D0DE; }

  .whatsapp-float{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 190;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 17px 12px 13px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    background: #1F7A4D;
    color: var(--white);
    box-shadow: 0 16px 36px -12px rgba(15,33,54,0.55);
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }
  .whatsapp-float.is-over-contact{
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
  }
  .whatsapp-float:hover{
    background: #17643E;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px -12px rgba(15,33,54,0.65);
  }
  .whatsapp-float svg{ width: 22px; height: 22px; flex-shrink: 0; }

  /* ---------- Responsive ---------- */
  @media (max-width: 980px){
    .hero-inner{ grid-template-columns: 1fr; text-align: left; }
    .hero-visual{ display: none; }
    .hero-glow{ display: none; }
    .about-inner{ grid-template-columns: 1fr; gap: 40px; }
    .about-visual{ order: -1; max-width: 300px; margin: 0 auto; }
    .service-grid{ grid-template-columns: repeat(2, 1fr); }
    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5){ grid-column: auto; }
    .service-card:nth-child(5){ grid-column: 1 / -1; }
    .project-card{ grid-column: 1 / -1; }
    .project-card-featured{ grid-template-columns: 1fr; }
    .project-card-featured .project-media{ min-height: 0; aspect-ratio: 16/10; border-right: 0; border-bottom: 1px solid var(--line); }
  }

  @media (max-width: 980px){
    .projects-grid{ grid-template-columns: 1fr; }
  }

  @media (max-width: 860px){
    .service-grid{ grid-template-columns: 1fr; }
    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5){ grid-column: auto; }
    .service-tags{ margin-top: 0; padding-top: 0; }
    .projects-grid{ grid-template-columns: 1fr; }
    .process{ grid-template-columns: 1fr; gap: 44px; }
    .process-line{ display: none; }
    .process-wrap::before,
    .process-wrap::after{ display: none; }
    .form-row{ grid-template-columns: 1fr; }
    .faq-inner{ grid-template-columns: 1fr; gap: 42px; }
    .faq-intro{ position: static; }
  }

  @media (max-width: 760px){
    :root{ --page-pad: 22px; }
    .section-head{
      max-width: 620px;
      margin: 0 auto 52px;
      text-align: center;
    }
    .section-head .eyebrow-lined,
    .contact-eyebrow-lined{
      justify-content: center;
    }
    .faq-intro .eyebrow-lined::after,
    .about .eyebrow-lined::after{ display: none; }
    .section-head h2,
    .faq-intro h2,
    .about h2,
    .contact-box h2{
      font-size: 30px;
      line-height: 1.2;
    }
    .section-head p,
    .faq-intro p,
    .about p,
    .contact-box > p{
      font-size: 15.5px;
    }
    .nav-links{
      position: fixed;
      top: 66px; left: 0; right: 0;
      background: var(--bg);
      flex-direction: column;
      align-items: flex-start;
      padding: 24px var(--page-pad);
      border-bottom: 1px solid var(--line);
      gap: 20px;
      display: none;
      transition: background 0.35s ease, border-color 0.35s ease;
    }
    .nav-links.open{ display: flex; }
    .nav-links li{ width: 100%; }
    .nav-links li a{
      display: block;
      width: 100%;
      padding: 12px 4px;
      font-size: 16px;
    }
    header.scrolled .nav-links{
      background: var(--navy-deep);
      border-bottom-color: rgba(255,255,255,0.12);
    }
    .nav-cta{ display: none; }
    .menu-toggle{ display: block; }
    .hero{ padding: 110px 0 72px; min-height: auto; }
    section{ padding: 80px 0; }
    .contact{ text-align: center; }
    .contact-box{ padding: 46px 26px; }
    .contact-box::before{
      left: 50%;
      transform: translateX(-50%);
    }
    .about-stats{ gap: 24px; }
    .scroll-cue{ display: none; }
    .hero-meta{ gap: 18px; margin-top: 42px; }
    .hero-meta div strong{ font-size: 18px; }
    .project-card-featured .project-body{ padding: 30px 26px; }
    .contact-assurances{ justify-content: flex-start; flex-direction: column; align-items: flex-start; }
    .whatsapp-float{
      right: 16px;
      bottom: max(16px, env(safe-area-inset-bottom));
      width: 50px;
      height: 50px;
      justify-content: center;
      padding: 0;
    }
    .whatsapp-float span{ position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
    .process-step{ padding-top: 72px; }
  }
