/* nanoweb conceptpreview — witte canvas, kobalt accent, editorial lowercase */

@font-face { font-family: 'Clash Display'; src: url('fonts/clash-display-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Clash Display'; src: url('fonts/clash-display-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Clash Display'; src: url('fonts/clash-display-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --cobalt: #0037ff;
  --cobalt-soft: #6e96ff;
  --cobalt-pale: #e8eeff;
  --paper: #ffffff;
  --paper-dim: #f4f6fb;
  --ink: #0a0a0a;
  --ink-2: #4b4f5c;
  --display: 'Clash Display', 'Inter', sans-serif;
  --body: 'DM Sans', system-ui, sans-serif;
  --accent-serif: 'PT Serif', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
em { font-family: var(--accent-serif); font-style: italic; letter-spacing: -.01em; }
.wrap-x { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ── zwevende pill-nav ── */
.pillnav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  width: min(720px, calc(100vw - 32px));
  padding: 10px 10px 10px 22px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  box-shadow: 0 10px 40px -18px rgba(10, 20, 60, .25);
  transition: background .35s ease, box-shadow .35s ease;
}
.pillnav.on-dark { background: rgba(220, 230, 255, .22); box-shadow: none; }
.pillnav.on-dark .pill-brand, .pillnav.on-dark .pill-link { color: #fff; }
.pill-brand { font-family: var(--display); font-weight: 600; font-size: 21px; color: var(--cobalt); }
.pill-brand span { color: var(--cobalt); }
.pillnav.on-dark .pill-brand span { color: #cdd9ff; }
.pill-actions { display: flex; align-items: center; gap: 14px; }
.pill-link { font-family: var(--display); font-weight: 500; font-size: 15px; color: var(--ink-2); }
.pill-cta {
  font-family: var(--display); font-weight: 500; font-size: 15px;
  background: var(--cobalt); color: #fff;
  padding: 9px 18px; border-radius: 9px;
  transition: transform .2s ease, background .2s ease;
}
.pill-cta:hover { background: #002ed4; transform: translateY(-1px); }
.pill-plus {
  width: 34px; height: 34px; border: 0; background: transparent;
  font-size: 22px; font-weight: 300; color: var(--ink-2); cursor: pointer;
}
.pillnav.on-dark .pill-plus { color: #fff; }
.pill-plus { transition: transform .25s ease; }
.pill-plus.open { transform: rotate(45deg); }

/* ── overlay-menu ── */
.overlay-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--cobalt);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.overlay-menu.open { opacity: 1; visibility: visible; }
.overlay-menu a {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(34px, 5.4vw, 62px); color: #fff; line-height: 1.35;
  transition: color .15s ease;
}
.overlay-menu a:hover { color: #cdd9ff; }

/* ── placeholder-beeldvlakken (tegelmozaïek, eigen invulling) ── */
.tileart { position: absolute; display: grid; gap: 6px; pointer-events: none; }
.tileart::before { content: ""; position: absolute; inset: 0; }
.tileart .t { border-radius: 10px; background: #fff; border: 1.5px solid rgba(0, 55, 255, .28); position: relative; overflow: hidden; }
.tileart .t > svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.tileart .t.f1 { background: repeating-linear-gradient(45deg, var(--cobalt-pale) 0 8px, rgba(0, 55, 255, .14) 8px 10px); }
.tileart .t.f2 { background: radial-gradient(circle at 30% 30%, rgba(0, 55, 255, .22) 0 22%, var(--cobalt-pale) 24%); }
.tileart .t.f3 { background: repeating-radial-gradient(circle at 50% 120%, rgba(0, 55, 255, .16) 0 7px, var(--cobalt-pale) 7px 14px); }
.tileart .t.f4 { background: linear-gradient(160deg, rgba(0, 55, 255, .2), var(--cobalt-pale) 60%); }
.tileart-tl { top: -60px; left: -70px; grid-template-columns: repeat(3, 110px); transform: rotate(-8deg); opacity: .9; }
.tileart-tl .t { aspect-ratio: 1; }
.tileart-r { top: 40px; right: -90px; grid-template-columns: repeat(4, 120px); transform: rotate(7deg); }
.tileart-r .t { aspect-ratio: 1; }

/* ── hero ── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: clip; padding: 0 0 9vh; }
.hero-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 0 32px; width: 100%; }
.hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 1.04; letter-spacing: -.015em;
}
.hero h1 b { font-weight: 600; }
.hero h1 em { font-weight: 400; }
.inline-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: clamp(20px, 2vw, 30px);
  color: var(--cobalt); border: 2px solid var(--cobalt); border-radius: 12px;
  padding: 4px 20px 7px; margin-left: 14px;
  vertical-align: middle;
  transition: background .2s ease, color .2s ease;
}
.inline-cta:hover { background: var(--cobalt); color: #fff; }
.hero-sub { margin-top: 34px; font-family: var(--display); font-weight: 400; font-size: clamp(20px, 2.2vw, 30px); }
.glyph-ast { display: inline-block; vertical-align: -.12em; }
.hero-sub .arrow { color: var(--cobalt); margin: 0 8px; }

/* ── trusted ── */
.trusted { padding: 26px 0 54px; text-align: center; overflow: clip; }
.trusted-label { font-family: var(--display); font-size: 14px; color: var(--ink-2); margin-bottom: 18px; }
.trusted-row { display: flex; flex-wrap: nowrap; gap: 54px; justify-content: flex-start; align-items: center; width: max-content; animation: logoloop 11s linear infinite; }
html.no-motion .trusted-row { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
.trusted-row img { height: 46px; width: 168px; object-fit: contain; filter: grayscale(1); opacity: .6; transition: opacity .2s ease, filter .2s ease; }
.trusted-row img:hover { filter: none; opacity: 1; }

/* ── inktvloed ── */
.flood { position: relative; }
.flood-stage { position: relative; min-height: 100vh; overflow: clip; display: flex; align-items: center; }
.flood-ink {
  position: absolute; left: 50%; top: 50%;
  width: 260vmax; height: 260vmax;
  margin: -130vmax 0 0 -130vmax;
  background: var(--cobalt);
  border-radius: 34% 41% 38% 42% / 39% 36% 44% 37%;
  transform: scale(0);
  will-change: transform;
}
.flood-content { position: relative; z-index: 2; width: 100%; max-width: 1240px; margin: 0 auto; padding: 120px 32px; }
.flood-title {
  font-family: var(--display); font-weight: 500; color: #fff;
  font-size: clamp(44px, 6.4vw, 96px); text-align: center; letter-spacing: -.01em;
  margin-bottom: 64px; opacity: 0; transform: translateY(30px);
}
.flood-title em { color: #cdd9ff; }
.flood-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.flood-card {
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 16px; padding: 18px;
  color: #fff; opacity: 0; transform: translateY(40px);
}
.flood-card h3 { font-family: var(--display); font-weight: 500; font-size: 24px; margin: 16px 0 6px; }
.flood-card p { color: #d6e0ff; font-size: 15.5px; }
.flood-card-art { height: 170px; border-radius: 10px; border: 1.5px solid rgba(255, 255, 255, .4); }
.art-a { background: repeating-linear-gradient(-45deg, rgba(255,255,255,.16) 0 10px, transparent 10px 22px); }
.art-b { background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.3) 0 16%, transparent 18%), repeating-radial-gradient(circle at 50% 130%, rgba(255,255,255,.12) 0 9px, transparent 9px 18px); }
.art-c { background: repeating-linear-gradient(0deg, rgba(255,255,255,.14) 0 6px, transparent 6px 20px); }
.flood-out { position: absolute; inset: -2% 0 0; z-index: 3; transform: translateY(-102%); pointer-events: none; will-change: transform; }
.flood-out svg { width: 100%; height: 102%; display: block; }

/* ── diensten ── */
.services { padding: 110px 0 70px; }
.kicker { font-family: var(--display); font-weight: 500; font-size: 15px; color: var(--cobalt); margin-bottom: 26px; }
.service-list { list-style: none; }
.service-list li { border-top: 1.5px solid #e3e6ef; }
.service-list li:last-child { border-bottom: 1.5px solid #e3e6ef; }
.service-list a {
  display: flex; align-items: baseline; gap: 26px;
  padding: 22px 6px; transition: background .2s ease, padding-left .25s ease;
}
.service-list a:hover { background: var(--cobalt-pale); padding-left: 20px; }
.s-name { font-family: var(--display); font-weight: 500; font-size: clamp(26px, 3vw, 42px); }
.s-tags { color: var(--ink-2); font-size: 15px; flex: 1; text-align: right; }
.s-plus { font-family: var(--display); font-size: 26px; color: var(--cobalt); }
.chip-more, .chip-dark, .as-span {
  display: inline-block; margin-top: 30px;
  font-family: var(--display); font-weight: 500; font-size: 15px;
  padding: 10px 20px; border-radius: 10px;
}
.chip-more { border: 1.5px solid var(--ink); }
.chip-more:hover { background: var(--ink); color: #fff; }
.chip-dark { background: var(--ink); color: #fff; }
.chip-dark:hover { background: var(--cobalt); }

/* ── werk ── */
.work { padding: 60px 0 130px; overflow: clip; }
.work-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 54px; }
.giant { font-family: var(--display); font-weight: 500; font-size: clamp(36px, 5vw, 72px); line-height: 1.05; letter-spacing: -.015em; }
/* waaier-carrousel: één dominante kaart in het midden, buren kijken
   gekanteld binnen aan de randen; slepen of swipen wisselt de voorste */
.work-deck {
  position: relative;
  height: calc(min(560px, 78vw) * .625 + 100px);
  margin-top: 14px;
  touch-action: pan-y;
  cursor: grab; user-select: none;
}
.work-deck.dragging { cursor: grabbing; }
.work-card {
  position: absolute; left: 50%; top: 0;
  width: min(560px, 78vw);
  transform: translateX(-50%);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.work-card:not(.active) { cursor: pointer; }
.work-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: top; border-radius: 14px; box-shadow: 0 30px 70px -30px rgba(10, 20, 60, .45); display: block; -webkit-user-drag: none; user-select: none; pointer-events: none; }
.work-card figcaption {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--display); font-weight: 500; font-size: 26px; margin-top: 16px;
  opacity: 0; transition: opacity .3s ease .15s;
}
.work-card.active figcaption { opacity: 1; }
html.no-motion .work-card { transition: none; }

/* ── diensten hover-preview ── */
.svc-preview {
  position: fixed; z-index: 80; width: 300px; aspect-ratio: 16/11;
  border-radius: 12px; overflow: hidden; pointer-events: none;
  opacity: 0; transform: scale(.92) rotate(3deg);
  transition: opacity .22s ease, transform .22s ease;
  box-shadow: 0 30px 70px -25px rgba(10, 20, 60, .5);
}
.svc-preview.show { opacity: 1; transform: scale(1) rotate(3deg); }
.svc-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.plus-fab {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cobalt); color: #fff;
  display: grid; place-items: center; font-size: 24px; font-weight: 300;
  transition: transform .2s ease;
}
.plus-fab:hover { transform: scale(1.12); }

/* ── quotes ── */
.quotes { padding: 40px 0 110px; position: relative; }
.quotes-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.tileart-quote { position: relative; grid-template-columns: repeat(2, 104px); transform: rotate(-6deg); }
.tileart-quote .t { aspect-ratio: 1; }
.quote-rail { display: grid; gap: 26px; margin-top: 44px; }
.quote-rail blockquote {
  font-size: 19px; line-height: 1.6; max-width: 720px;
  padding-left: 22px; border-left: 3px solid var(--cobalt);
}
.quote-rail cite { display: block; margin-top: 8px; font-style: normal; font-size: 15px; color: var(--ink-2); }

/* ── marquee ── */
.marquee { overflow: clip; border-top: 1.5px solid #e3e6ef; border-bottom: 1.5px solid #e3e6ef; padding: 22px 0; }
.marquee-track { display: flex; gap: 54px; white-space: nowrap; width: max-content; animation: mq 26s linear infinite; }
.marquee-track span, .marquee-track em {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(30px, 3.6vw, 54px); color: var(--ink);
}
.marquee-track em { color: var(--cobalt); }
@keyframes mq { to { transform: translateX(-50%); } }

/* ── merkwerk ── */
.covered { position: relative; padding: 140px 0; overflow: clip; }
.tileart-covered { top: 50%; left: -120px; transform: translateY(-50%) rotate(-5deg); grid-template-columns: repeat(3, 130px); }
.tileart-covered .t { aspect-ratio: 1; }
.covered-inner { padding-left: max(32px, 34vw); }
.covered-inner p { max-width: 480px; margin: 26px 0 34px; color: var(--ink-2); font-size: 18px; }
.outline-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 500; font-size: 22px;
  color: var(--cobalt); border: 2px solid var(--cobalt); border-radius: 12px;
  padding: 8px 24px 10px;
  transition: background .2s ease, color .2s ease;
}
.outline-cta:hover { background: var(--cobalt); color: #fff; }

/* ── feedback ── */
.improve { background: var(--paper-dim); padding: 90px 0; }
.improve h2 { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3.4vw, 46px); }
.improve p { color: var(--ink-2); margin-top: 12px; max-width: 560px; }

/* ── blogkaart ── */
.blogcard { padding: 90px 0; }
.blogcard-inner { display: block; }
.blog-meta { display: flex; gap: 28px; font-size: 14.5px; color: var(--ink-2); margin-bottom: 18px; }
.blogcard .giant { max-width: 900px; }
.blogcard-inner:hover .giant em { color: var(--cobalt); }

/* ── footer ── */
.bigfoot { background: var(--cobalt); color: #fff; padding: 130px 0 26px; overflow: clip; }
.bigfoot-top { display: grid; grid-template-columns: 1fr 1fr auto; gap: 48px; align-items: start; }
.bf-brand { font-family: var(--display); font-weight: 600; font-size: 44px; }
.bf-brand span { color: #cdd9ff; }
.bf-label { font-family: var(--display); font-weight: 500; margin-bottom: 10px; color: #cdd9ff; }
.bf-col p { line-height: 1.7; }
.bf-contact { margin-top: 26px; }
.bf-contact a:hover { text-decoration: underline; }
.bf-actions { display: flex; gap: 14px; }
.bf-btn {
  font-family: var(--display); font-weight: 500; font-size: 16px;
  border: 1.5px solid rgba(255, 255, 255, .8); border-radius: 12px;
  padding: 12px 24px; color: #fff;
  transition: background .2s ease, color .2s ease;
}
.bf-btn:hover { background: rgba(255, 255, 255, .14); }
.bf-btn-solid { background: #fff; color: var(--cobalt); }
.bf-btn-solid:hover { background: #e8eeff; color: var(--cobalt); }
.bigfoot-sign {
  font-family: var(--accent-serif); font-style: italic; font-weight: 700;
  font-size: clamp(80px, 15.5vw, 250px); line-height: .9;
  text-align: center; margin-top: 90px; letter-spacing: -.03em;
}
.bigfoot-copy { font-size: 13px; color: #cdd9ff; padding: 30px 32px 0; }

/* ── reduced motion: alles direct zichtbaar, geen animaties ── */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
html.no-motion .flood-title, html.no-motion .flood-card { opacity: 1; transform: none; }
html.no-motion .flood-ink { transform: scale(1); border-radius: 0; }
html.no-motion .flood-stage { min-height: auto; padding: 40px 0; }
html.no-motion .flood-out { display: none; }
html.no-motion .svc-preview { display: none; }

/* ── responsive ── */
@media (max-width: 980px) {
  .pillnav { top: 10px; padding-left: 16px; }
  .pill-link { display: none; }
  .bp { display: none; }
  .pill-cta { white-space: nowrap; font-size: 14px; padding: 8px 14px; }
  .inline-cta { margin: 18px 0 4px; }
  .hero { min-height: 88vh; padding-bottom: 12vh; }
  .tileart-r { right: -160px; top: 10px; grid-template-columns: repeat(3, 90px); }
  .tileart-tl { display: none; }
  /* gepinde sectie is precies één scherm hoog: kaarten swipen horizontaal
     zodat alle drie bereikbaar zijn en niets onder de vouw verdwijnt */
  .flood-content { padding: 96px 24px 36px; }
  .flood-title { margin-bottom: 28px; }
  .flood-cards {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 80%;
    gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin: 0 -24px; padding: 0 24px 8px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .flood-cards::-webkit-scrollbar { display: none; }
  .flood-card { scroll-snap-align: center; }
  .flood-card-art { height: 110px; }
  .quotes-grid { grid-template-columns: 1fr; }
  .tileart-quote { display: none; }
  .work-card figcaption { font-size: 20px; }
  .work-head { flex-direction: column; align-items: start; gap: 18px; }
  .covered-inner { padding-left: 32px; }
  .tileart-covered { opacity: .25; }
  .bigfoot-top { grid-template-columns: 1fr; gap: 34px; }
}

/* ═════ subpagina's ═════ */

.page-main { padding-top: 150px; min-height: 60vh; }
.page-title { font-family: var(--display); font-weight: 500; font-size: clamp(40px, 5.4vw, 76px); letter-spacing: -.015em; line-height: 1.04; }

/* ── filterchips ── */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 26px 0 60px; }
.chip-filter {
  font-family: var(--display); font-weight: 500; font-size: 14.5px;
  border: 1.5px solid #d6dae6; border-radius: 8px; padding: 8px 16px;
  background: transparent; color: var(--ink-2); cursor: pointer;
  transition: all .2s ease;
}
.chip-filter:hover { border-color: var(--ink); color: var(--ink); }
.chip-filter.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ── kaartengrid (werk + artikelen) ── */
.grid-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 28px; }
.grid-card { display: block; }
.grid-card.hide { display: none; }
.grid-card .gc-media { border-radius: 6px; overflow: hidden; aspect-ratio: 21/17; background: var(--cobalt-pale); }
.grid-card .gc-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .5s ease; }
.grid-card:hover .gc-media img { transform: scale(1.04); }
.grid-card .gc-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-top: 16px; }
.grid-card .gc-title { font-family: var(--display); font-weight: 500; font-size: clamp(22px, 2.6vw, 34px); color: #9aa1b5; transition: color .2s ease; }
.grid-card:hover .gc-title { color: var(--ink); }
.gc-tags { display: flex; gap: 8px; flex-shrink: 0; }
.gc-tags span { font-family: var(--display); font-size: 12.5px; color: var(--ink-2); border: 1.5px solid #d6dae6; border-radius: 20px; padding: 4px 12px; white-space: nowrap; }

/* ── over ons ── */
.about-hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: clip; }
.tileart-about { top: -40px; left: -110px; grid-template-columns: repeat(4, 128px); transform: rotate(-7deg); }
.tileart-about .t { aspect-ratio: 1; }
.about-hero-inner { margin-left: auto; padding: 0 32px; max-width: 640px; text-align: right; }
.about-hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(38px, 4.6vw, 66px); line-height: 1.08; letter-spacing: -.015em; }
.about-hero h1 b { font-weight: 600; }
.about-hero .outline-cta { margin-top: 34px; }
.team { padding: 90px 0 110px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.team-ph {
  aspect-ratio: 4/5; border-radius: 6px; display: grid; place-items: center;
  background: linear-gradient(160deg, #eef1f8, #dfe5f2);
  font-family: var(--display); font-weight: 600; font-size: 54px; color: #b9c2d8;
}
.team-name { font-family: var(--display); font-weight: 500; font-size: 24px; margin-top: 16px; line-height: 1.15; }
.team-role { font-family: var(--accent-serif); font-style: italic; font-weight: 700; color: var(--cobalt); margin-top: 4px; }
.process { padding: 40px 0 60px; }
.process-step { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: 70px 0; overflow: clip; }
.process-step:nth-child(even) .ps-art { order: -1; }
.ps-num { font-family: var(--display); font-weight: 500; font-size: clamp(30px, 3.6vw, 52px); letter-spacing: -.015em; }
.ps-kicker { font-family: var(--accent-serif); font-style: italic; font-weight: 700; color: var(--cobalt); margin: 10px 0 14px; }
.process-step p { color: var(--ink-2); max-width: 520px; }
.ps-art { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; transform: rotate(4deg); }
.process-step:nth-child(even) .ps-art { transform: rotate(-4deg); }
.ps-art .t { aspect-ratio: 1; border-radius: 10px; background: var(--cobalt-pale); border: 1.5px solid rgba(0, 55, 255, .28); }

/* ── projectdetail ── */
.proj-hero { margin-top: 20px; border-radius: 8px; overflow: hidden; aspect-ratio: 21/10; }
.proj-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proj-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin: 34px 0 10px; flex-wrap: wrap; }
.proj-body { max-width: 720px; color: var(--ink-2); font-size: 18px; margin-top: 18px; }
.proj-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 60px 0 30px; }
.proj-shots figure { border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; background: var(--cobalt-pale); }
.proj-shots img { width: 100%; height: 100%; object-fit: cover; display: block; }
.next-proj { display: block; text-align: center; padding: 110px 32px 130px; }
.next-proj .np-label { font-family: var(--display); font-size: 15px; color: var(--ink-2); }
.next-proj .np-title { font-family: var(--display); font-weight: 500; font-size: clamp(40px, 6.4vw, 90px); letter-spacing: -.015em; transition: color .2s ease; }
.next-proj:hover .np-title { color: var(--cobalt); }

/* ── contact-overlay ── */
.contact-overlay {
  position: fixed; inset: 0; z-index: 95;
  background: var(--cobalt); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
  overflow-y: auto;
}
.contact-overlay.open { opacity: 1; visibility: visible; }
.co-inner { width: min(620px, calc(100vw - 48px)); padding: 60px 0; }
.co-inner h2 { font-family: var(--display); font-weight: 500; font-size: clamp(38px, 5vw, 64px); }
.co-inner h2 em { color: #cdd9ff; }
.co-sub { color: #d6e0ff; margin: 12px 0 34px; }
.co-form { display: grid; gap: 14px; }
.co-form input, .co-form textarea {
  width: 100%; border: 1.5px solid rgba(255, 255, 255, .45); border-radius: 10px;
  background: rgba(255, 255, 255, .08); color: #fff;
  font-family: var(--body); font-size: 16px; padding: 14px 16px; outline: none;
}
.co-form input::placeholder, .co-form textarea::placeholder { color: #b9c9ff; }
.co-form input:focus, .co-form textarea:focus { border-color: #fff; }
.co-form textarea { min-height: 120px; resize: vertical; }
.co-send {
  font-family: var(--display); font-weight: 500; font-size: 17px;
  background: #fff; color: var(--cobalt); border: 0; border-radius: 10px;
  padding: 14px 26px; cursor: pointer; justify-self: start;
  transition: transform .2s ease;
}
.co-send:hover { transform: translateY(-1px); }
.co-alt { margin-top: 26px; color: #d6e0ff; font-size: 15px; }
.co-alt a { text-decoration: underline; }
.co-close {
  position: absolute; top: 26px; right: 30px;
  width: 44px; height: 44px; border: 0; background: transparent;
  color: #fff; font-size: 34px; font-weight: 300; cursor: pointer;
}

@media (max-width: 980px) {
  .grid-cards { grid-template-columns: 1fr; gap: 38px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero { min-height: 70vh; }
  .about-hero-inner { text-align: left; margin: 0; }
  .tileart-about { opacity: .3; }
  .process-step { grid-template-columns: 1fr; gap: 26px; padding: 44px 0; }
  .process-step:nth-child(even) .ps-art { order: 0; }
  .proj-shots { grid-template-columns: 1fr; }
  .page-main { padding-top: 120px; }
}

/* ═════ pill-menu, splash en paginafade ═════ */

/* pill klapt zelf uit als menu; wordt kobalt als hij open staat */
.pillnav { flex-direction: column; align-items: stretch; gap: 0; padding: 10px; }
.pill-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-left: 12px; }
.pill-menu { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .32s cubic-bezier(.65,0,.35,1), opacity .22s ease; }
.pill-menu a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--display); font-weight: 500; font-size: 19px;
  color: #fff; padding: 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, .4);
}
.pill-menu a span { font-size: 26px; line-height: 1; opacity: 0; transform: translateX(-6px); transition: opacity .18s ease, transform .18s ease; }
.pill-menu a:hover span { opacity: 1; transform: translateX(0); }
.pill-menu a:first-child { margin-top: 12px; }
.pillnav.menu-open { background: var(--cobalt); box-shadow: 0 18px 50px -20px rgba(0, 30, 140, .5); }
.pillnav.menu-open .pill-brand, .pillnav.menu-open .pill-brand span, .pillnav.menu-open .pill-link { color: #fff; }
.pillnav.menu-open .pill-cta { background: #fff; color: var(--cobalt); }
.pillnav.menu-open .pill-plus { color: #fff; }
.pillnav.on-dark.menu-open { background: var(--cobalt); }

/* splash: kort kobalt scherm met kloppend eigen merkteken */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cobalt);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s ease;
}
.splash.done { opacity: 0; pointer-events: none; }
.splash-word {
  font-family: var(--display); font-weight: 600; color: #fff;
  font-size: clamp(36px, 7vw, 60px); letter-spacing: -.02em; line-height: 1;
  min-height: 1em;
}
.splash-dot {
  font-family: var(--display); font-weight: 600; color: #cdd9ff;
  font-size: clamp(36px, 7vw, 60px); line-height: 1;
}
.splash-dot.blink { animation: dotblink .45s ease 2; }
@keyframes dotblink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
html.no-motion .splash { display: none; }

/* pagina-inhoud vloeit binnen na de splash */
body > section, body > main, body > footer { animation: pageFadeIn 1.1s ease both; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
html.no-motion body > section, html.no-motion body > main, html.no-motion body > footer { animation: none; }

.trusted-dup { display: contents; }
html.no-motion .trusted-dup { display: none; }

/* logostrip op mobiel: doorlopende band in plaats van brokkelige wrap */
@media (max-width: 980px) {
  .trusted-row { gap: 36px; }
  .trusted-row img { height: 38px; width: 132px; }
}
@keyframes logoloop { to { transform: translateX(-50%); } }

/* ═════ dienstpagina's in de nieuwe stijl ═════ */
.svc-page .kicker { margin-bottom: 14px; }
.svc-intro { max-width: 640px; font-size: 19px; color: var(--ink-2); margin-top: 22px; }
.svc-cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 30px; }
.svc-cta-row .chip-dark { margin-top: 0; }
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 70px 0 20px; }
.svc-card { border-radius: 12px; background: var(--paper-dim); padding: 20px; }
.svc-card h3 { font-family: var(--display); font-weight: 500; font-size: 23px; margin: 16px 0 6px; }
.svc-card p { color: var(--ink-2); font-size: 15.5px; }
.svc-card-art { height: 150px; border-radius: 8px; background: var(--cobalt-pale); border: 1.5px solid rgba(0, 55, 255, .25); }
.svc-card-art.a1 { background: repeating-linear-gradient(-45deg, var(--cobalt-pale) 0 10px, rgba(0, 55, 255, .12) 10px 22px); }
.svc-card-art.a2 { background: radial-gradient(circle at 50% 40%, rgba(0, 55, 255, .2) 0 16%, var(--cobalt-pale) 18%), repeating-radial-gradient(circle at 50% 130%, rgba(0, 55, 255, .1) 0 9px, var(--cobalt-pale) 9px 18px); }
.svc-card-art.a3 { background: repeating-linear-gradient(0deg, rgba(0, 55, 255, .1) 0 6px, var(--cobalt-pale) 6px 20px); }
.svc-faqs { margin: 90px 0 30px; }
.svc-faqs .giant { margin-bottom: 34px; }
.svc-faq { border-top: 1.5px solid #e3e6ef; }
.svc-faq:last-of-type { border-bottom: 1.5px solid #e3e6ef; }
.svc-faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 500; font-size: clamp(18px, 2.2vw, 24px);
  padding: 20px 40px 20px 4px; position: relative;
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary::after { content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); color: var(--cobalt); font-size: 28px; font-weight: 300; transition: transform .25s ease; }
.svc-faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.svc-faq-a { padding: 0 4px 22px; color: var(--ink-2); max-width: 720px; }
.svc-meer { margin: 60px 0 90px; }
.svc-meer .chip-more { margin: 12px 8px 0 0; }

/* dienstenlijst homepage: plus klapt korte tekst uit */
.service-list .s-row { display: flex; align-items: baseline; gap: 26px; flex: 1; padding: 22px 6px; transition: background .2s ease, padding-left .25s ease; }
.service-list .s-row:hover { background: var(--cobalt-pale); padding-left: 20px; }
.service-list li a { display: block; padding: 0; }
.service-list li a:hover { background: none; padding-left: 0; }
.s-toggle { border: 0; background: none; cursor: pointer; font-family: var(--display); font-size: 26px; color: var(--cobalt); padding: 0 6px; transition: transform .25s ease; }
.s-toggle.open { transform: rotate(45deg); }
.s-panel { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s cubic-bezier(.65,0,.35,1), opacity .2s ease; }
.s-panel-inner { padding: 2px 6px 24px; max-width: 640px; color: var(--ink-2); }
.s-panel-inner a { display: inline-block; margin-top: 10px; font-family: var(--display); font-weight: 500; color: var(--cobalt); }

@media (max-width: 980px) {
  .svc-cards { grid-template-columns: 1fr; }
  .svc-card-art { height: 110px; }
}

/* ═════ artikelen in de nieuwe stijl ═════ */
.wrap-art { max-width: 780px; margin: 0 auto; padding: 0 32px; }
.art-title { font-family: var(--display); font-weight: 500; font-size: clamp(32px, 4.4vw, 56px); line-height: 1.08; letter-spacing: -.015em; margin-top: 10px; }
.art-meta { color: var(--ink-2); font-size: 15px; margin-top: 18px; }
.art-img { margin: 46px 0 10px; border-radius: 8px; overflow: hidden; aspect-ratio: 21/10; }
.art-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-body { padding-top: 34px; padding-bottom: 40px; }
.art-body p { margin: 0 0 20px; color: #2b2f3a; font-size: 17.5px; line-height: 1.7; }
.art-body h2 { font-family: var(--display); font-weight: 500; font-size: clamp(24px, 2.8vw, 32px); letter-spacing: -.01em; margin: 44px 0 16px; }
.art-body h3 { font-family: var(--display); font-weight: 500; font-size: 21px; margin: 34px 0 12px; }
.art-body ul, .art-body ol { margin: 0 0 20px 22px; color: #2b2f3a; line-height: 1.7; }
.art-body li { margin-bottom: 8px; }
.art-body a { color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; }
.art-body blockquote { border-left: 3px solid var(--cobalt); padding-left: 20px; margin: 28px 0; font-size: 19px; color: var(--ink); }
.art-body img { max-width: 100%; border-radius: 8px; }
.art-body .svc-cta-row { margin-top: 44px; }
