/* ==========================================================================
   GWN ICT Beheer & Consultancy - site stylesheet
   Design tokens: "Haven Modern" (paper-and-ink: warm cream, deep navy,
   caution yellow, Inter Variable). Hierarchy via tonal contrast + hairlines.
   ========================================================================== */

@font-face {
  font-family: 'Inter Variable';
  src: url('../fonts/InterVariable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* color tokens */
  --surface: #fff9ed;
  --card: #ffffff;
  --ink: #201b07;
  --ink-soft: #454650;
  --navy: #192866;
  --navy-deep: #001150;
  --navy-hover: #131f52;
  --yellow: #fed330;
  --yellow-deep: #ebc31a;
  --on-yellow: #705b00;
  --cream-text: #fbf0ce;
  --muted: #f8eecc;
  --muted-2: #f2e8c6;
  --outline: #767681;
  --outline-var: #c6c5d1;
  --ring: rgba(32, 27, 7, 0.10);
  --ring-strong: rgba(32, 27, 7, 0.22);

  /* radius scale */
  --r-sm: 0.3rem;
  --r: 0.4rem;
  --r-lg: 0.5rem;
  --r-xl: 0.7rem;
  --r-2xl: 0.9rem;

  /* layout */
  --max: 1600px;
  --pad: clamp(16px, 4vw, 32px);
  --nav-h: 76px;
  --logo-h: 46px;

  --font: 'Inter Variable', Inter, ui-sans-serif, system-ui, 'Segoe UI', Roboto, sans-serif;
}

/* base ------------------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html { background: var(--surface); }

/* <main> stays an opaque cream cover - the sticky-footer reveal relies on it
   hiding the pinned footer until the content scrolls off it */
main { background-color: var(--surface); }

body {
  margin: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

::selection { background: var(--yellow); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

a { color: var(--navy); text-decoration: none; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.shell {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.narrow { max-width: 1180px; margin-inline: auto; }
.prose { max-width: 66ch; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* typography ------------------------------------------------------------- */

h1, h2, h3 { margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; color: var(--navy-deep); text-wrap: balance; }

.display {
  font-size: clamp(2.75rem, 6.8vw, 5.5rem);
  font-weight: 740;
  letter-spacing: -0.028em;
  line-height: 1.02;
}

h1, .h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); }
h2, .h2 { font-size: clamp(1.85rem, 3.2vw, 2.5rem); font-weight: 680; letter-spacing: -0.015em; }
h3, .h3 { font-size: 1.25rem; font-weight: 640; letter-spacing: -0.005em; }

.lead {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.45;
  font-weight: 520;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: pretty;
}

.body-lg { font-size: 1.1875rem; line-height: 1.65; }
.soft { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 1.25rem;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: '';
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(32, 27, 7, 0.12);
}

.label {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.dot { color: var(--yellow); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 620;
  color: var(--navy);
}
.arrow-link::after { content: '→'; transition: transform 0.2s ease; }
.arrow-link:hover::after { transform: translateX(4px); }

.text-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: var(--yellow-deep);
}
.text-link:hover { background: var(--muted); }

/* to-be-filled placeholders from the copy deck */
.todo-chip {
  display: inline-block;
  padding: 0.05rem 0.55rem;
  border: 1px dashed var(--outline);
  border-radius: var(--r-sm);
  background: var(--card);
  color: var(--ink-soft);
  font-size: 0.875em;
}

/* buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--r);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 620;
  letter-spacing: -0.005em;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-sm { height: 2.5rem; padding: 0 1.05rem; font-size: 0.875rem; }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-hover); }

.btn-outline { border-color: var(--outline-var); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--card); border-color: var(--ring-strong); }

.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: var(--yellow-deep); }

.btn-inverse { border-color: rgba(251, 240, 206, 0.35); color: var(--cream-text); background: transparent; }
.btn-inverse:hover { border-color: rgba(251, 240, 206, 0.7); background: rgba(251, 240, 206, 0.08); }

/* fill-from-centre hover (olivierlarose "our work"): a disc sits scaled-down
   at the centre and expands into the full pill on hover, the label riding
   above it. --btn-fill / --btn-fill-ink set the colour it fills with. */
.btn-fill {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 100px;
  transition: color 0.4s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.4s ease;
}
.btn-fill > span { position: relative; z-index: 1; }
.btn-fill::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 108%; aspect-ratio: 1;
  z-index: 0;
  background: var(--btn-fill, var(--yellow));
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), border-radius 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.btn-fill:hover, .btn-fill:focus-visible { color: var(--btn-fill-ink, var(--ink)); }
.btn-fill:hover::before, .btn-fill:focus-visible::before {
  transform: translate(-50%, -50%) scale(1);
  border-radius: 12%;
}

/* navigation ------------------------------------------------------------- */

.site-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease;
}
.site-nav.scrolled {
  background: rgba(255, 249, 237, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

/* the logo is its OWN fixed element (a sibling of the nav, not a child) so
   it is not trapped in the nav's isolated stacking context - that lets its
   mix-blend-mode reach the page behind it: the white mark blends with
   whatever colour scrolls under it (cream hero, the yellow coin, a dark
   band, the open menu) and shifts to stay legible. Aligned to the shell's
   left edge. */
.nav-logo,
.nav-logo-dot {
  position: fixed;
  top: 0;
  left: calc(max(0px, (100vw - var(--max)) / 2) + var(--pad));
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
/* the "gwn" mark (letters only, no dot) is whitened and blends with whatever
   scrolls under it - dark on the cream hero, light on the navy menu. */
.nav-logo { z-index: 60; mix-blend-mode: difference; }
.nav-logo img { height: var(--logo-h); width: auto; filter: brightness(0) invert(1); }
/* the "ict" dot is a separate, UN-blended layer painted over the letters at
   the exact same size/viewBox - so it always keeps its brand yellow while
   the letters shift. (The base carries no dot, so nothing dark rims it.) */
.nav-logo-dot { z-index: 61; pointer-events: none; }
.nav-logo-dot img { height: var(--logo-h); width: auto; display: block; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

/* menu button: a circular button whose burger lines DRAW themselves in
   (stroke-dashoffset), with an ink disc that fills FROM THE CENTRE on hover
   / while open (the virtualwellbeinghub burger idea, filled from centre
   rather than from below). Shown on every viewport - it opens the concierge
   panel. */
.nav-menu-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  background: none;
  color: var(--ink);
  border: 1px solid var(--outline-var);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.nav-menu-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--yellow);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.nav-menu-btn:hover, .nav-menu-btn:focus-visible {
  color: var(--ink);
  border-color: var(--yellow);
}
.nav-menu-btn:hover::before, .nav-menu-btn:focus-visible::before,
.nav-menu-btn[aria-expanded="true"]::before { transform: scale(1); }
.nav-menu-btn[aria-expanded="true"] { color: var(--ink); border-color: transparent; }
.nav-menu-btn svg { width: 22px; height: 22px; overflow: visible; }
.nav-menu-btn svg path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 16;
  stroke-dashoffset: 16;              /* hidden until drawn */
  transform-box: fill-box;
  transform-origin: center;
  transition:
    stroke-dashoffset 0.5s cubic-bezier(0.77, 0, 0.175, 1),
    transform 0.4s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.25s ease;
}
.nav-menu-btn.drawn svg path { stroke-dashoffset: 0; }   /* lines draw in on load */
.nav-menu-btn.drawn svg path:nth-child(2) { transition-delay: 0.08s; }
.nav-menu-btn.drawn svg path:nth-child(3) { transition-delay: 0.16s; }
/* open → the lines cross into an X (middle fades) */
.nav-menu-btn[aria-expanded="true"] svg path:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-menu-btn[aria-expanded="true"] svg path:nth-child(2) { opacity: 0; }
.nav-menu-btn[aria-expanded="true"] svg path:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

/* concierge menu: a full panel that reveals with an organic curved wipe -
   a clip-path ellipse growing out of the menu button (top-right). Not a
   link dump: a primary CTA, quick page pills, and a servicedesk help block. */
.menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--navy-deep);
  color: var(--cream-text);
  visibility: hidden;
  clip-path: ellipse(0% 0% at calc(100% - 40px) 38px);
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 0.7s;
  will-change: clip-path;
}
.menu--open {
  visibility: visible;
  clip-path: ellipse(150% 150% at calc(100% - 40px) 38px);
  transition: clip-path 0.75s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 0s;
}
.menu__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: calc(var(--nav-h) + 2rem) 3rem;
}
/* staggered rise of the contents once the wipe is under way */
.menu [data-menu-item] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.menu--open [data-menu-item] {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.22s + var(--i, 0) * 0.06s);
}
.menu__cta {
  --btn-fill: var(--yellow);
  --btn-fill-ink: var(--ink);
  color: var(--cream-text);
  border: 1px solid rgba(251, 240, 206, 0.4);
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  height: auto;
  padding: 0.7em 1em;
  border-radius: 100px;
}
.menu__cta:hover, .menu__cta:focus-visible { border-color: var(--yellow); }
.menu__label {
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0.9rem;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 240, 206, 0.55);
}
.menu__pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.menu__pills a {
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(251, 240, 206, 0.25);
  border-radius: 100px;
  color: var(--cream-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 560;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.menu__pills a:hover, .menu__pills a[aria-current="page"] {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.menu__aside { border-left: 1px solid rgba(251, 240, 206, 0.16); padding-left: clamp(1.5rem, 4vw, 3rem); }
.menu__aside-eyebrow {
  font-size: 0.8rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow); margin: 0 0 0.75rem;
}
.menu__aside-text { font-size: 1.05rem; line-height: 1.55; color: var(--cream-text); margin: 0 0 1.25rem; max-width: 32ch; }
.menu__aside-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--cream-text); text-decoration: none; font-weight: 620;
  border-bottom: 1px solid rgba(251, 240, 206, 0.4); padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.menu__aside-link:hover { color: var(--yellow); border-color: var(--yellow); }

body.menu-open { overflow: hidden; }
body.menu-open .site-nav { background: transparent; border-bottom-color: transparent; }
body.menu-open .nav-actions .btn-cta { visibility: hidden; }
body.menu-open .nav-menu-btn { color: var(--ink); border-color: transparent; }
body.menu-open .nav-menu-btn::before { background: var(--yellow); }

@media (max-width: 620px) {
  .nav-actions .btn-cta { display: none; }
  .menu__inner { grid-template-columns: 1fr; align-content: center; gap: 2.5rem; }
  .menu__aside { border-left: 0; border-top: 1px solid rgba(251, 240, 206, 0.16); padding-left: 0; padding-top: 1.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  .menu { transition: visibility 0s; }
  .menu--open { transition: visibility 0s; }
  .nav-menu-btn svg path, .nav-menu-btn::before, .menu [data-menu-item] { transition: none; }
}

/* hero (index) ------------------------------------------------------------ */

.hero-scroll { position: relative; height: 480svh; }
@media (max-width: 700px) { .hero-scroll { height: 430svh; } }

.hero-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  /* warm light on paper: a bright warm centre behind the logo, edges
     dipping toward the muted tone - subtle depth without leaving cream.
     The centre stays a step below full white so the brand yellow keeps
     a luminance edge over its backdrop. */
  /* opaque cream base (final layer) so the site-wide dot vignette on <main>
     stays out of the hero - the hero has its own texture (grid, ring-work) */
  background:
    radial-gradient(110% 85% at 50% 42%, rgba(255, 253, 246, 0.72) 0%, rgba(255, 249, 237, 0) 55%),
    radial-gradient(140% 110% at 50% 50%, rgba(255, 249, 237, 0) 62%, rgba(237, 226, 193, 0.4) 100%),
    var(--surface);
}

/* drifting warm light behind everything - sunlight moving across paper */
.hero-atmo {
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 34% at 28% 30%, rgba(254, 211, 48, 0.11), transparent 70%),
    radial-gradient(52% 44% at 74% 62%, rgba(255, 253, 246, 0.45), transparent 72%),
    radial-gradient(36% 30% at 62% 18%, rgba(235, 195, 26, 0.08), transparent 70%);
  animation: atmo-drift 38s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes atmo-drift {
  from { transform: translate3d(-2.5%, -1.5%, 0) scale(1); }
  to   { transform: translate3d(2.5%, 2%, 0) scale(1.07); }
}
/* hero scrolled out of view: stop the drift (class set by hero.js) */
.hero-off .hero-atmo { animation-play-state: paused; }
/* story-reactive air, driven per-frame from hero.js:
   a navy dusk creeps in while everything is in motion (--atmo-tension),
   a warm bright lift arrives with the statement (--atmo-calm) */
.hero-atmo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 105% at 50% 42%, transparent 38%, rgba(25, 40, 102, 0.22) 100%);
  opacity: var(--atmo-tension, 0);
}
.hero-atmo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 55% at 50% 42%, rgba(255, 253, 246, 0.95), transparent 72%);
  opacity: var(--atmo-calm, 0);
}

