/* Glypher — sleep het .ttf/.otf bestand in de creajt-website map */
    @font-face {
      font-family: 'Glypher';
      src: url('Glypher.ttf') format('truetype'),
           url('Glypher.otf') format('opentype'),
           url('glypher.ttf') format('truetype'),
           url('glypher.otf') format('opentype');
      font-weight: normal;
      font-style: normal;
    }

    :root {
      --beige:      #E7E3DF;
      --blue:       #3C58A4;
      --navy:       #1E2744;
      --dark:       #1C1C1C;
      --kraft:      #C4B89A;
      --bubble-bg:  #B8B0A4;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Roboto', sans-serif;
      background: var(--beige);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ═══════════════════════════════
       NAV
    ═══════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--beige);
      padding: 12px 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 44px;
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }

    .nav-group { display: flex; gap: 36px; list-style: none; }
    .nav-group a {
      text-decoration: none;
      color: var(--navy);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      position: relative;
      transition: color .25s ease;
    }
    .nav-group a::after {
      content: '';
      position: absolute;
      left: 0; bottom: -4px;
      width: 0; height: 2px;
      background: var(--blue);
      transition: width .3s ease;
    }
    .nav-group a:hover::after,
    .nav-group a.active::after { width: 100%; }
    .nav-group a.active { color: var(--blue); }

    .logo-link {
      text-decoration: none;
      display: block;
      height: 44px;
      overflow: hidden;
    }
    .nav-logo {
      /* The logo PNG has ~38% whitespace top/bottom.
         We render it tall so the text is ~44px,
         then clip the whitespace via overflow:hidden on parent. */
      height: 180px;
      width: auto;
      margin-top: -68px;
      mix-blend-mode: multiply;
      display: block;
    }

    /* ═══════════════════════════════
       HERO
    ═══════════════════════════════ */
    #home {
      min-height: 80vh;
      background: var(--beige);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: flex-end;
      padding-top: 74px;
      /* op grote schermen blijft de inhoud gecentreerd op een max-breedte i.p.v. tot de randen */
      padding-left: max(0px, calc((100% - 1520px) / 2));
      padding-right: max(0px, calc((100% - 1520px) / 2));
      position: relative;
      overflow: hidden;
    }

    /* ── Hanging phone ── */
    .phone-wrap {
      position: absolute;
      left: max(10px, calc((100% - 1520px) / 2 + 10px)); /* schuift mee met de gecentreerde hero-inhoud */
      top: 10px;            /* iets lager → snoer-top niet tegen de bovenrand afgesneden */
      width: 300px;         /* grotere telefoon / hoorn */
      z-index: 1100;        /* boven de nav (1000) → snoer hangt óver de menubalk */
      pointer-events: none; /* blokkeert nooit klikken op de nav */
      transform-origin: top center;
      animation:
        phoneDrop 1.1s cubic-bezier(.34,1.56,.64,1) .3s both,
        phoneSwing 4s ease-in-out 1.6s infinite;
    }
    .phone-wrap .phone-link {
      pointer-events: auto;   /* alleen de telefoon zelf is klikbaar → contact */
      cursor: pointer;
      display: block;
      transition: transform .25s ease, filter .25s ease;
    }
    .phone-wrap .phone-link:hover { transform: rotate(-4deg) scale(1.03); filter: drop-shadow(0 8px 18px rgba(30,39,68,.28)); }
    .phone-wrap img {
      width: 100%;
      height: auto;
      mix-blend-mode: multiply;
      display: block;
    }
    /* nav-interactie blijft boven de telefoon werken (positie van de knoppen NIET wijzigen) */
    #nav .nav-group a, #nav .logo-link, #nav .nav-toggle { position: relative; z-index: 1200; }
    #nav .nav-cta, #nav .nav-account { z-index: 1200; }

    @keyframes phoneDrop {
      from { transform: translateY(-115%); }
      to   { transform: translateY(0);    }
    }
    @keyframes phoneSwing {
      0%,100% { transform: rotate(-4.5deg); }
      50%     { transform: rotate(4.5deg);  }
    }

    /* ── Hero text ── */
    .hero-left {
      padding: 0 40px 80px 258px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
      z-index: 3;
    }

    .greeting-wrap {
      font-family: 'Glypher', cursive;
      font-size: 84px;
      font-weight: 400;
      color: var(--blue);
      line-height: 1;
      min-height: 90px;
      white-space: nowrap;
    }

    /* Glypher overal: normaal gewicht + nooit geforceerd hoofdletters
       (zo blijft alleen de eerste letter een kapitaal) */
    .script-accent {
      font-family: 'Glypher', cursive;
      font-weight: 400;
      text-transform: none;
    }

    /* Merknaam in lopende tekst: 'jt' schuin + vet in merkblauw (zoals in het logo) */
    .jt {
      font-weight: 700;
      font-style: italic;
      color: var(--blue);
    }
    /* Op donkere/blauwe secties een leesbare kleur i.p.v. blauw-op-blauw */
    #online .jt { color: #fff; }
    #over .jt,
    footer .jt { color: var(--kraft); }

    /* ── "Hee jij!" wordt écht geschreven (SVG stroke-draw uit het Glypher-font) ── */
    #hwSvg {
      display: block;
      width: 165px;
      height: auto;
      overflow: visible;
    }
    #hwSvg .hw-path {
      fill: var(--blue);
      fill-opacity: 0;                /* letter vult zich pas ná het natekenen */
      stroke: var(--blue);
      stroke-width: 16;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 1;            /* pathLength="1" → genormaliseerd */
      stroke-dashoffset: 1;           /* begint onzichtbaar; JS tekent 'm naar 0 */
    }

    .hero-sub {
      display: flex;
      flex-direction: column;
      gap: 18px;
      min-height: 150px;        /* hoogte gereserveerd zodat layout niet springt */
    }
    .hs-head {
      font-size: clamp(30px, 3.4vw, 43px);
      font-weight: 900;
      line-height: 1.04;
      letter-spacing: -.6px;
      color: var(--navy);
    }
    .hs-accent { color: var(--blue); }
    .hs-tag {
      font-size: 17px;
      font-weight: 400;
      line-height: 1.6;
      color: #5b606b;
      max-width: 30ch;
    }
    /* knipperende type-cursor */
    #subCaret {
      display: inline-block;
      width: 2px; height: 1em;
      background: var(--dark);
      margin-left: 2px;
      vertical-align: -2px;
      animation: caretBlink .7s step-end infinite;
    }
    @keyframes caretBlink { 50% { opacity: 0; } }

    /* ── Folder stack ── */
    .hero-right {
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      overflow: visible;
    }

    .mappen-wrap {
      position: relative;
      width: 115%;
      margin-right: -8%;
      aspect-ratio: 1200 / 630;   /* zelfde verhouding als de PNG's → ruimte voor de absolute lagen */
      cursor: pointer;
    }
    /* Elk mapje een eigen laag, exact over elkaar */
    .map-layer {
      position: absolute;
      inset: 0;
      width: 100%;
      height: auto;
      display: block;
      transition: transform .45s cubic-bezier(.34,1.56,.64,1), filter .45s ease;
      pointer-events: none;        /* hover/klik loopt via de zones erboven */
    }
    .m4 { z-index: 1; }  /* achterste kraft (geen label) */
    .m3 { z-index: 2; }  /* Leer het Zelf (blauw)        */
    .m2 { z-index: 3; }  /* Content Creatie (kraft)      */
    .m1 { z-index: 4; }  /* Social Media Beheer (blauw) — voorste, beweegt NIET */

    /* Individueel omhoog komen bij hover */
    .map-layer.lift {
      transform: translateY(-26px);
      filter: drop-shadow(0 16px 22px rgba(30,39,68,.28));
    }

    /* Onzichtbare hover/klik-zones per mapje (liggen bovenop de lagen) */
    .f-zone { position: absolute; cursor: pointer; }
    .fz-back    { top: 0;    left: 2%;  width: 34%; height: 18%; z-index: 10; } /* achterste kraft */
    .fz-leer    { top: 6%;   right: 0;  width: 50%; height: 30%; z-index: 11; } /* LEER HET ZELF  */
    .fz-content { top: 38%;  left: 0;   width: 56%; height: 24%; z-index: 12; } /* CONTENT CREATIE */
    .fz-social  { bottom: 0; left: 0;   width: 80%; height: 36%; z-index: 13; } /* SOCIAL MEDIA BEHEER (voorste) */

    /* ═══════════════════════════════
       SECTION 2 — ONLINE AANWEZIGHEID
    ═══════════════════════════════ */
    #online {
      background: var(--blue);
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 64px;
      padding: 120px max(64px, calc((100% - 1340px) / 2));
    }

    /* Instagram mockup */
    .insta-wrap {
      position: relative;
      width: 340px;
      margin: 0 auto;
    }
    .insta-frame {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 28px 70px rgba(0,0,0,.35);
    }
    .insta-photo {
      width: 100%; height: 360px;
      background: linear-gradient(150deg, #4a63ad 0%, #2b3a66 100%);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.72);
      font-size: 13px; font-weight: 600; letter-spacing: .3px;
    }
    .insta-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .insta-bar {
      padding: 12px 16px 14px;
      display: flex; gap: 14px; font-size: 19px;
    }

    /* Bubbles */
    .bubble {
      position: absolute;
      background: var(--bubble-bg);
      color: var(--dark);
      font-size: 10px; font-weight: 800;
      letter-spacing: 1.8px; text-transform: uppercase;
      padding: 10px 16px; border-radius: 22px;
      white-space: nowrap;
      opacity: 0;
      transform: scale(.35) translateY(12px);
      transition: opacity .45s cubic-bezier(.34,1.56,.64,1),
                  transform .45s cubic-bezier(.34,1.56,.64,1);
    }
    .bubble.pop { opacity: 1; transform: scale(1) translateY(0); }
    .b1 { top: -20px;    right: -92px;  transition-delay: .05s; }
    .b2 { top:  52px;    left: -115px;  transition-delay: .28s; }
    .b3 { top:  155px;   right: -108px; transition-delay: .52s; }
    .b4 { bottom: 112px; left: -98px;   transition-delay: .76s; }
    .b5 { bottom:  52px; right: -72px;  transition-delay: 1.0s; }

    /* Online text */
    .online-text h2 {
      font-size: 36px; font-weight: 900;
      color: #fff; text-transform: uppercase; line-height: 1.15;
    }
    .online-text h2 em { font-style: normal; font-weight: 300; }
    .online-text p {
      margin-top: 22px; font-size: 15.5px;
      color: rgba(255,255,255,.82); line-height: 1.78;
    }
    .btn {
      display: inline-block; margin-top: 36px;
      background: #fff; color: var(--blue);
      font-size: 12px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 16px 32px; border-radius: 6px;
      text-decoration: none;
      transition: transform .22s, box-shadow .22s;
    }
    .btn:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.24); }

    /* ═══════════════════════════════
       DIENSTEN
    ═══════════════════════════════ */
    #diensten { background: var(--beige); padding: 130px 64px; }

    .section-eyebrow {
      font-size: 11px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--blue); margin-bottom: 14px;
    }
    .section-heading {
      font-size: 50px; font-weight: 900;
      text-transform: uppercase; line-height: 1.05; color: var(--dark);
    }
    .section-heading .script-accent {
      font-family: 'Glypher', cursive; font-size: 60px; color: var(--blue);
    }

    .cards-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 22px; margin-top: 56px;
    }
    .card {
      background: #fff; border-radius: 18px; padding: 36px 30px;
      opacity: 0; transform: translateY(44px);
      transition: opacity .6s ease, transform .6s ease, box-shadow .25s ease;
    }
    .card.show { opacity: 1; transform: translateY(0); }
    .card:hover { box-shadow: 0 22px 56px rgba(60,88,164,.13); transform: translateY(-6px); }
    .card-icon {
      width: 50px; height: 50px; background: var(--blue);
      border-radius: 14px; display: flex; align-items: center;
      justify-content: center; font-size: 22px; margin-bottom: 18px;
    }
    .card h3 { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
    .card p { font-size: 14px; color: #666; line-height: 1.7; }
    .card .price { margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--blue); }

    /* ═══════════════════════════════
       OVER CREAJT
    ═══════════════════════════════ */
    #over {
      background: var(--navy); padding: 130px 64px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .over-text .section-eyebrow { color: var(--kraft); }
    .over-text :is(h1, h2) {
      font-size: 44px; font-weight: 900;
      color: #fff; text-transform: uppercase; line-height: 1.1;
    }
    .over-text :is(h1, h2) .script-accent { font-family: 'Glypher', cursive; font-size: 54px; color: var(--kraft); }
    .over-text > p { margin-top: 22px; font-size: 15.5px; color: rgba(255,255,255,.75); line-height: 1.8; }
    .waarden { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
    .waarden li {
      display: flex; align-items: center; gap: 12px;
      font-size: 14px; font-weight: 600; color: rgba(255,255,255,.85);
    }
    .waarden li::before {
      content: ''; flex-shrink: 0;
      width: 22px; height: 22px; border-radius: 50%; background: var(--blue);
    }
    .over-photo {
      border-radius: 18px; aspect-ratio: 3/4;
      background: linear-gradient(145deg, #4A68BA, #2A3050);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.35); font-size: 14px; font-weight: 600;
    }

    /* ═══════════════════════════════
       PROJECTEN
    ═══════════════════════════════ */
    #projecten { background: var(--beige); padding: 130px 64px; }
    .projects-grid {
      display: grid; grid-template-columns: repeat(2,1fr);
      gap: 22px; margin-top: 56px;
    }
    .project-card {
      background: #fff; border-radius: 18px; overflow: hidden;
      opacity: 0; transform: translateY(44px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .project-card.show { opacity: 1; transform: translateY(0); }
    .project-card:hover { box-shadow: 0 20px 50px rgba(60,88,164,.12); }
    .project-thumb {
      height: 240px;
      background: linear-gradient(135deg, var(--blue), var(--navy));
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.3); font-size: 14px; font-weight: 600;
    }
    .project-body { padding: 26px 30px 30px; }
    .project-tag {
      display: inline-block; background: var(--beige); color: var(--blue);
      font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
      padding: 5px 11px; border-radius: 4px; margin-bottom: 10px;
    }
    .project-body h3 { font-size: 21px; font-weight: 800; }
    .project-body p { margin-top: 8px; font-size: 14px; color: #666; line-height: 1.65; }

    /* ═══════════════════════════════
       CONTACT
    ═══════════════════════════════ */
    #contact { background: var(--blue); padding: 130px 64px; text-align: center; }
    #contact .section-eyebrow { color: rgba(255,255,255,.55); }
    #contact :is(h1, h2) { font-size: 54px; font-weight: 900; color: #fff; text-transform: uppercase; line-height: 1.05; }
    #contact :is(h1, h2) .script-accent { font-family: 'Glypher', cursive; font-size: 66px; color: rgba(255,255,255,.65); }
    .contact-form {
      max-width: 540px; margin: 56px auto 0;
      display: flex; flex-direction: column; gap: 14px; text-align: left;
    }
    .contact-form input, .contact-form textarea {
      background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.22);
      border-radius: 8px; padding: 15px 18px; color: #fff;
      font-size: 15px; font-family: 'Roboto', sans-serif; outline: none;
      transition: border-color .2s;
    }
    .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
    .contact-form input:focus, .contact-form textarea:focus { border-color: rgba(255,255,255,.65); }
    .contact-form textarea { height: 130px; resize: none; }
    .btn-submit {
      align-self: flex-start; background: #fff; color: var(--blue);
      font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
      padding: 17px 36px; border: none; border-radius: 8px; cursor: pointer;
      font-family: 'Roboto', sans-serif;
      transition: transform .22s, box-shadow .22s;
    }
    .btn-submit:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.18); }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    footer {
      background: var(--navy); padding: 36px 64px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-logo {
      height: 30px;
      /* White logo on dark background */
      filter: brightness(0) invert(1);
      opacity: .85;
    }
    footer p { color: rgba(255,255,255,.38); font-size: 13px; }

    /* ═══════════════════════════════
       GENERIC FADE-UP
    ═══════════════════════════════ */
    .fade-up {
      opacity: 0; transform: translateY(32px) scale(.985);
      transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
      will-change: opacity, transform;
    }
    .fade-up.show { opacity: 1; transform: none; }
  
    /* ═══════════════════════════════
       MULTI-PAGE LAYOUT (footer altijd onderaan)
    ═══════════════════════════════ */
    body { display: flex; flex-direction: column; min-height: 100vh; overflow-x: hidden; }
    main { flex: 1 0 auto; display: flex; flex-direction: column; }
    main > section:last-child { flex: 1 0 auto; }   /* alleen de LAATSTE sectie vult de resthoogte → kleur loopt door tot de footer, hero rekt niet uit */
    footer { flex-shrink: 0; }

    /* ═══════════════════════════════
       HAMBURGER-KNOP (verborgen op desktop)
    ═══════════════════════════════ */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px; height: 40px;
      background: none; border: none; cursor: pointer;
      padding: 0;
    }
    .nav-toggle span {
      display: block; width: 24px; height: 2.5px; margin: 0 auto;
      background: var(--navy); border-radius: 2px;
      transition: transform .3s ease, opacity .3s ease;
    }
    nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
    nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    /* ═══════════════════════════════
       TABLET & MOBIEL  (≤ 900px)
    ═══════════════════════════════ */
    @media (max-width: 900px) {

      /* ── NAV → hamburger-menu ── */
      nav {
        justify-content: space-between;
        gap: 0; padding: 8px 20px;
        flex-wrap: wrap;
      }
      .nav-toggle { display: flex; order: 1; }
      .logo-link { order: 0; }
      .nav-group {
        order: 2; width: 100%;
        flex-direction: column; align-items: center; gap: 0;
        max-height: 0; overflow: hidden;
        transition: max-height .35s ease;
      }
      nav.open .nav-group { max-height: 60vh; }
      .nav-group a { display: block; text-align: center; padding: 13px 0; font-size: 13px; }
      .nav-group a::after { display: none; }

      /* ── HERO ── */
      #home { grid-template-columns: 1fr; min-height: auto; padding: 78px 24px 0; align-items: start; overflow-x: clip; }
      .phone-wrap { display: block; left: calc(100vw - 108px); right: auto; top: 44px; width: 96px; animation: phoneSwing 4s ease-in-out 1s infinite; }   /* telefoon hangt rechts aan de schermrand */
      .hero-left { padding: 0; position: relative; z-index: 2; }
      .greeting-wrap { display: block; min-height: 52px; margin-bottom: 2px; }   /* 'Hee jij!' blijft, net als op desktop */
      #hwSvg { display: block; width: 148px; }
      .hero-sub { min-height: 0; font-size: 16px; max-width: 88%; }
      .hero-right { margin: 30px -24px 0; justify-content: center; overflow: visible; }   /* mappen vol de breedte, sluiten aan op blauw */
      .mappen-wrap { width: 100%; margin-right: 0; filter: drop-shadow(0 -6px 16px rgba(30,39,68,.18)); }

      /* ── ONLINE AANWEZIGHEID ── */
      #online { grid-template-columns: 1fr; gap: 30px; padding: 60px 24px; min-height: auto; align-items: start; align-content: start; overflow-x: clip; }
      .insta-photo { height: 230px; }
      .online-text { text-align: center; }
      .online-text h2 { font-size: 26px; }
      .online-text p { font-size: 15px; }
      .online-text .btn { margin-top: 26px; }

      /* ── DIENSTEN ── */
      #diensten { padding: 84px 24px 64px; }
      .cards-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 34px; }
      .section-eyebrow { text-align: center; }
      .section-heading { font-size: 31px; }
      .section-heading .script-accent { font-size: 37px; }

      /* ── OVER CREAJT ── */
      #over { grid-template-columns: 1fr; gap: 32px; padding: 84px 24px 64px; align-items: start; align-content: start; }
      .over-text :is(h1, h2) { font-size: 28px; }
      .over-text :is(h1, h2) .script-accent { font-size: 34px; }
      .over-photo { aspect-ratio: 4 / 3; }

      /* ── PROJECTEN ── */
      #projecten { padding: 84px 24px 64px; }
      .projects-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 34px; }

      /* ── CONTACT ── */
      #contact { padding: 84px 24px 64px; }
      #contact :is(h1, h2) { font-size: 31px; }
      #contact :is(h1, h2) .script-accent { font-size: 39px; }
      .contact-form { max-width: 100%; margin-top: 34px; }

      /* ── FOOTER ── */
      footer { flex-direction: column; gap: 10px; text-align: center; padding: 28px 24px; }
    }

    /* ═══════════════════════════════
       KLEINE TELEFOONS  (≤ 400px)
    ═══════════════════════════════ */
    @media (max-width: 400px) {
      #hwSvg { width: 160px; }
      .hero-sub { font-size: 15px; }
      .section-heading { font-size: 27px; }
      .section-heading .script-accent { font-size: 33px; }
      .card { padding: 28px 22px; }
    }

    /* ═══════════════════════════════
       DIENSTEN DROPDOWN (menu)
    ═══════════════════════════════ */
    .has-dropdown { position: relative; }
    .dropdown {
      position: absolute;
      top: 100%; left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 230px;
      list-style: none;
      background: var(--beige);
      border-radius: 12px;
      box-shadow: 0 16px 40px rgba(30,39,68,.16);
      padding: 10px;
      display: flex; flex-direction: column;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity .22s ease, transform .22s ease;
      z-index: 1200;
    }
    .dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
    .has-dropdown:hover .dropdown,
    .has-dropdown:focus-within .dropdown {
      opacity: 1; visibility: visible; pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown a {
      display: block; padding: 10px 14px;
      font-size: 11.5px; letter-spacing: 1.5px;
      border-radius: 8px; white-space: nowrap; color: var(--navy);
    }
    .dropdown a::after { display: none; }
    .dropdown a:hover { background: rgba(60,88,164,.10); color: var(--blue); }

    /* ═══════════════════════════════
       DIENSTPAGINA
    ═══════════════════════════════ */
    .dienst-body {
      display: grid; grid-template-columns: 1.1fr .9fr;
      gap: 56px; margin-top: 42px; align-items: start;
    }
    .dienst-intro { font-size: 19px; line-height: 1.7; color: var(--dark); }
    .dienst-sub { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin: 32px 0 16px; }
    .dienst-visual {
      background: linear-gradient(145deg, var(--blue), var(--navy));
      border-radius: 18px; aspect-ratio: 4 / 5;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: rgba(255,255,255,.55); gap: 10px;
    }
    .dienst-visual span { font-size: 46px; }
    .dienst-visual p { font-size: 14px; font-weight: 600; }

    /* Mobiel: dropdown verbergen (Diensten -> overzichtspagina), dienst-body 1 kolom */
    @media (max-width: 900px) {
      .dropdown { display: none; }
      .dienst-body { grid-template-columns: 1fr; gap: 28px; }
      .dienst-visual { aspect-ratio: 5 / 4; }
    }

    .dienst-note { margin-top: 22px; font-size: 15.5px; line-height: 1.7; color: #555; }


    /* ═══════════════════════════════
       DIENSTPAGINA (visueel)
    ═══════════════════════════════ */
    .dienst-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; padding: 140px 64px 96px; background: var(--beige); }
    .dienst-hero .section-heading { font-size: 56px; line-height: 1.04; }
    .dienst-lead { font-size: 22px; line-height: 1.6; color: #2c2c2c; margin: 22px 0 32px; max-width: 470px; }

    .ph { position: relative; z-index: 0; border-radius: 20px; overflow: hidden; background: linear-gradient(150deg,#c6cee6,#aab4d6); display: flex; align-items: center; justify-content: center; text-align: center; padding: 22px; }
    .ph span { position: relative; z-index: 2; font-size: 12.5px; font-weight: 600; letter-spacing: .2px; color: rgba(30,39,68,.6); max-width: 220px; line-height: 1.5; }
    .ph::before { content: ''; position: absolute; inset: 10px; border: 2px dashed rgba(30,39,68,.30); border-radius: 14px; z-index: 1; pointer-events: none; }
    /* echte foto's in een .ph-houder krijgen dezelfde streeplijn-stijl */
    .ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; display: block; }
    .ph > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; display: block; }
    .ph-portrait { aspect-ratio: 4 / 5; }
    .ph-wide { aspect-ratio: 16 / 10; }

    .dienst-steps { background: var(--navy); color: #fff; padding: 110px 64px; }
    .dienst-h2 { font-size: 40px; font-weight: 900; text-transform: uppercase; line-height: 1.1; }
    .dienst-steps .dienst-h2 { color: #fff; }
    .dienst-steps .script-accent { color: var(--kraft); }
    .steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 50px; }
    .step { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 30px 26px; transition: transform .3s ease, background .3s ease; }
    .step:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
    .step-num { font-family: 'Glypher', cursive; font-size: 46px; color: var(--kraft); display: block; line-height: 1; }
    .step h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin: 14px 0 9px; }
    .step p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.72); }

    .dienst-showcase { background: var(--beige); padding: 110px 64px; text-align: center; }
    .dienst-showcase .dienst-h2 { color: var(--dark); }
    .dienst-showcase .script-accent { color: var(--blue); }
    .dienst-showcase-sub { margin-top: 12px; font-size: 16px; color: #666; }
    .showcase-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 46px; }

    .dienst-cta { background: var(--blue); text-align: center; padding: 120px 64px; }
    .dienst-cta h2 { color: #fff; font-size: 46px; font-weight: 900; text-transform: uppercase; line-height: 1.08; margin-bottom: 30px; }
    .dienst-cta .script-accent { color: rgba(255,255,255,.72); }
    .dienst-cta .btn { background: #fff; color: var(--blue); }

    @media (max-width: 900px) {
      .dienst-hero { grid-template-columns: 1fr; gap: 32px; padding: 92px 24px 56px; }
      .dienst-hero .section-heading { font-size: 34px; }
      .dienst-lead { font-size: 18px; max-width: none; margin: 18px 0 26px; }
      .dienst-steps, .dienst-showcase, .dienst-cta { padding: 64px 24px; }
      .steps-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .showcase-grid { grid-template-columns: 1fr; gap: 16px; }
      .dienst-h2 { font-size: 27px; }
      .dienst-cta h2 { font-size: 30px; }
    }


    /* ═══════════════════════════════
       PROJECTEN (wow)
    ═══════════════════════════════ */
    .proj-hero { background: var(--beige); padding: 150px 64px 50px; text-align: center; }
    .proj-hero .section-heading { font-size: 60px; }
    .proj-lead { font-size: 21px; color: #4a4a4a; line-height: 1.6; margin: 20px auto 0; max-width: 620px; }

    .proj-list { background: var(--beige); padding: 50px 64px 110px; display: flex; flex-direction: column; gap: 110px; }
    .proj-item { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
    .proj-item:nth-child(even) .proj-visual { order: 2; }
    .proj-visual { border-radius: 22px; overflow: hidden; }
    .proj-visual .ph { border-radius: 22px; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
    .proj-visual:hover .ph { transform: scale(1.035); }
    .proj-num { font-family: 'Glypher', cursive; font-size: 58px; color: var(--blue); line-height: 1; display: block; }
    .proj-tag { display: inline-block; background: var(--navy); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 6px 13px; border-radius: 5px; margin: 12px 0 16px; }
    .proj-info h2 { font-size: 34px; font-weight: 900; line-height: 1.12; }
    .proj-info p { margin-top: 14px; font-size: 16px; color: #555; line-height: 1.7; }

    .proj-cta { background: var(--navy); text-align: center; padding: 120px 64px; }
    .proj-cta h2 { color: #fff; font-size: 46px; font-weight: 900; text-transform: uppercase; line-height: 1.08; }
    .proj-cta .script-accent { color: var(--kraft); }
    .proj-cta .btn { margin-top: 28px; }

    @media (max-width: 900px) {
      .proj-hero { padding: 96px 24px 30px; }
      .proj-hero .section-heading { font-size: 36px; }
      .proj-lead { font-size: 18px; }
      .proj-list { padding: 36px 24px 70px; gap: 56px; }
      .proj-item { grid-template-columns: 1fr; gap: 22px; }
      .proj-item:nth-child(even) .proj-visual { order: 0; }
      .proj-info h2 { font-size: 26px; }
      .proj-cta { padding: 72px 24px; }
      .proj-cta h2 { font-size: 30px; }
    }


    /* ── Projecten: uitgelicht + raster ── */
    .proj-featured-wrap { background: var(--beige); padding: 24px 64px 56px; }
    .proj-featured { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 8; cursor: pointer; }
    .proj-featured .ph { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
    .proj-featured:hover .ph { transform: scale(1.05); }
    .proj-feat-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; background: linear-gradient(to top, rgba(30,39,68,.9), rgba(30,39,68,.2) 55%, rgba(30,39,68,0)); }
    .proj-flag { font-family: 'Glypher', cursive; font-size: 30px; color: var(--kraft); line-height: 1; margin-bottom: 8px; }
    .proj-feat-overlay h2 { color: #fff; font-size: 42px; font-weight: 900; line-height: 1.08; margin-top: 6px; }
    .proj-feat-overlay p { color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.6; margin-top: 12px; max-width: 540px; }
    .proj-feat-overlay .proj-tag, .proj-card-overlay .proj-tag { background: rgba(255,255,255,.18); margin: 0; }

    .proj-grid-wrap { background: var(--beige); padding: 0 64px 110px; }
    .proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    .proj-card { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 5; cursor: pointer; }
    .proj-card .ph { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
    .proj-card:hover .ph { transform: scale(1.07); }
    .proj-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(to top, rgba(30,39,68,.85), rgba(30,39,68,.08) 60%, rgba(30,39,68,0)); }
    .proj-card-overlay h3 { color: #fff; font-size: 19px; font-weight: 800; line-height: 1.2; margin-top: 8px; transform: translateY(6px); transition: transform .35s ease; }
    .proj-card:hover .proj-card-overlay h3 { transform: translateY(0); }

    @media (max-width: 900px) {
      .proj-featured-wrap { padding: 16px 24px 32px; }
      .proj-featured { aspect-ratio: 4 / 3; }
      .proj-feat-overlay { padding: 26px; }
      .proj-feat-overlay h2 { font-size: 26px; }
      .proj-grid-wrap { padding: 0 24px 70px; }
      .proj-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    }
    @media (max-width: 540px) { .proj-grid { grid-template-columns: 1fr; } }


    /* ── Projecten: galerij (instagram-stijl) + lightbox ── */
    .gallery-wrap { background: var(--beige); padding: 30px 64px 110px; }
    .gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 42px; }
    .gf-btn { background: none; border: 1.5px solid rgba(30,39,68,.22); color: var(--navy); font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 9px 18px; border-radius: 30px; cursor: pointer; transition: all .2s; }
    .gf-btn:hover { border-color: var(--blue); color: var(--blue); }
    .gf-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

    .gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
    .gtile { position: relative; aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; cursor: pointer; }
    .gtile .ph { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
    .gtile:hover .ph { transform: scale(1.08); }
    .gtile-cap { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 16px; background: linear-gradient(to top, rgba(30,39,68,.72), transparent 55%); opacity: 0; transition: opacity .3s; }
    .gtile:hover .gtile-cap { opacity: 1; }
    .gtile-cap .proj-tag { background: rgba(255,255,255,.22); margin: 0; }
    .gtile::after { content: '\2922'; position: absolute; top: 12px; right: 14px; color: #fff; font-size: 19px; opacity: 0; transform: scale(.6); transition: all .3s; text-shadow: 0 2px 8px rgba(0,0,0,.45); }
    .gtile:hover::after { opacity: 1; transform: scale(1); }

    .lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(20,26,46,.93); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s; }
    .lightbox.open { opacity: 1; visibility: visible; }
    .lb-inner { background: var(--beige); border-radius: 18px; max-width: 880px; width: 100%; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; transform: scale(.96); transition: transform .3s; }
    .lightbox.open .lb-inner { transform: scale(1); }
    .lb-img { background: linear-gradient(150deg,#c6cee6,#aab4d6); display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; min-height: 380px; }
    .lb-img span { font-size: 13px; color: rgba(30,39,68,.6); max-width: 240px; line-height: 1.5; }
    .lb-info { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
    .lb-info .proj-tag { background: var(--navy); width: fit-content; margin: 0; }
    .lb-info h3 { font-size: 27px; font-weight: 900; margin: 14px 0 12px; line-height: 1.15; }
    .lb-info p { font-size: 15px; color: #555; line-height: 1.7; }
    .lb-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; }

    @media (max-width: 900px) {
      .gallery-wrap { padding: 20px 24px 70px; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
      .gtile-cap { opacity: 1; }
      .lb-inner { grid-template-columns: 1fr; max-width: 460px; }
      .lb-img { min-height: 240px; }
      .lb-info { padding: 28px; }
    }


    /* ── Galerij: masonry met gemengde formaten ── */
    .gallery-grid { display: block; column-count: 3; column-gap: 14px; }
    .gtile { aspect-ratio: auto; break-inside: avoid; margin: 0 0 14px; display: block; width: 100%; }
    .gt-portrait { aspect-ratio: 4 / 5; }
    .gt-square   { aspect-ratio: 1 / 1; }
    .gt-video    { aspect-ratio: 16 / 9; }
    .gt-video-v  { aspect-ratio: 9 / 16; }
    @media (max-width: 900px) { .gallery-grid { column-count: 2; } }

    /* ═══════════════════════════════
       HOMEPAGE: extra secties
    ═══════════════════════════════ */
    .home-diensten { background: var(--beige); padding: 110px 64px; text-align: center; }
    .home-diensten .cards-grid { margin-top: 50px; }
    .cards-4 { grid-template-columns: repeat(4,1fr); }
    .home-diensten a.card { text-decoration: none; color: inherit; display: block; text-align: left; }

    .home-over { background: var(--navy); color: #fff; display: grid; grid-template-columns: 1.1fr .8fr; gap: 60px; align-items: center; padding: 110px max(64px, calc((100% - 1020px) / 2)); }
    .home-over-text .section-eyebrow { color: var(--kraft); }
    .home-over-text h2 { font-size: 40px; font-weight: 900; text-transform: uppercase; line-height: 1.1; }
    .home-over-text h2 .script-accent { color: var(--kraft); }
    .home-over-text > p { margin: 18px 0 28px; font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.78); max-width: 480px; }
    .home-over .btn { background: #fff; color: var(--blue); }

    .home-reviews { background: var(--beige); padding: 110px 64px; text-align: center; }
    .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
    .review { background: #fff; border-radius: 18px; padding: 32px 30px; text-align: left; }
    .review::before { content: '\201C'; font-family: 'Glypher', cursive; font-size: 54px; color: var(--blue); line-height: .5; display: block; margin-bottom: 4px; }
    .review p { font-size: 16px; line-height: 1.7; color: var(--dark); }
    .review cite { display: block; margin-top: 18px; font-style: normal; font-weight: 800; font-size: 13px; color: var(--blue); }

    .home-cta { background: var(--blue); text-align: center; padding: 120px 64px; }
    .home-cta h2 { color: #fff; font-size: 46px; font-weight: 900; text-transform: uppercase; line-height: 1.08; }
    .home-cta .script-accent { color: rgba(255,255,255,.72); }
    .home-cta > p { color: rgba(255,255,255,.85); font-size: 17px; margin: 16px auto 30px; max-width: 460px; }
    .home-cta .btn { background: #fff; color: var(--blue); }

    @media (max-width: 900px) {
      .home-diensten, .home-reviews, .home-cta { padding: 64px 24px; }
      .cards-4 { grid-template-columns: 1fr; }
      .home-over { grid-template-columns: 1fr; gap: 30px; padding: 64px 24px; overflow-x: clip; }
      .home-over-text h2 { font-size: 28px; }
      .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
      .home-cta h2 { font-size: 30px; }
    }


    /* ── Homepage diensten-preview compacter ── */
    .home-diensten { padding: 90px 64px; }
    .home-diensten .card { padding: 26px 24px; }
    .home-diensten .card-icon { width: 42px; height: 42px; font-size: 18px; border-radius: 12px; margin-bottom: 12px; }
    .home-diensten .card h3 { font-size: 14px; }
    .home-diensten .card p { font-size: 13px; }

    /* ═══════════════════════════════
       FOOTER (compleet)
    ═══════════════════════════════ */
    footer { background: var(--navy); display: block; padding: 64px 64px 28px; }
    .footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; max-width: 1180px; margin: 0 auto; }
    .footer-brand .footer-logo { height: 30px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 16px; display: block; }
    .footer-brand p { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; max-width: 290px; }
    .footer-col h4 { color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col li { color: rgba(255,255,255,.58); font-size: 14px; }
    .footer-col a { color: rgba(255,255,255,.58); font-size: 14px; text-decoration: none; transition: color .2s; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom { max-width: 1180px; margin: 42px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { color: rgba(255,255,255,.4); font-size: 13px; }
    .footer-bottom .jt { color: var(--kraft); }

    @media (max-width: 900px) {
      footer { padding: 48px 24px 26px; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; margin-top: 30px; }
    }
    @media (max-width: 620px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 26px 18px; } .footer-brand { grid-column: 1 / -1; } }


    /* ═══════════════════════════════
       CONTACTPAGINA
    ═══════════════════════════════ */
    .contact-page { background: var(--blue); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding: 150px 64px 120px; align-items: start; }
    .contact-intro .section-eyebrow { color: rgba(255,255,255,.6); }
    .contact-intro h1 { color: #fff; font-size: 52px; font-weight: 900; text-transform: uppercase; line-height: 1.04; }
    .contact-intro h1 .script-accent { color: rgba(255,255,255,.72); }
    .contact-lead { color: rgba(255,255,255,.85); font-size: 18px; line-height: 1.7; margin: 22px 0 38px; max-width: 430px; }
    .contact-details { list-style: none; display: flex; flex-direction: column; gap: 18px; }
    .contact-details li { display: flex; flex-direction: column; gap: 3px; }
    .cd-label { color: rgba(255,255,255,.5); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; }
    .contact-details a, .contact-details li > span:last-child { color: #fff; font-size: 17px; text-decoration: none; width: fit-content; }
    .contact-details a:hover { text-decoration: underline; }
    .contact-form-wrap .contact-form { max-width: none; margin: 0; }

    @media (max-width: 900px) {
      .contact-page { grid-template-columns: 1fr; gap: 40px; padding: 96px 24px 70px; }
      .contact-intro h1 { font-size: 34px; }
      .contact-lead { font-size: 16px; max-width: none; }
    }


    /* ── Footer-logo groter ── */
    .footer-brand .footer-logo { height: 34px; }
    /* ── Diensten-overzicht: hele blok klikbaar ── */
    a.card { text-decoration: none; color: inherit; display: block; }
    .card-link { display: inline-block; margin-top: 16px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .5px; transition: transform .25s ease; }
    #diensten .card:hover .card-link { transform: translateX(5px); }

    /* ── Sterker CTA-blok (homepage) ── */
    .home-cta { padding: 130px 64px; }
    .home-cta .section-eyebrow { color: rgba(255,255,255,.6); font-size: 11px; margin-bottom: 14px; }
    .home-cta h2 { font-size: 58px; }
    .home-cta .cta-lead { color: rgba(255,255,255,.85); font-size: 18px; line-height: 1.65; margin: 18px auto 34px; max-width: 500px; }
    @media (max-width: 900px) { .home-cta h2 { font-size: 32px; } .home-cta .cta-lead { font-size: 16px; } }


    /* ═══════════════════════════════
       OVER MIJ
    ═══════════════════════════════ */
    .over-hero { background: var(--beige); display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; padding: 140px 64px 90px; }
    .over-hero .section-heading { font-size: 54px; }
    .over-lead { font-size: 21px; line-height: 1.6; color: #2c2c2c; margin-top: 22px; max-width: 460px; }

    .over-story { background: var(--navy); color: #fff; padding: 110px 64px; }
    .over-story-inner { max-width: 760px; margin: 0 auto; }
    .over-story h2 { font-size: 38px; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 24px; line-height: 1.1; }
    .over-story h2 .script-accent { color: var(--kraft); }
    .over-story p { font-size: 17px; line-height: 1.85; color: rgba(255,255,255,.8); margin-bottom: 20px; }

    .over-values { background: var(--beige); padding: 110px 64px; text-align: center; }
    .over-values h2 { font-size: 38px; font-weight: 900; text-transform: uppercase; color: var(--dark); line-height: 1.1; }
    .over-values h2 .script-accent { color: var(--blue); }
    .values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 820px; margin: 46px auto 0; text-align: left; }
    .over-values-layout { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; align-items: start; }
    .over-values-layout > h2 { text-align: left; margin: 0; }
    .over-values .values-grid { max-width: none; margin: 0; }
    .value { background: #fff; border-radius: 18px; padding: 30px 30px 30px 28px; border-left: 4px solid var(--blue); position: relative; transition: transform .25s ease, box-shadow .25s ease; }
    .value:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(28,28,28,.09); }
    .value .v-num { font-family: 'Glypher', cursive; font-weight: 400; font-size: 30px; color: var(--kraft); line-height: 1; display: block; margin-bottom: 10px; }
    .value h3 { font-size: 20px; font-weight: 900; margin-bottom: 8px; color: var(--navy); letter-spacing: -.3px; }
    .value p { font-size: 14.5px; line-height: 1.65; color: #555; }

    @media (max-width: 900px) {
      .over-hero { grid-template-columns: 1fr; gap: 32px; padding: 92px 24px 56px; }
      .over-hero .section-heading { font-size: 34px; }
      .over-lead { font-size: 18px; max-width: none; }
      .over-story, .over-values { padding: 64px 24px; }
      .over-story h2, .over-values h2 { font-size: 27px; }
      .over-story p { font-size: 16px; }
      .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .over-values-layout { grid-template-columns: 1fr; gap: 22px; }
    }
    /* waarden blijven 2 naast elkaar op telefoon */


    /* ── Homepage diensten: speelse papier-kaarten ── */
    .dienst-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 56px; }
    .dcard { position: relative; display: block; background: #fff; border-radius: 18px; padding: 34px 26px 28px; text-decoration: none; color: inherit; box-shadow: 0 8px 24px rgba(30,39,68,.06); transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease; overflow: hidden; }
    .dcard::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--blue); }
    .dcard:nth-child(1) { transform: rotate(-1.6deg); }
    .dcard:nth-child(2) { transform: rotate(1.2deg); }
    .dcard:nth-child(3) { transform: rotate(-1deg); }
    .dcard:nth-child(4) { transform: rotate(1.6deg); }
    .dcard:hover { transform: rotate(0) translateY(-8px); box-shadow: 0 26px 50px rgba(30,39,68,.16); }
    .dcard-num { position: absolute; top: 12px; right: 22px; font-family: 'Glypher', cursive; font-size: 52px; color: var(--kraft); line-height: 1; }
    .dcard-icon { font-size: 30px; margin-bottom: 14px; }
    .dcard h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
    .dcard p { font-size: 14px; color: #666; line-height: 1.6; }
    .dcard-arrow { display: inline-block; margin-top: 18px; color: var(--blue); font-weight: 800; font-size: 13px; letter-spacing: .5px; transition: transform .25s ease; }
    .dcard:hover .dcard-arrow { transform: translateX(5px); }

    /* ── Contact: kaartje + formulier-kop ── */
    .contact-map { margin-top: 30px; border-radius: 18px; overflow: hidden; border: 2px solid rgba(255,255,255,.22); position: relative; background: #E7E3DF; }
    .route-map { width: 100%; height: auto; display: block; }
    .rm-label { font-family: 'Roboto', sans-serif; font-size: 15px; font-weight: 700; fill: #1E2744; }
    .rm-city { font-size: 17px; font-weight: 900; }
    .rm-cap { display: block; background: var(--navy); color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: .2px; padding: 10px 14px; text-align: center; }
    @media (prefers-reduced-motion: reduce) { .rm-car { display: none; } }
    .contact-form-heading h2 { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
    .contact-form-heading p { color: rgba(255,255,255,.75); font-size: 14px; margin-bottom: 22px; }

    @media (max-width: 900px) {
      .dienst-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
      .dcard { transform: none !important; }
    }
    @media (max-width: 380px) { .dienst-cards { gap: 12px; } }


    /* ── Over: hero met foto + weetjes-bubbels ── */
    .over-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; background: var(--beige); padding: 150px 64px 100px; text-align: left; }
    .over-hero-intro { max-width: 480px; }
    .over-photo-stage { position: relative; width: 280px; margin: 0 auto; }
    .over-photo-img { aspect-ratio: 4 / 5; }
    .over-photo-stage .bubble { position: absolute; white-space: nowrap; }
    .ob1 { top: -5%;   left: -25px;  transition-delay: .05s; }
    .ob2 { top: 11%;   right: -110px; transition-delay: .15s; }
    .ob3 { top: 42%;   right: -145px; transition-delay: .25s; }
    .ob4 { bottom: 20%; right: -95px; transition-delay: .35s; }
    .ob5 { bottom: -4%; right: 20px;  transition-delay: .45s; }
    .ob6 { top: 38%;   left: -78px;  transition-delay: .55s; }
    .ob7 { bottom: 8%;  left: -45px;  transition-delay: .65s; }

    /* ── Over: tijdlijn ── */
    .over-timeline { background: var(--navy); color: #fff; padding: 110px 64px; }
    .over-timeline .dienst-h2 { color: #fff; text-align: center; margin-bottom: 56px; }
    .over-timeline .script-accent { color: var(--kraft); }
    .timeline { max-width: 680px; margin: 0 auto; position: relative; padding-left: 34px; }
    .timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: rgba(255,255,255,.16); }
    .tl-item { position: relative; padding-bottom: 42px; }
    .tl-item:last-child { padding-bottom: 0; }
    .tl-marker { position: absolute; left: -34px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--kraft); border: 3px solid var(--navy); }
    .tl-year { font-family: 'Glypher', cursive; font-size: 28px; color: var(--kraft); display: block; line-height: 1; margin-bottom: 6px; }
    .tl-content h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
    .tl-content p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.78); }

    @media (max-width: 900px) {
      .over-hero { grid-template-columns: 1fr; text-align: center; padding: 92px 24px 50px; }
      .over-photo-stage { margin-top: 30px; }
      .over-photo-stage { margin: 40px auto 10px; }
      .over-timeline { padding: 64px 24px; }
      .over-timeline .dienst-h2 { font-size: 27px; margin-bottom: 40px; }
    }


    /* Logo inline in een kop (wit) */
    .inline-logo { height: .98em; width: auto; filter: brightness(0) invert(1); vertical-align: -.1em; margin-left: .24em; display: inline-block; }

    /* ── Menu CTA-knop rechtsboven ── */
    .nav-cta { position: absolute; right: 74px; top: 50%; transform: translateY(-50%); background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 11px 20px; border-radius: 30px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
    .nav-cta:hover { transform: translateY(-50%) scale(1.04); box-shadow: 0 10px 22px rgba(60,88,164,.32); }
    /* accountrondje naar het portaal */
    .nav-account { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; border: none; transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease; }
    .nav-account:hover { background: var(--navy); color: #fff; transform: translateY(-50%) scale(1.07); }
    .nav-account svg { width: 20px; height: 20px; }
    .caret { font-size: .65em; vertical-align: 1px; margin-left: 1px; }
    .has-dropdown:hover .caret { color: var(--blue); }

    /* ── Social icons ── */
    .socials { display: flex; gap: 11px; margin-top: 18px; }
    .socials a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); border: 1.5px solid rgba(255,255,255,.22); transition: all .2s ease; }
    .socials a:hover { color: #fff; border-color: #fff; transform: translateY(-2px); }
    .socials svg { width: 18px; height: 18px; }
    .contact-intro .socials a:hover { color: var(--blue); background: #fff; border-color: #fff; }

    .gallery-hint { text-align: center; font-size: 13px; color: #8a8a8a; margin-bottom: 16px; }

    @media (max-width: 1080px) { .nav-cta { display: none; } }
    @media (max-width: 900px) {
      nav.open .nav-cta { display: block; position: static; transform: none; order: 3; width: calc(100% - 48px); max-width: 280px; margin: 4px auto 14px; text-align: center; }
      .nav-account { right: 64px; }
    }

    /* ── Juridische pagina's (prose) ── */
    .legal-page { max-width: 820px; margin: 0 auto; padding: 140px 28px 100px; }
    .legal-page .legal-eyebrow { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 14px; }
    .legal-page h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.05; color: var(--navy); margin: 0 0 10px; font-weight: 900; }
    .legal-updated { font-size: 14px; color: #8a8a8a; margin-bottom: 48px; }
    .legal-page h2 { font-size: 22px; color: var(--navy); font-weight: 800; margin: 44px 0 12px; }
    .legal-page h3 { font-size: 17px; color: var(--navy); font-weight: 700; margin: 26px 0 8px; }
    .legal-page p, .legal-page li { font-size: 16px; line-height: 1.72; color: #33373f; }
    .legal-page ul { padding-left: 20px; margin: 10px 0 18px; }
    .legal-page li { margin-bottom: 7px; }
    .legal-page a { color: var(--blue); text-decoration: underline; }
    .legal-toc { background: #fff; border: 1px solid rgba(60,88,164,.14); border-radius: 16px; padding: 24px 28px; margin: 0 0 44px; box-shadow: 0 8px 24px rgba(28,28,28,.05); }
    .legal-toc h4 { margin: 0 0 12px; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
    .legal-toc ol { margin: 0; padding-left: 20px; }
    .legal-toc li { margin-bottom: 5px; font-size: 15px; }
    .legal-contactcard { background: var(--navy); color: #fff; border-radius: 18px; padding: 28px 32px; margin-top: 50px; }
    .legal-contactcard h3 { color: #fff; margin-top: 0; }
    .legal-contactcard p, .legal-contactcard a { color: #e8eaf2; }
    .legal-contactcard a { color: #fff; }

    /* ── Cookiemelding ── */
    #cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 9999; max-width: 440px; margin-left: auto; background: #fff; border-radius: 20px; box-shadow: 0 18px 50px rgba(28,28,28,.22); padding: 22px 24px; transform: translateY(140%); opacity: 0; transition: transform .5s cubic-bezier(.2,.9,.3,1.2), opacity .4s; border: 1px solid rgba(60,88,164,.12); }
    #cookie-banner.show { transform: translateY(0); opacity: 1; }
    #cookie-banner .ck-emoji { font-size: 30px; display: block; margin-bottom: 8px; }
    #cookie-banner h4 { margin: 0 0 6px; font-size: 17px; color: var(--navy); font-weight: 800; }
    #cookie-banner p { margin: 0 0 16px; font-size: 13.5px; line-height: 1.6; color: #555; }
    #cookie-banner p a { color: var(--blue); text-decoration: underline; }
    #cookie-banner .ck-btns { display: flex; gap: 10px; flex-wrap: wrap; }
    #cookie-banner button { flex: 1 1 auto; cursor: pointer; border: none; border-radius: 30px; padding: 11px 18px; font-size: 14px; font-weight: 700; font-family: inherit; transition: transform .15s, background .2s; }
    #cookie-banner button:hover { transform: translateY(-2px); }
    #cookie-banner .ck-accept { background: var(--blue); color: #fff; }
    #cookie-banner .ck-decline { background: var(--beige); color: var(--navy); }
    @media (max-width: 520px) { #cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; } }

    /* ── Juridische links onderin footer ── */
    .footer-legal { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin: 0; }
    .footer-legal a { color: rgba(255,255,255,.62); font-size: 13px; text-decoration: none; transition: color .2s; }
    .footer-legal a:hover { color: #fff; }
    @media (max-width: 640px) { .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }

    /* ── Logo exact centreren in het menu (gelijke groepsbreedtes) ── */
    @media (min-width: 1081px) {
      nav > .nav-group { flex: 1; }
      nav > .nav-group:first-of-type { justify-content: flex-end; }
      nav > .nav-group:last-of-type { justify-content: flex-start; }
    }

    /* ── Megafoon in de home-CTA (subtiele schreeuw-animatie) ── */
    .home-cta { position: relative; overflow: hidden; }
    .home-cta > h2, .home-cta > p, .home-cta > .btn { position: relative; z-index: 2; }
    .cta-megafoon {
      position: absolute;
      right: clamp(-10px, 3vw, 70px);
      top: 50%;
      width: clamp(230px, 27vw, 400px);
      height: auto;
      transform: translateY(-50%) rotate(-6deg);
      transform-origin: 72% 50%;
      pointer-events: none;
      z-index: 1;
      filter: drop-shadow(0 14px 30px rgba(0,0,0,.18));
      animation: megaShout 3.6s ease-in-out infinite;
    }
    @keyframes megaShout {
      0%, 100% { transform: translateY(-50%) rotate(-6deg)   scale(1);     }
      45%      { transform: translateY(-51.5%) rotate(-2.5deg) scale(1.04); }
      60%      { transform: translateY(-50.5%) rotate(-4.5deg) scale(1.02); }
    }
    @media (prefers-reduced-motion: reduce) { .cta-megafoon { animation: none; } }
    @media (max-width: 980px) {
      .cta-megafoon { width: 320px; right: -50px; opacity: .16; filter: none; animation: none; }
    }

    /* ── Showcase-kaarten op dienstpagina's (klikbaar, met bedrijfsnaam) ── */
    .showcase-card { display: block; width: 100%; text-align: left; border: none; background: none; padding: 0; cursor: pointer; font-family: inherit; }
    .sc-thumb { aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden; position: relative; }
    .sc-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,28,28,.55), rgba(28,28,28,0) 45%); opacity: 0; transition: opacity .3s; }
    .showcase-card:hover .sc-thumb::after { opacity: 1; }
    .sc-thumb .ph { position: absolute; inset: 0; border-radius: 0; }
    .sc-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
    .sc-client { font-weight: 800; font-size: 16px; color: var(--navy); }
    .sc-cat { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
    .sc-arrow { display: inline-block; margin-left: 6px; color: var(--blue); transition: transform .25s; }
    .showcase-card:hover .sc-arrow { transform: translateX(5px); }

    /* ── Gedeeld project-detail venster (foto's/video's + resultaten) ── */
    .pdetail { position: fixed; inset: 0; z-index: 3000; background: rgba(20,26,46,.94); display: flex; align-items: flex-start; justify-content: center; padding: 40px 20px; overflow-y: auto; opacity: 0; visibility: hidden; transition: opacity .3s; }
    .pdetail.open { opacity: 1; visibility: visible; }
    .pd-card { background: var(--beige); border-radius: 24px; max-width: 1040px; width: 100%; margin: auto; overflow: hidden; transform: translateY(24px); transition: transform .35s cubic-bezier(.2,.8,.3,1.1); }
    .pdetail.open .pd-card { transform: translateY(0); }
    .pd-head { padding: 34px 40px 22px; }
    .pd-cat { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
    .pd-title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; color: var(--navy); line-height: 1.05; margin: 8px 0 4px; letter-spacing: -.5px; }
    .pd-client { font-size: 15px; color: #666; }
    .pd-client strong { color: var(--navy); }
    .pd-desc { padding: 0 40px; font-size: 16px; line-height: 1.7; color: #3a3f49; max-width: 70ch; }
    .pd-media { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 26px 40px 8px; }
    .pd-media .ph { aspect-ratio: 4 / 5; }
    .pd-media .ph.pd-video { aspect-ratio: 16 / 9; grid-column: span 2; }
    .pd-results { padding: 22px 40px 40px; }
    .pd-results h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
    .pd-results ul { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
    .pd-results li { background: #fff; border-radius: 30px; padding: 9px 18px; font-size: 14px; font-weight: 600; color: var(--navy); box-shadow: 0 4px 14px rgba(28,28,28,.05); }
    .pd-close { position: fixed; top: 22px; right: 26px; z-index: 3001; width: 46px; height: 46px; border-radius: 50%; border: none; background: #fff; color: var(--navy); font-size: 24px; cursor: pointer; line-height: 1; box-shadow: 0 6px 20px rgba(0,0,0,.2); }
    @media (max-width: 640px) {
      .pd-head, .pd-desc, .pd-media, .pd-results { padding-left: 22px; padding-right: 22px; }
      .pd-media { grid-template-columns: 1fr; }
      .pd-media .ph.pd-video { grid-column: span 1; }
    }

    /* ── Subtiele conversie-nudge (linksonder) ── */
    .nudge { position: fixed; left: 20px; bottom: 20px; z-index: 9000; width: 320px; max-width: calc(100vw - 40px); background: #fff; border-radius: 18px; box-shadow: 0 18px 46px rgba(28,28,28,.22); padding: 18px 20px 18px 18px; display: flex; gap: 13px; align-items: flex-start; transform: translateY(160%); opacity: 0; transition: transform .5s cubic-bezier(.2,.9,.3,1.2), opacity .4s; border: 1px solid rgba(60,88,164,.12); }
    .nudge.show { transform: translateY(0); opacity: 1; }
    .nudge-ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; }
    .nudge-body { display: flex; flex-direction: column; gap: 3px; }
    .nudge-body strong { font-size: 14.5px; color: var(--navy); }
    .nudge-body span { font-size: 12.8px; line-height: 1.5; color: #666; }
    .nudge-btn { margin-top: 9px; align-self: flex-start; background: var(--blue); color: #fff; font-size: 12.5px; font-weight: 700; padding: 8px 15px; border-radius: 22px; text-decoration: none; transition: transform .2s; }
    .nudge-btn:hover { transform: translateX(3px); }
    .nudge-x { position: absolute; top: 9px; right: 11px; background: none; border: none; color: #aaa; font-size: 19px; line-height: 1; cursor: pointer; padding: 2px; }
    .nudge-x:hover { color: var(--navy); }
    @media (max-width: 520px) { .nudge { left: 12px; right: 12px; bottom: 12px; width: auto; } }

    /* ── Echte foto's in de visual-blokken (zelfde vorm als placeholders) ── */
    .over-foto { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 20px; display: block; box-shadow: 0 18px 44px rgba(28,28,28,.16); }

    /* ════════════════════════════════════════
       MOBIELE VORMGEVING (echt ontworpen, niet alleen gestapeld)
    ════════════════════════════════════════ */
    @media (max-width: 900px) {
      /* INSTA-mockup: bubbels als chip-rij onder het beeld */
      .insta-wrap { position: static; display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 7px; width: 100%; max-width: 270px; margin: 0 auto; }
      .insta-wrap > .insta-frame { flex: 0 0 100%; margin-bottom: 8px; }
      .insta-wrap .bubble { position: static !important; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; font-size: 10px; padding: 7px 11px; letter-spacing: .6px; max-width: 100%; }

      /* Foto-berichtjes (over + homepage) blijven ROND de foto, kleiner */
      .over-photo-stage { width: min(290px, 78vw); }
      .over-photo-stage .bubble { font-size: 10px; padding: 7px 10px; }
      .over-photo-stage .ob1 { top: -12px; left: -6px; }
      .over-photo-stage .ob2 { top: 8%;  right: -6px; left: auto; }
      .over-photo-stage .ob3 { display: none; }
      .over-photo-stage .ob4 { top: 47%; right: -6px; bottom: auto; }
      .over-photo-stage .ob5 { bottom: 4%; right: auto; left: 26%; }
      .over-photo-stage .ob6 { display: none; }
      .over-photo-stage .ob7 { bottom: 20%; left: -6px; }
      .over-photo-stage .hb1 { top: -10px; left: 4%; right: auto; }
      .over-photo-stage .hb2 { top: 15%; right: 6px; left: auto; }
      .over-photo-stage .hb3 { bottom: 32%; left: 4px; right: auto; }
      .over-photo-stage .hb4 { bottom: -10px; left: 22%; right: auto; }

      /* Diensten als 2x2 i.p.v. lange kolom */
      .dienst-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
      .dcard { padding: 22px 15px 18px; border-radius: 15px; }
      .dcard-num { font-size: 36px; top: 9px; right: 13px; }
      .dcard-icon { font-size: 23px; margin-bottom: 9px; }
      .dcard h3 { font-size: 14px; line-height: 1.25; margin-bottom: 6px; }
      .dcard p { font-size: 12px; line-height: 1.5; }
      .dcard-arrow { margin-top: 12px; font-size: 11.5px; }

      /* Showcase-kaarten dienstpagina's: 2 naast elkaar i.p.v. gestapeld */
      .showcase-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .sc-client { font-size: 14px; }

      /* Iets rustiger ritme + tightere koppen */
      .home-diensten, #online, .home-over, .home-cta, .over-values, .dienst-showcase, .dienst-steps { padding-top: 58px; padding-bottom: 58px; }
      .section-heading { font-size: 28px; }
    }

    /* Heel kleine telefoons: showcase + diensten weer 1 kolom als het te krap wordt */


    /* ── FAQ (accordeon) ── */
    .home-faq { background: var(--beige); padding: 110px 64px; text-align: center; }
    .faq-list { max-width: 760px; margin: 46px auto 0; text-align: left; }
    .faq-layout { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr .8fr; gap: 52px; align-items: start; }
    .faq-main .section-heading { text-align: left; }
    .faq-main .faq-list { max-width: none; margin: 34px 0 0; }
    .faq-photo .ph { aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden; }
    .faq-item { background: #fff; border-radius: 16px; margin-bottom: 14px; box-shadow: 0 6px 20px rgba(28,28,28,.05); overflow: hidden; border: 1px solid rgba(60,88,164,.08); }
    .faq-item summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 16.5px; font-weight: 700; color: var(--navy); transition: color .2s; }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary:hover { color: var(--blue); }
    .faq-ic { flex: 0 0 auto; position: relative; width: 18px; height: 18px; }
    .faq-ic::before, .faq-ic::after { content: ''; position: absolute; background: var(--blue); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
    .faq-ic::before { left: 0; top: 8px; width: 18px; height: 2.5px; }
    .faq-ic::after { left: 8px; top: 0; width: 2.5px; height: 18px; }
    .faq-item[open] .faq-ic::after { transform: rotate(90deg); opacity: 0; }
    .faq-a { padding: 0 26px 24px; }
    .faq-a p { font-size: 15px; line-height: 1.7; color: #4a4f59; margin: 0; }
    .faq-item[open] summary { color: var(--blue); }
    @media (max-width: 900px) {
      .home-faq { padding: 58px 22px; }
      .faq-layout { grid-template-columns: 1fr; gap: 26px; }
      .faq-photo { max-width: 300px; }
      .faq-item summary { font-size: 15px; padding: 18px 20px; }
      .faq-a { padding: 0 20px 20px; }
    }

    /* ════════════════════════════════════════
       DIENSTEN-OVERZICHT (redactionele rijen, niet generiek)
    ════════════════════════════════════════ */
    .diensten-page { background: var(--beige); padding: 150px 64px 110px; }
    .diensten-intro { max-width: 780px; margin: 0 auto 64px; text-align: center; }
    .diensten-intro h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 900; color: var(--navy); line-height: 1.04; letter-spacing: -1px; }
    .diensten-intro h1 .script-accent { color: var(--blue); }
    .diensten-intro p { margin-top: 18px; font-size: 18px; line-height: 1.7; color: #5b606b; }
    .dienst-rows { max-width: 1060px; margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
    .drow { display: grid; grid-template-columns: .92fr 1.08fr; gap: 44px; align-items: center; background: #fff; border-radius: 24px; padding: 28px; text-decoration: none; color: inherit; box-shadow: 0 10px 30px rgba(30,39,68,.06); transition: transform .3s ease, box-shadow .3s ease; }
    .drow:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(30,39,68,.14); }
    .drow:nth-child(even) .drow-visual { order: 2; }
    .drow-visual { position: relative; }
    .drow-visual .ph { aspect-ratio: 4 / 3; border-radius: 16px; }
    .drow-num { position: absolute; top: -12px; left: -8px; z-index: 2; font-family: 'Glypher', cursive; font-weight: 400; font-size: 66px; color: var(--kraft); line-height: 1; text-shadow: 0 2px 0 rgba(255,255,255,.7); }
    .drow-text h2, .drow-text h3 { font-size: 27px; font-weight: 900; color: var(--navy); letter-spacing: -.4px; }
    .drow-text > p { margin: 10px 0 16px; font-size: 15.5px; line-height: 1.65; color: #555; }
    .drow-points { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-wrap: wrap; gap: 8px; }
    .drow-points li { background: var(--beige); color: var(--navy); font-size: 12.5px; font-weight: 600; padding: 7px 13px; border-radius: 20px; }
    .drow-link { color: var(--blue); font-weight: 800; font-size: 14px; letter-spacing: .3px; display: inline-block; transition: transform .25s ease; }
    .drow:hover .drow-link { transform: translateX(5px); }
    .diensten-cta { text-align: center; max-width: 600px; margin: 72px auto 0; }
    .diensten-cta h2 { font-size: 28px; font-weight: 900; color: var(--navy); }
    .diensten-cta p { margin: 12px 0 24px; font-size: 16px; color: #5b606b; }

    @media (max-width: 760px) {
      .diensten-page { padding: 96px 22px 64px; }
      .diensten-intro { margin-bottom: 40px; }
      .dienst-rows { gap: 16px; }
      .drow { grid-template-columns: 128px 1fr; gap: 16px; padding: 16px; border-radius: 18px; align-items: start; }
      .drow:nth-child(even) .drow-visual { order: 0; }
      .drow-visual .ph { aspect-ratio: 3 / 4; }
      .drow-num { font-size: 38px; top: -6px; left: -4px; }
      .drow-text h2, .drow-text h3 { font-size: 18px; }
      .drow-text > p { font-size: 13px; margin: 6px 0 10px; line-height: 1.5; }
      .drow-points { gap: 6px; margin-bottom: 12px; }
      .drow-points li { font-size: 11px; padding: 5px 10px; }
      .drow-link { font-size: 12.5px; }
    }
    @media (max-width: 420px) {
      .drow { grid-template-columns: 100px 1fr; }
      .drow-points { display: none; }
    }


    /* ── Over-weetjes als berichtjes (chat-bubbels bij de foto) ── */
    .over-photo-stage .bubble {
      background: #fff;
      color: var(--navy);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: none;
      padding: 11px 15px;
      border-radius: 16px 16px 16px 5px;
      box-shadow: 0 10px 26px rgba(30,39,68,.16);
    }
    .over-photo-stage .bubble::before {
      content: '';
      display: inline-block;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--blue);
      margin-right: 7px;
      vertical-align: 1px;
    }
    /* bubbels rechts van de foto: tail rechtsonder */
    .over-photo-stage .ob2, .over-photo-stage .ob4, .over-photo-stage .ob5 {
      border-radius: 16px 16px 5px 16px;
    }


    /* ── Homepage 'Hoi ik ben Jens' berichtjes ── */
    .hb1 { top: -12px;   left: 4%;     transition-delay: .05s; }
    .hb2 { top: 30%;     right: -118px; transition-delay: .18s; }
    .hb3 { bottom: 34%;  left: -110px;  transition-delay: .30s; }
    .hb4 { bottom: -12px; left: 28%;   transition-delay: .42s; }
    .over-photo-stage .hb2 { border-radius: 16px 16px 5px 16px; }

    /* ── Contactformulier: 2 velden naast elkaar ── */
    .form-row { display: flex; gap: 14px; }
    .form-row > * { flex: 1; }
    @media (max-width: 600px) { .form-row { flex-direction: column; gap: 0; } }

    /* ════════════════════════════════════════
       GRATIS WEGGEVER (lead magnet)
    ════════════════════════════════════════ */
    .weggever { background: var(--beige); padding: 90px 64px; }
    .weggever-inner { max-width: 1020px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
    .weggever-text .section-eyebrow { color: var(--navy); opacity: .7; }
    .weggever-text h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: var(--navy); line-height: 1.05; letter-spacing: -.5px; }
    .weggever-text h2 .script-accent { color: var(--blue); }
    .weggever-text > p { margin: 14px 0 22px; font-size: 16.5px; line-height: 1.65; color: #44423c; max-width: 44ch; }
    .weggever-form { display: flex; gap: 10px; flex-wrap: wrap; }
    .weggever-form input { flex: 1 1 200px; border: none; border-radius: 30px; padding: 14px 20px; font-size: 15px; font-family: inherit; background: #fff; color: var(--navy); }
    .weggever-form input::placeholder { color: #9a958c; }
    .weggever-form .btn { background: var(--navy); color: #fff; flex: 0 0 auto; }
    .weggever-form .btn:hover { background: var(--blue); }
    .weggever-mini { display: block; margin-top: 12px; font-size: 12.5px; color: #5c594f; }
    .weggever-visual { display: flex; justify-content: center; }
    .checklist-mock { background: #fff; border-radius: 16px; padding: 26px 26px 20px; width: 100%; max-width: 300px; box-shadow: 0 24px 50px rgba(28,28,28,.22); transform: rotate(2.4deg); }
    .checklist-mock .cm-title { display: block; font-weight: 900; color: var(--navy); font-size: 17px; margin-bottom: 16px; }
    .checklist-mock ul { list-style: none; padding: 0; margin: 0; }
    .checklist-mock li { position: relative; padding-left: 28px; font-size: 13.5px; color: #3a3f49; line-height: 1.4; margin-bottom: 12px; }
    .checklist-mock li::before { content: '✓'; position: absolute; left: 0; top: -1px; width: 18px; height: 18px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 11px; display: flex; align-items: center; justify-content: center; }
    .checklist-mock .cm-foot { display: block; margin-top: 6px; font-size: 12px; font-weight: 700; color: var(--kraft); }
    @media (max-width: 820px) {
      .weggever { padding: 60px 24px; }
      .weggever-inner { grid-template-columns: 1fr; gap: 34px; }
      .weggever-visual { order: -1; }
      .checklist-mock { transform: rotate(0); max-width: 280px; }
    }

    /* ════════════════════════════════════════
       KERNGETALLEN-BALK
    ════════════════════════════════════════ */
    .stats { background: var(--navy); padding: 46px 64px; }
    .stats-inner { max-width: 1020px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .stat { text-align: center; }
    .stat-num { display: block; font-size: 40px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -1px; }
    .stat-label { display: block; margin-top: 10px; font-size: 13px; color: var(--kraft); line-height: 1.4; }
    @media (max-width: 700px) { .stats { padding: 36px 24px; } .stats-inner { grid-template-columns: 1fr 1fr; gap: 26px 16px; } .stat-num { font-size: 32px; } }

    /* ════════════════════════════════════════
       REVIEWS
    ════════════════════════════════════════ */
    .reviews { background: #fff; padding: 100px 64px; text-align: center; }
    .reviews-grid { max-width: 1080px; margin: 46px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left; }
    .review { margin: 0; background: var(--beige); border-radius: 20px; padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; }
    .review .stars { color: #e8b84b; font-size: 15px; letter-spacing: 2px; }
    .review blockquote { margin: 0; font-size: 15.5px; line-height: 1.6; color: #33373f; flex: 1; }
    .review figcaption { display: flex; align-items: center; gap: 12px; }
    .rv-avatar { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; }
    .review figcaption b { display: block; color: var(--navy); font-size: 14.5px; }
    .review figcaption i { font-style: normal; color: #888; font-size: 13px; }
    @media (max-width: 880px) { .reviews { padding: 60px 24px; } .reviews-grid { grid-template-columns: 1fr; gap: 16px; max-width: 440px; } }

    /* ── Diensten-preview op homepage (compact & als geheel) ── */
    .dpreview { max-width: 760px; margin: 44px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .dp-card { position: relative; display: block; text-decoration: none; color: inherit; background: #fff; border-radius: 16px; padding: 24px 26px 22px; box-shadow: 0 6px 20px rgba(30,39,68,.05); transition: transform .25s ease, box-shadow .25s ease; }
    .dp-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(30,39,68,.12); }
    .dp-num { font-family: 'Glypher', cursive; font-weight: 400; font-size: 28px; color: var(--kraft); line-height: 1; display: block; margin-bottom: 8px; }
    .dp-card h3 { font-size: 16.5px; font-weight: 800; color: var(--navy); margin: 0 0 5px; }
    .dp-card p { font-size: 13px; color: #666; line-height: 1.5; margin: 0; max-width: 92%; }
    .dp-arrow { position: absolute; top: 22px; right: 24px; color: var(--blue); font-weight: 800; font-size: 15px; transition: transform .25s ease; }
    .dp-card:hover .dp-arrow { transform: translateX(4px); }
    .dpreview-all { text-align: center; margin: 24px 0 0; }
    .dpreview-all a { color: var(--blue); font-weight: 800; font-size: 14px; text-decoration: none; }
    .dpreview-all a:hover { text-decoration: underline; }
    @media (max-width: 430px) { .dpreview { grid-template-columns: 1fr; gap: 12px; } }


    /* ════════════════════════════════════════
       MOBIELE 'DESKTOP-VIBE' (meer naast elkaar + tactiel)
    ════════════════════════════════════════ */
    @media (max-width: 760px) {
      /* Dienst-hero: tekst + slank beeld NAAST elkaar i.p.v. torenend beeld */
      .dienst-hero { grid-template-columns: 1.45fr .85fr; gap: 16px; align-items: center; padding: 86px 20px 36px; }
      .dienst-hero .section-eyebrow { font-size: 10px; }
      .dienst-hero .section-heading { font-size: 25px; line-height: 1.07; }
      .dienst-hero .section-heading .script-accent { font-size: 30px; }
      .dienst-lead { font-size: 13px; line-height: 1.5; margin: 10px 0 14px; }
      .dienst-hero .btn { padding: 10px 15px; font-size: 11.5px; }
      .dienst-hero-visual .ph { aspect-ratio: 3 / 4; border-radius: 14px; }
      .dienst-hero-visual .ph span { font-size: 9.5px; padding: 8px; max-width: 130px; }
    }

    /* Tactiele tap-feedback op kaarten (telefoons hebben geen hover) */
    @media (hover: none) {
      .dp-card:active, .value:active, .drow:active, .showcase-card:active,
      .gtile:active, .faq-item:active, .footer-legal a:active {
        transform: translateY(-3px) scale(.99);
        transition: transform .12s ease;
      }
    }

    /* Heel kleine telefoons: dienst-hero toch stapelen met kort bannerbeeld */
    @media (max-width: 360px) {
      .dienst-hero { grid-template-columns: 1fr; gap: 18px; }
      .dienst-hero-visual .ph { aspect-ratio: 16 / 10; }
      .dienst-hero .section-heading { font-size: 28px; }
    }

    /* ════════════════════════════════════════
       ZO WERKT HET (proces)
    ════════════════════════════════════════ */
    .werkwijze { background: #fff; padding: 100px 64px; text-align: center; }
    .werkwijze .section-heading { text-align: left; max-width: 1000px; margin-left: auto; margin-right: auto; }
    .ww-steps { max-width: 1000px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
    .ww-steps::before { content: ''; position: absolute; top: 26px; left: 13%; right: 13%; height: 2px; background: repeating-linear-gradient(90deg, var(--kraft) 0 6px, transparent 6px 13px); z-index: 0; }
    .ww-step { position: relative; z-index: 1; }
    .ww-num { width: 54px; height: 54px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 8px 22px rgba(60,88,164,.28); }
    .ww-step h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
    .ww-step p { font-size: 13.5px; line-height: 1.55; color: #666; max-width: 205px; margin: 0 auto; }
    @media (max-width: 760px) {
      .werkwijze { padding: 58px 24px; }
      .ww-steps { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
      .ww-steps::before { display: none; }
    }

    /* ── Subtiele papierkorrel over de hele site (premium gevoel) ── */
    body::after {
      content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
      opacity: .04; mix-blend-mode: multiply;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }
    @media (prefers-reduced-motion: reduce) { .cta-megafoon { transform: translateY(-50%) rotate(-6deg) !important; } }

    /* Hangtelefoon gespiegeld op mobiel (opening andere kant op) */
    @media (max-width: 900px) {
      .phone-wrap img { transform: scaleX(-1); }
    }

    /* ── Geluid aan/uit-knop op video's ── */
    .vid-sound { position: absolute; bottom: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(20,26,46,.62); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, transform .2s; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
    .vid-sound:hover { background: rgba(20,26,46,.9); transform: scale(1.06); }
    .vid-sound svg { width: 18px; height: 18px; }

    /* ── Echte foto/video groot in het detail-venster ── */
    .pd-realmedia { grid-column: 1 / -1; border-radius: 14px; overflow: hidden; background: #0d1018; display: flex; align-items: center; justify-content: center; }
    .pd-realmedia img, .pd-realmedia video { max-width: 100%; max-height: 70vh; width: auto; height: auto; display: block; }

    /* ── Zwevende WhatsApp-knop ── */
    .wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 8000; width: 58px; height: 58px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 26px rgba(30,39,68,.3); transition: transform .2s ease, background .2s ease; }
    .wa-float:hover { transform: scale(1.08); background: var(--navy); }
    .wa-float svg { width: 30px; height: 30px; fill: #fff; }
    @media (max-width: 520px) { .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; } .wa-float svg { width: 28px; height: 28px; } }

    /* ── "Dit krijg je" op dienstpagina's ── */
    .dienst-deliver { background: #fff; padding: 90px 64px; }
    .deliver-inner { max-width: 760px; margin: 0 auto; text-align: center; }
    .dienst-deliver .dienst-h2 { color: var(--dark); }
    .dienst-deliver .script-accent { color: var(--blue); }
    .deliver-list { list-style: none; padding: 0; margin: 40px auto 0; max-width: 580px; text-align: left; display: grid; gap: 14px; }
    .deliver-list li { position: relative; padding-left: 40px; font-size: 16px; color: #33373f; line-height: 1.5; }
    .deliver-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 25px; height: 25px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
    .deliver-result { margin: 34px auto 0; max-width: 580px; font-size: 17px; line-height: 1.6; color: var(--navy); background: var(--beige); border-radius: 16px; padding: 20px 26px; }
    .deliver-result strong { color: var(--blue); }
    @media (max-width: 760px) { .dienst-deliver { padding: 56px 22px; } .deliver-list li { font-size: 14.5px; padding-left: 36px; } .deliver-result { font-size: 15px; } }

    /* ── Persoonlijk verhaal op de Over-pagina ── */
    .over-verhaal { background: #fff; padding: 90px 64px; }
    .over-verhaal-inner { max-width: 720px; margin: 0 auto; }
    .over-verhaal h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--navy); text-transform: uppercase; line-height: 1.1; text-align: center; }
    .over-verhaal h2 .script-accent { color: var(--blue); }
    .over-verhaal p { font-size: 17px; line-height: 1.85; color: #44474f; margin: 24px 0 0; }
    @media (max-width: 760px) { .over-verhaal { padding: 56px 22px; } .over-verhaal p { font-size: 15px; line-height: 1.7; } }

    /* ── Persoonlijke tekst naast de Over-foto ── */
    .over-text { font-size: 16px; line-height: 1.75; color: #44474f; margin-top: 16px; max-width: 460px; }
    .over-hero-intro strong { color: var(--navy); font-weight: 800; }
    @media (max-width: 900px) { .over-text { max-width: none; font-size: 15px; } }

    /* ── Sfeer-fotostrip ── */
    .sfeer { background: #fff; padding: 84px 64px; text-align: center; }
    .sfeer-grid { max-width: 1040px; margin: 44px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .sfeer-grid .ph { aspect-ratio: 4 / 5; }
    @media (max-width: 760px) { .sfeer { padding: 54px 22px; } .sfeer-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

    /* ── Foto bij contactgegevens ── */
    .contact-photo { margin-top: 30px; max-width: 300px; }
    .contact-photo .ph { aspect-ratio: 4 / 5; border-radius: 18px; }
    /* ── Sfeerbeeld op de Over-pagina ── */
    .over-sfeer { background: #fff; padding: 72px 64px; }
    .over-sfeer-inner { max-width: 1000px; margin: 0 auto; }
    .over-sfeer .ph { aspect-ratio: 16 / 9; border-radius: 20px; }
    @media (max-width: 760px) { .over-sfeer { padding: 44px 22px; } }

    /* ── Contact: klein profielblokje ── */
    .contact-signature { margin-top: 34px; display: flex; align-items: center; gap: 15px; }
    .sig-avatar { width: 74px; height: 74px; border-radius: 50%; flex: 0 0 auto; }
    .sig-avatar::before { display: none; }
    .sig-text strong { display: block; color: #fff; font-size: 16px; }
    .sig-text span { color: rgba(255,255,255,.8); font-size: 13.5px; line-height: 1.45; }

    /* ── Over: foto naast een quote ── */
    .over-intro-photo { background: #fff; padding: 76px 64px; }
    .over-intro-photo-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
    .over-intro-img { aspect-ratio: 4 / 3; border-radius: 20px; }
    .over-intro-photo-text p { font-size: 23px; line-height: 1.5; color: var(--navy); font-weight: 500; margin: 0; }
    .over-intro-photo-text strong { color: var(--blue); }
    @media (max-width: 760px) { .over-intro-photo { padding: 44px 22px; } .over-intro-photo-inner { grid-template-columns: 1fr; gap: 22px; } .over-intro-photo-text p { font-size: 18px; } }

/* ════════════════════════════════════════
   GROTE SCHERMEN · inhoud gecentreerd houden
   (achtergronden blijven full-width, content niet uitrekken)
════════════════════════════════════════ */
@media (min-width: 1500px) {
  .dienst-hero, .over-hero, .contact-page, .diensten-page {
    padding-left: calc((100% - 1340px) / 2);
    padding-right: calc((100% - 1340px) / 2);
  }
  .proj-grid-wrap, .gallery-wrap, .proj-list, .proj-featured-wrap, .proj-hero {
    padding-left: calc((100% - 1300px) / 2);
    padding-right: calc((100% - 1300px) / 2);
  }
}

/* ════════════════════════════════════════
   GROTE SCHERMEN · ALLE secties identiek cappen
   (achtergronden full-width, inhoud max ~1340px gecentreerd)
════════════════════════════════════════ */
@media (min-width: 1460px) {
  .dienst-hero, .over-hero, .contact-page, .diensten-page,
  .proj-grid-wrap, .gallery-wrap, .proj-list, .proj-featured-wrap, .proj-hero,
  .dienst-steps, .dienst-showcase, .dienst-cta, .proj-cta,
  .home-diensten, .home-reviews, .home-cta, .over-story, .over-values,
  .over-timeline, .werkwijze, .stats, .dienst-deliver,
  #diensten, #projecten, #contact {
    padding-left: max(64px, calc((100% - 1340px) / 2)) !important;
    padding-right: max(64px, calc((100% - 1340px) / 2)) !important;
  }
}