/* living paper grain over the scenery (canvas, grid, atmosphere) but
   UNDER all type - z 2, while captions/statement sit at 4. The flicker
   is a stepped transform on an oversized layer: transform-only, so the
   pattern re-composites without ever repainting. */
.hero-stage::after {
  content: '';
  position: absolute;
  inset: -80px;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%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");
  background-size: 140px 140px;
  /* no blend mode: blending over an animating canvas forces a full
     re-composite every frame - plain low-alpha grain looks the same */
  opacity: 0.04;
  will-change: transform;
  animation: grain-jump 0.9s steps(1) infinite;
}
@keyframes grain-jump {
  0%    { transform: translate3d(0, 0, 0); }
  12.5% { transform: translate3d(-32px, 18px, 0); }
  25%   { transform: translate3d(46px, -28px, 0); }
  37.5% { transform: translate3d(-18px, -44px, 0); }
  50%   { transform: translate3d(28px, 38px, 0); }
  62.5% { transform: translate3d(-52px, -8px, 0); }
  75%   { transform: translate3d(12px, -22px, 0); }
  87.5% { transform: translate3d(38px, 8px, 0); }
}
.hero-off .hero-stage::after { animation-play-state: paused; }

/* graph-paper grid behind the logo - engineering paper that later becomes
   the blueprint line-model. Driven by --grid-o/--gx/--gy from hero.js. */
.hero-stage::before {
  content: '';
  position: absolute;
  inset: -48px;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(rgba(32, 27, 7, 0.13) 1.1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 44%, #000 50%, transparent 98%);
  mask-image: radial-gradient(120% 90% at 50% 44%, #000 50%, transparent 98%);
  opacity: var(--grid-o, 0);
  transform: translate(var(--gx, 0px), var(--gy, 0px));
  will-change: transform, opacity;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-wordmark {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 66vw, 920px);
  color: var(--ink);
  z-index: 3; /* type sits above the grain layer (z 2) */
  pointer-events: none;
}
.hero-wordmark svg { width: 100%; height: auto; overflow: visible; }
.hero-wordmark .wm-l { will-change: opacity, transform; }
.hero-wordmark .wm-l path {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  will-change: transform;
}
/* JS mode: letters stamp in via the entrance, circle is replaced by the 3D coin */
html.js .hero-wordmark .wm-l { opacity: 0; }
html.js #wm-circle { display: none; }

.hero-tagline {
  margin: clamp(0.4rem, 1.6vw, 1.2rem) 0 0;
  text-align: center;
  font-size: clamp(0.72rem, 1.3vw, 0.95rem);
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
html.js .hero-tagline { opacity: 0; will-change: opacity, transform; }

/* the three story beats: blueprint ANNOTATIONS. Each caption is a small navy
   label chip pinned to a side of the drawing; hero.js draws a leader line
   from the chip's edge to the part it explains. */
.hero-caption {
  position: absolute;
  z-index: 4; /* above the grain layer */
  margin: 0;
  width: max-content;
  max-width: min(36vw, 360px);
  padding: 0.6rem 0.95rem;
  background: var(--navy);
  color: #fff; /* matches .btn-primary exactly, not the warmer --cream-text */
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(25, 40, 102, 0.18);
  text-align: left;
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  font-weight: 620;
  letter-spacing: 0.005em;
  line-height: 1.45;
  text-wrap: balance;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.hero-caption[data-side="left"] { left: max(5vw, 24px); }
.hero-caption[data-side="right"] { right: max(5vw, 24px); }
.hero-caption[data-cap="0"] { top: 62%; }
.hero-caption[data-cap="1"] { top: 62%; }
/* the third beat is not an annotation - it's the promise. No chip, no leader:
   a free centered line that hands the stage to "ICT die gewoon werkt". */
.hero-caption[data-cap="2"] {
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 63%;
  width: max-content;
  max-width: min(90vw, 640px);
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  color: var(--navy-deep);
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  /* cream halo lifts the line off any wire-work drifting behind it */
  text-shadow: 0 0 6px rgba(255, 249, 237, 0.85), 0 0 20px rgba(255, 249, 237, 0.7);
}
@media (max-width: 700px) {
  .hero-caption { max-width: min(74vw, 330px); font-size: 0.95rem; }
  .hero-caption[data-cap="2"] { max-width: 90vw; font-size: 1.35rem; }
}

/* leader lines: thin navy line from each annotation to a dot pinned on the
   drawing - same ink register as the blueprint line-work. Endpoints are set
   per-frame by hero.js. */
.hero-leaders {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3; /* under the caption text, over the canvas */
  pointer-events: none;
  overflow: visible;
}
.hero-leaders g { opacity: 0; }
.hero-leaders polyline { fill: none; stroke: var(--navy); stroke-width: 1.5; }
.hero-leaders circle { fill: var(--navy); }
html.no-js .hero-leaders, body.hero-static .hero-leaders { display: none; }

.hero-statement {
  position: absolute;
  inset: 0;
  z-index: 4; /* above the grain layer */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: calc(var(--nav-h) + 1rem) var(--pad) 3rem;
  pointer-events: none;
}
.hero-statement.active { pointer-events: auto; }
.hero-statement h1 { margin-bottom: 0.35em; }
.hero-statement .hero-copy {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}
html.js .hero-statement [data-st] { opacity: 0; visibility: hidden; will-change: opacity, transform; }
/* the full stop arrives as the particle swarm converges into it */
.hero-statement .dot { display: inline-block; }
html.js .hero-statement .dot { opacity: 0; will-change: opacity, transform; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 4; /* above the grain layer */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-soft);
  pointer-events: none;
}
.scroll-cue span {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-cue::after {
  content: '';
  width: 1.5px;
  height: 44px;
  background: linear-gradient(var(--ink) 0%, var(--ink) 35%, rgba(32,27,7,0.15) 35%);
  background-size: 100% 300%;
  animation: cue-drip 1.9s cubic-bezier(0.4, 0, 0.4, 1) infinite;
}
@keyframes cue-drip {
  0%   { background-position: 0 100%; }
  100% { background-position: 0 -100%; }
}

/* static fallback (no JS, no WebGL, or reduced motion) */
html.no-js .hero-scroll, body.hero-static .hero-scroll { height: auto; }
html.no-js .hero-stage, body.hero-static .hero-stage {
  position: relative;
  height: auto;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) var(--pad) 4rem;
  gap: 3.5rem;
}
html.no-js #hero-canvas, body.hero-static #hero-canvas,
html.no-js .scroll-cue, body.hero-static .scroll-cue { display: none; }
html.no-js .hero-wordmark, body.hero-static .hero-wordmark {
  position: static;
  transform: none;
  width: clamp(280px, 44vw, 620px);
}
html.no-js .hero-statement, body.hero-static .hero-statement {
  position: static;
  padding: 0;
  pointer-events: auto;
}
html.no-js .hero-statement [data-st], body.hero-static .hero-statement [data-st] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
html.no-js .hero-wordmark .wm-l, body.hero-static .hero-wordmark .wm-l { opacity: 1 !important; }
html.no-js #wm-circle, body.hero-static #wm-circle { display: inline !important; }
html.no-js .hero-tagline, body.hero-static .hero-tagline { opacity: 1 !important; transform: none !important; }
html.no-js .hero-statement .dot, body.hero-static .hero-statement .dot { opacity: 1 !important; transform: none !important; }
html.no-js .hero-caption, body.hero-static .hero-caption { display: none; }
html.no-js .hero-stage::after, body.hero-static .hero-stage::after { animation: none; }
html.no-js .hero-stage::before, body.hero-static .hero-stage::before { opacity: 0.4; }

/* page hero (subpages) ---------------------------------------------------- */

.page-hero {
  padding: calc(var(--nav-h) + clamp(4rem, 9vw, 7.5rem)) 0 clamp(3rem, 6vw, 5rem);
}
.page-hero .lead { margin-top: 1.5rem; max-width: 58ch; }

/* sections ---------------------------------------------------------------- */

.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }

.band-navy {
  background: var(--navy-deep);
  color: var(--cream-text);
}
.band-navy h2, .band-navy h3 { color: #fff; }
.band-navy .eyebrow { color: rgba(251, 240, 206, 0.72); }
.band-navy p { color: rgba(251, 240, 206, 0.88); }
.band-navy .lead { color: #fff; }
.band-navy a:not(.btn) { color: var(--yellow); }

.band-tint { background: var(--muted); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}
.split > .split-head { position: sticky; top: calc(var(--nav-h) + 2rem); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split > .split-head { position: static; }
}

.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head .h2 { max-width: 24ch; }

/* flock of birds over the diensten section: each bird is a 6-frame flap sprite
   (2752x750, six 458.67-wide cells); the strip translates by its full width in
   steps(6) to cycle frames. The flock flaps in place, then --q (set per scroll
   frame in site.js) carries each bird right + up and shrinks it into the
   distance, clipping semi-offscreen at the section's right edge. */
#diensten { position: relative; }
.bird-flock {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.bird {
  position: absolute;
  left: var(--x, 25%);
  top: var(--y, 12%);
  width: var(--s, 48px);
  aspect-ratio: 458.67 / 750;
  overflow: hidden;
  transform-origin: 60% 40%;
  transform:
    translate3d(calc(var(--q, 0) * var(--dx, 60vw)), calc(var(--q, 0) * var(--dy, -8vh)), 0)
    scale(calc(1 - var(--q, 0) * var(--shrink, 0.74)));
  opacity: calc(1 - var(--q, 0) * 0.12);
  will-change: transform;
}
.bird__strip {
  display: block;
  width: 600%;
  height: 100%;
  background: url("../assets/bird-sprite.png") 0 0 / 100% 100% no-repeat;
  background-image: image-set(url("../assets/bird-sprite.webp") type("image/webp"), url("../assets/bird-sprite.png") type("image/png"));
  animation: flap 0.6s steps(6) infinite;
}
.bird:nth-child(2) .bird__strip { animation-duration: 0.66s; animation-delay: -0.12s; }
.bird:nth-child(3) .bird__strip { animation-duration: 0.54s; animation-delay: -0.28s; }
.bird:nth-child(4) .bird__strip { animation-duration: 0.62s; animation-delay: -0.40s; }
.bird:nth-child(5) .bird__strip { animation-duration: 0.58s; animation-delay: -0.18s; }
.bird:nth-child(6) .bird__strip { animation-duration: 0.64s; animation-delay: -0.34s; }
@keyframes flap { to { transform: translate3d(-100%, 0, 0); } }
html.no-js .bird-flock { display: none; }
@media (prefers-reduced-motion: reduce) { .bird-flock { display: none; } }

/* "wie je spreekt": the two-people illustration (transparent PNG) sits
   straight on the cream - the relaxed phone-figure and the working
   laptop-figure picture "de mensen die je spreekt zijn de mensen die het
   werk doen". Wide, centred, breaking out of the narrow text column. */
.people-art {
  display: block;
  width: min(1120px, 92%);
  height: auto;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
}

/* cards ------------------------------------------------------------------- */

.card {
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: 0 0 0 1px var(--ring);
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 800px) { .grid-2 { grid-template-columns: 1fr; } }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1000px) { .grid-3 { grid-template-columns: 1fr; } }

/* gear chip: a small brand cog with the step number in its hub. The cog
   turns as the page scrolls (driven by site.js); the number stays upright. */
.gear-chip {
  position: relative;
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.2rem;
}
.gear-chip__cog {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  will-change: transform;
}
.gear-chip__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.01em;
  color: var(--navy-deep);
}
@media (prefers-reduced-motion: reduce) {
  .gear-chip__cog { transform: none !important; }
}

.scenario-card h3 { margin-bottom: 0.4em; }
.scenario-card p { color: var(--ink-soft); }

/* parallax stacking cards ("Herken je dit") - each card pins and the next
   slides over it; the outgoing card scales/dims a touch (JS, desktop). */
.cards-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 2.5rem;
}
.stack-card {
  position: sticky;
  top: calc(var(--nav-h) + 20px + var(--i, 0) * 16px);
  transform-origin: center top;
  will-change: transform;
}
.stack-card__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: stretch;
  min-height: 400px;
  padding: clamp(1.75rem, 3.4vw, 3.25rem);
  background: var(--card);
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 1px var(--ring), 0 30px 55px -34px rgba(25, 27, 40, 0.5);
}
.stack-card:nth-child(even) .stack-card__inner { grid-template-columns: 0.95fr 1.05fr; }
.stack-card:nth-child(even) .stack-card__body { order: 2; }
.stack-card__body { align-self: center; }
.stack-card__body h3 { margin-bottom: 0.4em; }
.stack-card__body p { color: var(--ink-soft); max-width: 42ch; }
.stack-card__media {
  position: relative;
  min-height: 300px;
  border-radius: var(--r-lg);
  overflow: hidden;
  /* the illustrations' own cream (sampled from the art), so the contain-
     letterboxing is seamless - the wide banner art (servers, cable, printer,
     server) is shown WHOLE rather than cropped by cover */
  background: #fff1d4;
}
.stack-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 800px) {
  .cards-stack { gap: 18px; }
  .stack-card { position: static; }
  .stack-card__inner,
  .stack-card:nth-child(even) .stack-card__inner { grid-template-columns: 1fr; }
  .stack-card:nth-child(even) .stack-card__body { order: 0; }
  .stack-card__media { order: -1; min-height: 170px; }
}
@media (prefers-reduced-motion: reduce) {
  .stack-card { position: static; transform: none !important; filter: none !important; }
}

/* service cards */
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
a.service-card { color: inherit; }
a.service-card:hover {
  box-shadow: 0 0 0 1px var(--ring-strong), 0 10px 30px -18px rgba(0, 17, 80, 0.35);
  transform: translateY(-2px);
}
.service-card .label { margin-bottom: 0.9rem; }
.service-card h3 { font-size: 1.4rem; }
.service-card .desc { color: var(--ink-soft); margin: 0.35rem 0 1.4rem; }
.service-card .card-cta { margin-top: auto; }

.price-row { display: flex; align-items: baseline; gap: 0.75rem; flex-wrap: wrap; margin: 0.4rem 0 0.2rem; }
.price {
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 740;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  font-variant-numeric: tabular-nums;
}
.price-unit {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* fact strip -------------------------------------------------------------- */

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--ring-strong);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.fact { padding-top: 1.4rem; }
.fact .label { display: block; margin-bottom: 0.3rem; }
.fact strong { font-size: 1.1rem; font-weight: 660; letter-spacing: -0.01em; color: var(--navy-deep); }
@media (max-width: 800px) { .facts { grid-template-columns: repeat(2, 1fr); } }

/* diensten page ------------------------------------------------------------ */

.service-block { scroll-margin-top: calc(var(--nav-h) + 1rem); }
.service-block + .service-block { margin-top: clamp(3rem, 6vw, 5rem); }

.feature-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1rem; }
.feature-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(32, 27, 7, 0.12);
}
.feature-list strong { color: var(--ink); font-weight: 650; }

/* FAQ ---------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--ring-strong); }
.faq details { border-bottom: 1px solid var(--ring); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0.25rem;
  font-weight: 630;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  color: var(--navy-deep);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex: none;
  width: 1.75rem; height: 1.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--outline-var);
  border-radius: 999px;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink-soft);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0.25rem 1.4rem; max-width: 62ch; color: var(--ink-soft); margin: 0; }

/* forms ---------------------------------------------------------------------- */

.field { display: grid; gap: 0.45rem; margin-bottom: 1.15rem; }
.field label {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--outline-var);
  background: rgba(248, 238, 204, 0.25);
  border-radius: var(--r);
  padding: 0.72rem 0.9rem;
  font: inherit;
  color: var(--ink);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(25, 40, 102, 0.15);
}
.form-note { font-size: 0.875rem; color: var(--ink-soft); margin-top: 1rem; }
.form-error { color: #b3261e; font-size: 0.9rem; font-weight: 550; margin: 0.85rem 0 0; }

.form-success {
  border: 1px solid var(--ring-strong);
  border-radius: var(--r-lg);
  background: var(--muted);
  padding: 1.75rem;
}
.form-success h3 { margin-bottom: 0.3em; }
.form-success p { color: var(--ink-soft); margin: 0; }

/* contact ---------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-lines { display: grid; gap: 0.7rem; margin: 1.4rem 0 1.6rem; }
.contact-lines .row { display: flex; gap: 0.6rem; align-items: baseline; flex-wrap: wrap; }
.wa-inline { color: var(--ink-soft); font-size: 0.92em; text-decoration: none; }
.wa-inline:hover { color: var(--navy); }

/* honeypot: kept in the DOM for bots, off-screen for people and AT */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* closer ------------------------------------------------------------------- */

.closer { text-align: center; }
.closer .display { max-width: 18ch; margin-inline: auto; }
.closer p { max-width: 52ch; margin: 1.25rem auto 0; color: var(--ink-soft); font-size: 1.125rem; }
.closer .cta-row { margin-top: 2.25rem; }

/* home closer: the seated figure (transparent PNG, cropped from a wide frame)
   sits centred above the invitation */
.closer--figure .closer-fig {
  display: block;
  width: min(500px, 90%);
  height: clamp(300px, 62vw, 440px);
  object-fit: cover;
  object-position: 14% 100%;
  /* pull up (negative Y) so she overlaps the diensten section above and looks
     up toward the service cards - the invitation below is separate */
  margin: clamp(-260px, -22vw, -140px) auto clamp(0.5rem, 2vw, 1.5rem);
}

/* footer ------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(251, 240, 206, 0.85);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 34px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.95rem; max-width: 30ch; }

.footer-col .label { color: rgba(251, 240, 206, 0.55); display: block; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: rgba(251, 240, 206, 0.85); font-size: 0.95rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--yellow); text-underline-offset: 3px; }
.footer-col li { font-size: 0.95rem; }

.footer-col address { font-style: normal; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(251, 240, 206, 0.16);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(251, 240, 206, 0.55);
}
.footer-legal a { color: rgba(251, 240, 206, 0.55); }
.footer-legal a:hover { color: var(--yellow); }

/* sticky-footer reveal (desktop): the footer is pinned behind the page and
   the content lifts off it at the end of the scroll. Enabled by JS
   (body.has-sticky-footer) so no-JS keeps a normal in-flow footer; only
   >=900px, where the footer is a single row shorter than the viewport. */
@media (min-width: 900px) {
  body.has-sticky-footer main {
    position: relative;
    z-index: 1;
    /* opaque cream base + dot texture come from the base `main` rule */
    margin-bottom: var(--footer-h, 460px);
  }
  body.has-sticky-footer .site-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }
}

/* contact physics playground: an unlabelled card under the contact details */
.contact-left { display: flex; flex-direction: column; gap: 24px; }

.physics-area {
  height: clamp(200px, 22vw, 300px);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #fffdf6, var(--muted));
  box-shadow: 0 0 0 1px var(--ring);
  overflow: hidden;
  position: relative;
  cursor: grab;
  touch-action: pan-y; /* let vertical page scroll pass through on touch */
}
.physics-area:active { cursor: grabbing; }
.physics-area canvas { display: block; width: 100%; height: 100%; }
/* no interactivity without JS or with reduced motion: hide the empty box */
html.no-js .physics-area { display: none; }
@media (prefers-reduced-motion: reduce) { .physics-area { display: none; } }

/* reveal on scroll ---------------------------------------------------------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
html.js [data-reveal].in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.65, 0.25, 1),
    transform 0.75s cubic-bezier(0.2, 0.65, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .scroll-cue::after { animation: none; }
  .hero-atmo { animation: none; }
  .hero-stage::after { animation: none; }
  .btn, .arrow-link::after, a.service-card { transition: none; }
}

/* gear chip draw-in ------------------------------------------------------- */
/* The cog outline is drawn the first time the chip is seen (site.js adds
   .drawn), then the fill and the number arrive. pathLength="1" on the symbol
   path makes the dash maths unit-free: offset 1 = fully hidden, 0 = drawn. */
html.js .gear-chip__cog {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  fill-opacity: 0;
}
html.js .gear-chip.drawn .gear-chip__cog {
  stroke-dashoffset: 0;
  fill-opacity: 1;
  transition:
    stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    fill-opacity 0.5s ease 0.9s;
}
html.js .gear-chip__num { opacity: 0; transition: opacity 0.4s ease 1s; }
html.js .gear-chip.drawn .gear-chip__num { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  html.js .gear-chip__cog { stroke-dashoffset: 0; fill-opacity: 1; transition: none; }
  html.js .gear-chip__num { opacity: 1; transition: none; }
}

/* cursor dot -------------------------------------------------------------- */
.cursor-dot {
  position: fixed;
  left: 0; top: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 1px rgba(32, 27, 7, 0.18);
  pointer-events: none;
  z-index: 200;
  opacity: 0;
  will-change: transform;
  transition:
    opacity 0.25s ease,
    width 0.25s cubic-bezier(0.2, 0.65, 0.25, 1),
    height 0.25s cubic-bezier(0.2, 0.65, 0.25, 1),
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}
.cursor-dot.on { opacity: 1; }
.cursor-dot.big {
  width: 28px; height: 28px;
  background: rgba(254, 211, 48, 0.28);
  box-shadow: 0 0 0 1.5px var(--yellow);
}
@media (hover: none), (pointer: coarse) { .cursor-dot { display: none; } }

/* WhatsApp icon ----------------------------------------------------------- */
.wa-icon { display: inline-block; width: 1em; height: 1em; vertical-align: -0.15em; margin-right: 0.3em; fill: currentColor; }
.wa-inline { white-space: nowrap; }
.wa-link { white-space: nowrap; }

/* quotes (testimonials) --------------------------------------------------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 800px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  margin: 0;
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  border-radius: var(--r-lg);
  background: var(--card);
  box-shadow: 0 0 0 1px var(--ring);
}
.quote blockquote { margin: 0; }
.quote blockquote p {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.4;
  font-weight: 520;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}
.quote blockquote p::before { content: '\201C'; color: var(--yellow-deep); margin-right: 0.08em; }
.quote figcaption {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: 0 0.5em;
}
.quote figcaption strong { color: var(--ink); font-weight: 650; }
.quote--dark { background: rgba(255, 255, 255, 0.06); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14); }
.band-navy .quote--dark blockquote p { color: #fff; }
.band-navy .quote--dark figcaption { color: rgba(251, 240, 206, 0.72); }
.band-navy .quote--dark figcaption strong { color: #fff; }

/* logo strip (klanten / partners) ------------------------------------------ */
.logo-strip { margin-top: clamp(2.5rem, 5vw, 4rem); }
.logo-strip .label { display: block; margin-bottom: 1rem; }
.logo-strip__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 16px; }
.logo-tile {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 150px; height: 56px; padding: 0 1.1rem;
  border-radius: var(--r-lg);
  box-shadow: 0 0 0 1px var(--ring);
  color: var(--ink-soft);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
}
.logo-tile img { max-height: 28px; width: auto; filter: grayscale(1); opacity: 0.8; }

/* placeholders: obviously unfinished until the real content lands. Remove the
   data-placeholder attribute when filling in and this styling disappears. */
[data-placeholder] .logo-tile,
[data-placeholder].quote,
[data-placeholder] .quote {
  outline: 1.5px dashed rgba(25, 40, 102, 0.4);
  outline-offset: -1.5px;
}
.band-navy [data-placeholder] .quote { outline-color: rgba(254, 211, 48, 0.55); }

/* <picture> wrappers must not add a box: the img keeps behaving as before */
picture { display: contents; }

/* page transitions ------------------------------------------------------- */
/* Cross-document view transitions (Chromium, Safari 18.2+): the page body
   crossfades with a small vertical drift while the fixed chrome (logo, dot,
   nav, cursor) stays put. Browsers without support simply hard-cut. */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out 0.26s cubic-bezier(0.4, 0, 1, 1) both; }
::view-transition-new(root) { animation: vt-in 0.46s cubic-bezier(0.2, 0.65, 0.25, 1) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-12px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(16px); } }
.nav-logo { view-transition-name: nav-logo; }
.nav-logo-dot { view-transition-name: nav-logo-dot; }
.site-nav { view-transition-name: site-nav; }
.cursor-dot { view-transition-name: cursor-dot; }
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

/* focus: designed, not default ------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(254, 211, 48, 0.45);
}
.band-navy :focus-visible, .site-footer :focus-visible, .menu :focus-visible {
  outline-color: var(--yellow);
  box-shadow: 0 0 0 6px rgba(254, 211, 48, 0.22);
}

/* situatie cards: the illustration leans in a touch on hover ---------------- */
.stack-card__media img { transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1); }
.stack-card:hover .stack-card__media img { transform: scale(1.035); }

/* cursor dot: context label (data-cursor="Bekijk" on the hovered element) --- */
.cursor-dot.label {
  width: 68px; height: 68px;
  background: var(--yellow);
  box-shadow: 0 0 0 1px rgba(32, 27, 7, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.cursor-dot.label::after {
  content: attr(data-label);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  line-height: 1;
}

/* accent "licht" (proefblad, sept 2026) ------------------------------------
   Two echoes of the hero's drawing language, nothing more: the price unit is
   an annotation chip on a short leader (the same object as the hero captions)
   and the navy bands carry a faint drawing grid. Yellow dots stay. */
.band-navy, .site-footer {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
}
.price-row { align-items: center; gap: 0.75rem; }
.price-unit {
  position: relative;
  margin-left: 0;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  line-height: 1.35;
}

/* diensten: subscription cards ---------------------------------------------
   Buttons sit on one line at the bottom of both cards; GWN online gets a warm
   tinted panel so its shorter text reads as a lighter variant, not a gap. */
.service-block .card-cta { margin-top: auto; padding-top: 1.6rem; }
.card--tint { background: var(--muted); }
/* the section spacing rule above must not push the second card down */
.grid-2 > .service-block + .service-block { margin-top: 0; }
